123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136 |
- lockfileVersion: 5.4
- specifiers:
- '@vitejs/plugin-legacy': ^4.0.5
- '@vitejs/plugin-vue': ^4.5.2
- '@vueuse/core': ^10.1.2
- axios: ^1.6.2
- sass: 1.62.1
- typescript: ^5.2.2
- unocss: ^0.58.0
- unplugin-auto-import: ^0.16.7
- unplugin-vue-components: ^0.25.2
- unplugin-vue-macros: ^2.6.2
- vant: ^4.8.0
- vite: ^5.0.8
- vite-plugin-pages: ^0.32.0
- vite-plugin-windicss: ^1.9.2
- vue: ^3.3.11
- vue-router: ^4.2.5
- vue-tsc: ^1.8.25
- dependencies:
- '@vueuse/core': registry.npmmirror.com/@vueuse/core/10.7.0_vue@3.3.11
- axios: registry.npmmirror.com/axios/1.6.2
- sass: registry.npmmirror.com/sass/1.62.1
- unocss: registry.npmmirror.com/unocss/0.58.0_vite@5.0.8
- vant: registry.npmmirror.com/vant/4.8.0_vue@3.3.11
- vite-plugin-pages: registry.npmmirror.com/vite-plugin-pages/0.32.0_vite@5.0.8
- vite-plugin-windicss: registry.npmmirror.com/vite-plugin-windicss/1.9.2_vite@5.0.8
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- vue-router: registry.npmmirror.com/vue-router/4.2.5_vue@3.3.11
- devDependencies:
- '@vitejs/plugin-legacy': registry.npmmirror.com/@vitejs/plugin-legacy/4.1.1_vite@5.0.8
- '@vitejs/plugin-vue': registry.npmmirror.com/@vitejs/plugin-vue/4.5.2_vite@5.0.8+vue@3.3.11
- typescript: registry.npmmirror.com/typescript/5.3.3
- unplugin-auto-import: registry.npmmirror.com/unplugin-auto-import/0.16.7_@vueuse+core@10.7.0
- unplugin-vue-components: registry.npmmirror.com/unplugin-vue-components/0.25.2_vue@3.3.11
- unplugin-vue-macros: registry.npmmirror.com/unplugin-vue-macros/2.7.2_kjy4kr7ghkor6vh7yweuhrtx7e
- vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
- vue-tsc: registry.npmmirror.com/vue-tsc/1.8.25_typescript@5.3.3
- packages:
- registry.npmmirror.com/@ampproject/remapping/2.2.1:
- resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz}
- name: '@ampproject/remapping'
- version: 2.2.1
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.3
- '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20
- registry.npmmirror.com/@antfu/install-pkg/0.1.1:
- resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/install-pkg/-/install-pkg-0.1.1.tgz}
- name: '@antfu/install-pkg'
- version: 0.1.1
- dependencies:
- execa: registry.npmmirror.com/execa/5.1.1
- find-up: registry.npmmirror.com/find-up/5.0.0
- dev: false
- registry.npmmirror.com/@antfu/utils/0.7.7:
- resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.7.tgz}
- name: '@antfu/utils'
- version: 0.7.7
- registry.npmmirror.com/@babel/code-frame/7.23.5:
- resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.23.5.tgz}
- name: '@babel/code-frame'
- version: 7.23.5
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/highlight': registry.npmmirror.com/@babel/highlight/7.23.4
- chalk: registry.npmmirror.com/chalk/2.4.2
- registry.npmmirror.com/@babel/compat-data/7.23.5:
- resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.23.5.tgz}
- name: '@babel/compat-data'
- version: 7.23.5
- engines: {node: '>=6.9.0'}
- registry.npmmirror.com/@babel/core/7.23.6:
- resolution: {integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.23.6.tgz}
- name: '@babel/core'
- version: 7.23.6
- engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.2.1
- '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.23.5
- '@babel/generator': registry.npmmirror.com/@babel/generator/7.23.6
- '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
- '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6
- '@babel/helpers': registry.npmmirror.com/@babel/helpers/7.23.6
- '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
- '@babel/template': registry.npmmirror.com/@babel/template/7.22.15
- '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.23.6
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- convert-source-map: registry.npmmirror.com/convert-source-map/2.0.0
- debug: registry.npmmirror.com/debug/4.3.4
- gensync: registry.npmmirror.com/gensync/1.0.0-beta.2
- json5: registry.npmmirror.com/json5/2.2.3
- semver: registry.npmmirror.com/semver/6.3.1
- transitivePeerDependencies:
- - supports-color
- registry.npmmirror.com/@babel/generator/7.23.6:
- resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.23.6.tgz}
- name: '@babel/generator'
- version: 7.23.6
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.3
- '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20
- jsesc: registry.npmmirror.com/jsesc/2.5.2
- registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5:
- resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz}
- name: '@babel/helper-annotate-as-pure'
- version: 7.22.5
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/7.22.15:
- resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz}
- name: '@babel/helper-builder-binary-assignment-operator-visitor'
- version: 7.22.15
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- dev: true
- registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6:
- resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz}
- name: '@babel/helper-compilation-targets'
- version: 7.23.6
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
- '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.23.5
- browserslist: registry.npmmirror.com/browserslist/4.22.2
- lru-cache: registry.npmmirror.com/lru-cache/5.1.1
- semver: registry.npmmirror.com/semver/6.3.1
- registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6:
- resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.6.tgz}
- id: registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6
- name: '@babel/helper-create-class-features-plugin'
- version: 7.23.6
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
- '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
- '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
- '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.23.0
- '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5
- '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.6
- '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
- '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
- semver: registry.npmmirror.com/semver/6.3.1
- registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6:
- resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz}
- id: registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15
- name: '@babel/helper-create-regexp-features-plugin'
- version: 7.22.15
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
- regexpu-core: registry.npmmirror.com/regexpu-core/5.3.2
- semver: registry.npmmirror.com/semver/6.3.1
- dev: true
- registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz}
- id: registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.4
- name: '@babel/helper-define-polyfill-provider'
- version: 0.4.4
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- debug: registry.npmmirror.com/debug/4.3.4
- lodash.debounce: registry.npmmirror.com/lodash.debounce/4.0.8
- resolve: registry.npmmirror.com/resolve/1.22.8
- transitivePeerDependencies:
- - supports-color
- dev: true
- registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20:
- resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz}
- name: '@babel/helper-environment-visitor'
- version: 7.22.20
- engines: {node: '>=6.9.0'}
- registry.npmmirror.com/@babel/helper-function-name/7.23.0:
- resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz}
- name: '@babel/helper-function-name'
- version: 7.23.0
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': registry.npmmirror.com/@babel/template/7.22.15
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- registry.npmmirror.com/@babel/helper-hoist-variables/7.22.5:
- resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz}
- name: '@babel/helper-hoist-variables'
- version: 7.22.5
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.23.0:
- resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz}
- name: '@babel/helper-member-expression-to-functions'
- version: 7.23.0
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- registry.npmmirror.com/@babel/helper-module-imports/7.22.15:
- resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz}
- name: '@babel/helper-module-imports'
- version: 7.22.15
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/helper-module-transforms/7.23.3
- name: '@babel/helper-module-transforms'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
- '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.22.15
- '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.22.5
- '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
- '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
- registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5:
- resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz}
- name: '@babel/helper-optimise-call-expression'
- version: 7.22.5
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5:
- resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz}
- name: '@babel/helper-plugin-utils'
- version: 7.22.5
- engines: {node: '>=6.9.0'}
- registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.6:
- resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz}
- id: registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20
- name: '@babel/helper-remap-async-to-generator'
- version: 7.22.20
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
- '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
- '@babel/helper-wrap-function': registry.npmmirror.com/@babel/helper-wrap-function/7.22.20
- dev: true
- registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.6:
- resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz}
- id: registry.npmmirror.com/@babel/helper-replace-supers/7.22.20
- name: '@babel/helper-replace-supers'
- version: 7.22.20
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
- '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.23.0
- '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5
- registry.npmmirror.com/@babel/helper-simple-access/7.22.5:
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz}
- name: '@babel/helper-simple-access'
- version: 7.22.5
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5:
- resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz}
- name: '@babel/helper-skip-transparent-expression-wrappers'
- version: 7.22.5
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6:
- resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz}
- name: '@babel/helper-split-export-declaration'
- version: 7.22.6
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- registry.npmmirror.com/@babel/helper-string-parser/7.23.4:
- resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz}
- name: '@babel/helper-string-parser'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20:
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz}
- name: '@babel/helper-validator-identifier'
- version: 7.22.20
- engines: {node: '>=6.9.0'}
- registry.npmmirror.com/@babel/helper-validator-option/7.23.5:
- resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz}
- name: '@babel/helper-validator-option'
- version: 7.23.5
- engines: {node: '>=6.9.0'}
- registry.npmmirror.com/@babel/helper-wrap-function/7.22.20:
- resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz}
- name: '@babel/helper-wrap-function'
- version: 7.22.20
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
- '@babel/template': registry.npmmirror.com/@babel/template/7.22.15
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- dev: true
- registry.npmmirror.com/@babel/helpers/7.23.6:
- resolution: {integrity: sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.23.6.tgz}
- name: '@babel/helpers'
- version: 7.23.6
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': registry.npmmirror.com/@babel/template/7.22.15
- '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.23.6
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- transitivePeerDependencies:
- - supports-color
- registry.npmmirror.com/@babel/highlight/7.23.4:
- resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.23.4.tgz}
- name: '@babel/highlight'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
- chalk: registry.npmmirror.com/chalk/2.4.2
- js-tokens: registry.npmmirror.com/js-tokens/4.0.0
- registry.npmmirror.com/@babel/parser/7.23.6:
- resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.23.6.tgz}
- name: '@babel/parser'
- version: 7.23.6
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.23.3
- name: '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.23.3
- name: '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
- '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.23.3
- name: '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.23.6:
- resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz}
- id: registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2
- name: '@babel/plugin-proposal-private-property-in-object'
- version: 7.21.0-placeholder-for-preset-env.2
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4
- name: '@babel/plugin-syntax-async-generators'
- version: 7.8.4
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.23.6:
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13
- name: '@babel/plugin-syntax-class-properties'
- version: 7.12.13
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.6:
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5
- name: '@babel/plugin-syntax-class-static-block'
- version: 7.14.5
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3
- name: '@babel/plugin-syntax-dynamic-import'
- version: 7.8.3
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3
- name: '@babel/plugin-syntax-export-namespace-from'
- version: 7.8.3
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-import-assertions/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-import-assertions/7.23.3
- name: '@babel/plugin-syntax-import-assertions'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-import-attributes/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-import-attributes/7.23.3
- name: '@babel/plugin-syntax-import-attributes'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4
- name: '@babel/plugin-syntax-import-meta'
- version: 7.10.4
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3
- name: '@babel/plugin-syntax-json-strings'
- version: 7.8.3
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-jsx/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.23.3
- name: '@babel/plugin-syntax-jsx'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: false
- registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4
- name: '@babel/plugin-syntax-logical-assignment-operators'
- version: 7.10.4
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3
- name: '@babel/plugin-syntax-nullish-coalescing-operator'
- version: 7.8.3
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4
- name: '@babel/plugin-syntax-numeric-separator'
- version: 7.10.4
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3
- name: '@babel/plugin-syntax-object-rest-spread'
- version: 7.8.3
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3
- name: '@babel/plugin-syntax-optional-catch-binding'
- version: 7.8.3
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3
- name: '@babel/plugin-syntax-optional-chaining'
- version: 7.8.3
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.23.6:
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5
- name: '@babel/plugin-syntax-private-property-in-object'
- version: 7.14.5
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.23.6:
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5
- name: '@babel/plugin-syntax-top-level-await'
- version: 7.14.5
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-syntax-typescript/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-typescript/7.23.3
- name: '@babel/plugin-syntax-typescript'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: false
- registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.23.6:
- resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz}
- id: registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/7.18.6
- name: '@babel/plugin-syntax-unicode-sets-regex'
- version: 7.18.6
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.23.3
- name: '@babel/plugin-transform-arrow-functions'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/7.23.4
- name: '@babel/plugin-transform-async-generator-functions'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.6
- '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.23.3
- name: '@babel/plugin-transform-async-to-generator'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.22.15
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.23.3
- name: '@babel/plugin-transform-block-scoped-functions'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.23.4
- name: '@babel/plugin-transform-block-scoping'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-class-properties/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-class-properties/7.23.3
- name: '@babel/plugin-transform-class-properties'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-class-static-block/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-class-static-block/7.23.4
- name: '@babel/plugin-transform-class-static-block'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-classes/7.23.5_@babel+core@7.23.6:
- resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-classes/7.23.5
- name: '@babel/plugin-transform-classes'
- version: 7.23.5
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
- '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
- '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
- '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
- '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.6
- '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
- globals: registry.npmmirror.com/globals/11.12.0
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.23.3
- name: '@babel/plugin-transform-computed-properties'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/template': registry.npmmirror.com/@babel/template/7.22.15
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-destructuring/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-destructuring/7.23.3
- name: '@babel/plugin-transform-destructuring'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.23.3
- name: '@babel/plugin-transform-dotall-regex'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.23.3
- name: '@babel/plugin-transform-duplicate-keys'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-dynamic-import/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-dynamic-import/7.23.4
- name: '@babel/plugin-transform-dynamic-import'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.23.3
- name: '@babel/plugin-transform-exponentiation-operator'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-builder-binary-assignment-operator-visitor': registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/7.22.15
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/7.23.4
- name: '@babel/plugin-transform-export-namespace-from'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-for-of/7.23.6_@babel+core@7.23.6:
- resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-for-of/7.23.6
- name: '@babel/plugin-transform-for-of'
- version: 7.23.6
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-function-name/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-function-name/7.23.3
- name: '@babel/plugin-transform-function-name'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
- '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-json-strings/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-json-strings/7.23.4
- name: '@babel/plugin-transform-json-strings'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-literals/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-literals/7.23.3
- name: '@babel/plugin-transform-literals'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/7.23.4
- name: '@babel/plugin-transform-logical-assignment-operators'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.23.3
- name: '@babel/plugin-transform-member-expression-literals'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.23.3
- name: '@babel/plugin-transform-modules-amd'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.23.3
- name: '@babel/plugin-transform-modules-commonjs'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.22.5
- registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.23.3
- name: '@babel/plugin-transform-modules-systemjs'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.22.5
- '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.23.3
- name: '@babel/plugin-transform-modules-umd'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.23.6:
- resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.22.5
- name: '@babel/plugin-transform-named-capturing-groups-regex'
- version: 7.22.5
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-new-target/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-new-target/7.23.3
- name: '@babel/plugin-transform-new-target'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/7.23.4
- name: '@babel/plugin-transform-nullish-coalescing-operator'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-numeric-separator/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-numeric-separator/7.23.4
- name: '@babel/plugin-transform-numeric-separator'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/7.23.4
- name: '@babel/plugin-transform-object-rest-spread'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.6
- '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-object-super/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-object-super/7.23.3
- name: '@babel/plugin-transform-object-super'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/7.23.4
- name: '@babel/plugin-transform-optional-catch-binding'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4
- name: '@babel/plugin-transform-optional-chaining'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
- '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3
- name: '@babel/plugin-transform-parameters'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-private-methods/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-private-methods/7.23.3
- name: '@babel/plugin-transform-private-methods'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/7.23.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/7.23.4
- name: '@babel/plugin-transform-private-property-in-object'
- version: 7.23.4
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
- '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.23.6
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-property-literals/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-property-literals/7.23.3
- name: '@babel/plugin-transform-property-literals'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-regenerator/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-regenerator/7.23.3
- name: '@babel/plugin-transform-regenerator'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- regenerator-transform: registry.npmmirror.com/regenerator-transform/0.15.2
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.23.3
- name: '@babel/plugin-transform-reserved-words'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.23.3
- name: '@babel/plugin-transform-shorthand-properties'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-spread/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-spread/7.23.3
- name: '@babel/plugin-transform-spread'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.23.3
- name: '@babel/plugin-transform-sticky-regex'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-template-literals/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-template-literals/7.23.3
- name: '@babel/plugin-transform-template-literals'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.23.3
- name: '@babel/plugin-transform-typeof-symbol'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-typescript/7.23.6_@babel+core@7.23.6:
- resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-typescript/7.23.6
- name: '@babel/plugin-transform-typescript'
- version: 7.23.6
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
- '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/plugin-syntax-typescript': registry.npmmirror.com/@babel/plugin-syntax-typescript/7.23.3_@babel+core@7.23.6
- dev: false
- registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.23.3
- name: '@babel/plugin-transform-unicode-escapes'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/7.23.3
- name: '@babel/plugin-transform-unicode-property-regex'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.23.3
- name: '@babel/plugin-transform-unicode-regex'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/7.23.3
- name: '@babel/plugin-transform-unicode-sets-regex'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- dev: true
- registry.npmmirror.com/@babel/preset-env/7.23.6_@babel+core@7.23.6:
- resolution: {integrity: sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-env/-/preset-env-7.23.6.tgz}
- id: registry.npmmirror.com/@babel/preset-env/7.23.6
- name: '@babel/preset-env'
- version: 7.23.6
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.23.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.23.3_@babel+core@7.23.6
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.23.3_@babel+core@7.23.6
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': registry.npmmirror.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.23.3_@babel+core@7.23.6
- '@babel/plugin-proposal-private-property-in-object': registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.23.6
- '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.6
- '@babel/plugin-syntax-class-properties': registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.23.6
- '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.6
- '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.6
- '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.6
- '@babel/plugin-syntax-import-assertions': registry.npmmirror.com/@babel/plugin-syntax-import-assertions/7.23.3_@babel+core@7.23.6
- '@babel/plugin-syntax-import-attributes': registry.npmmirror.com/@babel/plugin-syntax-import-attributes/7.23.3_@babel+core@7.23.6
- '@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.23.6
- '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.6
- '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.6
- '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.6
- '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.6
- '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.6
- '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.6
- '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.6
- '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.23.6
- '@babel/plugin-syntax-top-level-await': registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.23.6
- '@babel/plugin-syntax-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.23.6
- '@babel/plugin-transform-arrow-functions': registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-async-generator-functions': registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-async-to-generator': registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-block-scoped-functions': registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-block-scoping': registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-class-properties': registry.npmmirror.com/@babel/plugin-transform-class-properties/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-class-static-block': registry.npmmirror.com/@babel/plugin-transform-class-static-block/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-classes': registry.npmmirror.com/@babel/plugin-transform-classes/7.23.5_@babel+core@7.23.6
- '@babel/plugin-transform-computed-properties': registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-destructuring': registry.npmmirror.com/@babel/plugin-transform-destructuring/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-dotall-regex': registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-duplicate-keys': registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-dynamic-import': registry.npmmirror.com/@babel/plugin-transform-dynamic-import/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-exponentiation-operator': registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-export-namespace-from': registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-for-of': registry.npmmirror.com/@babel/plugin-transform-for-of/7.23.6_@babel+core@7.23.6
- '@babel/plugin-transform-function-name': registry.npmmirror.com/@babel/plugin-transform-function-name/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-json-strings': registry.npmmirror.com/@babel/plugin-transform-json-strings/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-literals': registry.npmmirror.com/@babel/plugin-transform-literals/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-member-expression-literals': registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-modules-amd': registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-modules-systemjs': registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-modules-umd': registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-named-capturing-groups-regex': registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.23.6
- '@babel/plugin-transform-new-target': registry.npmmirror.com/@babel/plugin-transform-new-target/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-numeric-separator': registry.npmmirror.com/@babel/plugin-transform-numeric-separator/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-object-rest-spread': registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-object-super': registry.npmmirror.com/@babel/plugin-transform-object-super/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-optional-catch-binding': registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-private-methods': registry.npmmirror.com/@babel/plugin-transform-private-methods/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-private-property-in-object': registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/7.23.4_@babel+core@7.23.6
- '@babel/plugin-transform-property-literals': registry.npmmirror.com/@babel/plugin-transform-property-literals/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-regenerator': registry.npmmirror.com/@babel/plugin-transform-regenerator/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-reserved-words': registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-shorthand-properties': registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-spread': registry.npmmirror.com/@babel/plugin-transform-spread/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-sticky-regex': registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-template-literals': registry.npmmirror.com/@babel/plugin-transform-template-literals/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-typeof-symbol': registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-unicode-escapes': registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-unicode-property-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-unicode-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/7.23.3_@babel+core@7.23.6
- '@babel/preset-modules': registry.npmmirror.com/@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.23.6
- babel-plugin-polyfill-corejs2: registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.4.7_@babel+core@7.23.6
- babel-plugin-polyfill-corejs3: registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.8.7_@babel+core@7.23.6
- babel-plugin-polyfill-regenerator: registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.5.4_@babel+core@7.23.6
- core-js-compat: registry.npmmirror.com/core-js-compat/3.34.0
- semver: registry.npmmirror.com/semver/6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- registry.npmmirror.com/@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.23.6:
- resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz}
- id: registry.npmmirror.com/@babel/preset-modules/0.1.6-no-external-plugins
- name: '@babel/preset-modules'
- version: 0.1.6-no-external-plugins
- peerDependencies:
- '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- esutils: registry.npmmirror.com/esutils/2.0.3
- dev: true
- registry.npmmirror.com/@babel/preset-typescript/7.23.3_@babel+core@7.23.6:
- resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz}
- id: registry.npmmirror.com/@babel/preset-typescript/7.23.3
- name: '@babel/preset-typescript'
- version: 7.23.3
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
- '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.23.5
- '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.23.3_@babel+core@7.23.6
- '@babel/plugin-transform-typescript': registry.npmmirror.com/@babel/plugin-transform-typescript/7.23.6_@babel+core@7.23.6
- dev: false
- registry.npmmirror.com/@babel/regjsgen/0.8.0:
- resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz}
- name: '@babel/regjsgen'
- version: 0.8.0
- dev: true
- registry.npmmirror.com/@babel/runtime/7.23.6:
- resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.23.6.tgz}
- name: '@babel/runtime'
- version: 7.23.6
- engines: {node: '>=6.9.0'}
- dependencies:
- regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.14.0
- dev: true
- registry.npmmirror.com/@babel/template/7.22.15:
- resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.22.15.tgz}
- name: '@babel/template'
- version: 7.22.15
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.23.5
- '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- registry.npmmirror.com/@babel/traverse/7.23.6:
- resolution: {integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.23.6.tgz}
- name: '@babel/traverse'
- version: 7.23.6
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.23.5
- '@babel/generator': registry.npmmirror.com/@babel/generator/7.23.6
- '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
- '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
- '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.22.5
- '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
- '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- debug: registry.npmmirror.com/debug/4.3.4
- globals: registry.npmmirror.com/globals/11.12.0
- transitivePeerDependencies:
- - supports-color
- registry.npmmirror.com/@babel/types/7.23.6:
- resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.23.6.tgz}
- name: '@babel/types'
- version: 7.23.6
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser/7.23.4
- '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
- to-fast-properties: registry.npmmirror.com/to-fast-properties/2.0.0
- registry.npmmirror.com/@esbuild/android-arm/0.19.9:
- resolution: {integrity: sha512-jkYjjq7SdsWuNI6b5quymW0oC83NN5FdRPuCbs9HZ02mfVdAP8B8eeqLSYU3gb6OJEaY5CQabtTFbqBf26H3GA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.19.9.tgz}
- name: '@esbuild/android-arm'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/android-arm64/0.19.9:
- resolution: {integrity: sha512-q4cR+6ZD0938R19MyEW3jEsMzbb/1rulLXiNAJQADD/XYp7pT+rOS5JGxvpRW8dFDEfjW4wLgC/3FXIw4zYglQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.19.9.tgz}
- name: '@esbuild/android-arm64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/android-x64/0.19.9:
- resolution: {integrity: sha512-KOqoPntWAH6ZxDwx1D6mRntIgZh9KodzgNOy5Ebt9ghzffOk9X2c1sPwtM9P+0eXbefnDhqYfkh5PLP5ULtWFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.19.9.tgz}
- name: '@esbuild/android-x64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/darwin-arm64/0.19.9:
- resolution: {integrity: sha512-KBJ9S0AFyLVx2E5D8W0vExqRW01WqRtczUZ8NRu+Pi+87opZn5tL4Y0xT0mA4FtHctd0ZgwNoN639fUUGlNIWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.9.tgz}
- name: '@esbuild/darwin-arm64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/darwin-x64/0.19.9:
- resolution: {integrity: sha512-vE0VotmNTQaTdX0Q9dOHmMTao6ObjyPm58CHZr1UK7qpNleQyxlFlNCaHsHx6Uqv86VgPmR4o2wdNq3dP1qyDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.19.9.tgz}
- name: '@esbuild/darwin-x64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/freebsd-arm64/0.19.9:
- resolution: {integrity: sha512-uFQyd/o1IjiEk3rUHSwUKkqZwqdvuD8GevWF065eqgYfexcVkxh+IJgwTaGZVu59XczZGcN/YMh9uF1fWD8j1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.9.tgz}
- name: '@esbuild/freebsd-arm64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/freebsd-x64/0.19.9:
- resolution: {integrity: sha512-WMLgWAtkdTbTu1AWacY7uoj/YtHthgqrqhf1OaEWnZb7PQgpt8eaA/F3LkV0E6K/Lc0cUr/uaVP/49iE4M4asA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.9.tgz}
- name: '@esbuild/freebsd-x64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/linux-arm/0.19.9:
- resolution: {integrity: sha512-C/ChPohUYoyUaqn1h17m/6yt6OB14hbXvT8EgM1ZWaiiTYz7nWZR0SYmMnB5BzQA4GXl3BgBO1l8MYqL/He3qw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.19.9.tgz}
- name: '@esbuild/linux-arm'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/linux-arm64/0.19.9:
- resolution: {integrity: sha512-PiPblfe1BjK7WDAKR1Cr9O7VVPqVNpwFcPWgfn4xu0eMemzRp442hXyzF/fSwgrufI66FpHOEJk0yYdPInsmyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.19.9.tgz}
- name: '@esbuild/linux-arm64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/linux-ia32/0.19.9:
- resolution: {integrity: sha512-f37i/0zE0MjDxijkPSQw1CO/7C27Eojqb+r3BbHVxMLkj8GCa78TrBZzvPyA/FNLUMzP3eyHCVkAopkKVja+6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.19.9.tgz}
- name: '@esbuild/linux-ia32'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/linux-loong64/0.19.9:
- resolution: {integrity: sha512-t6mN147pUIf3t6wUt3FeumoOTPfmv9Cc6DQlsVBpB7eCpLOqQDyWBP1ymXn1lDw4fNUSb/gBcKAmvTP49oIkaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.19.9.tgz}
- name: '@esbuild/linux-loong64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/linux-mips64el/0.19.9:
- resolution: {integrity: sha512-jg9fujJTNTQBuDXdmAg1eeJUL4Jds7BklOTkkH80ZgQIoCTdQrDaHYgbFZyeTq8zbY+axgptncko3v9p5hLZtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.9.tgz}
- name: '@esbuild/linux-mips64el'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/linux-ppc64/0.19.9:
- resolution: {integrity: sha512-tkV0xUX0pUUgY4ha7z5BbDS85uI7ABw3V1d0RNTii7E9lbmV8Z37Pup2tsLV46SQWzjOeyDi1Q7Wx2+QM8WaCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.9.tgz}
- name: '@esbuild/linux-ppc64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/linux-riscv64/0.19.9:
- resolution: {integrity: sha512-DfLp8dj91cufgPZDXr9p3FoR++m3ZJ6uIXsXrIvJdOjXVREtXuQCjfMfvmc3LScAVmLjcfloyVtpn43D56JFHg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.9.tgz}
- name: '@esbuild/linux-riscv64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/linux-s390x/0.19.9:
- resolution: {integrity: sha512-zHbglfEdC88KMgCWpOl/zc6dDYJvWGLiUtmPRsr1OgCViu3z5GncvNVdf+6/56O2Ca8jUU+t1BW261V6kp8qdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.19.9.tgz}
- name: '@esbuild/linux-s390x'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/linux-x64/0.19.9:
- resolution: {integrity: sha512-JUjpystGFFmNrEHQnIVG8hKwvA2DN5o7RqiO1CVX8EN/F/gkCjkUMgVn6hzScpwnJtl2mPR6I9XV1oW8k9O+0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.19.9.tgz}
- name: '@esbuild/linux-x64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/netbsd-x64/0.19.9:
- resolution: {integrity: sha512-GThgZPAwOBOsheA2RUlW5UeroRfESwMq/guy8uEe3wJlAOjpOXuSevLRd70NZ37ZrpO6RHGHgEHvPg1h3S1Jug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.9.tgz}
- name: '@esbuild/netbsd-x64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/openbsd-x64/0.19.9:
- resolution: {integrity: sha512-Ki6PlzppaFVbLnD8PtlVQfsYw4S9n3eQl87cqgeIw+O3sRr9IghpfSKY62mggdt1yCSZ8QWvTZ9jo9fjDSg9uw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.9.tgz}
- name: '@esbuild/openbsd-x64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/sunos-x64/0.19.9:
- resolution: {integrity: sha512-MLHj7k9hWh4y1ddkBpvRj2b9NCBhfgBt3VpWbHQnXRedVun/hC7sIyTGDGTfsGuXo4ebik2+3ShjcPbhtFwWDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.19.9.tgz}
- name: '@esbuild/sunos-x64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/win32-arm64/0.19.9:
- resolution: {integrity: sha512-GQoa6OrQ8G08guMFgeXPH7yE/8Dt0IfOGWJSfSH4uafwdC7rWwrfE6P9N8AtPGIjUzdo2+7bN8Xo3qC578olhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.19.9.tgz}
- name: '@esbuild/win32-arm64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/win32-ia32/0.19.9:
- resolution: {integrity: sha512-UOozV7Ntykvr5tSOlGCrqU3NBr3d8JqPes0QWN2WOXfvkWVGRajC+Ym0/Wj88fUgecUCLDdJPDF0Nna2UK3Qtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.19.9.tgz}
- name: '@esbuild/win32-ia32'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@esbuild/win32-x64/0.19.9:
- resolution: {integrity: sha512-oxoQgglOP7RH6iasDrhY+R/3cHrfwIDvRlT4CGChflq6twk8iENeVvMJjmvBb94Ik1Z+93iGO27err7w6l54GQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.19.9.tgz}
- name: '@esbuild/win32-x64'
- version: 0.19.9
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@iconify/types/2.0.0:
- resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@iconify/types/-/types-2.0.0.tgz}
- name: '@iconify/types'
- version: 2.0.0
- dev: false
- registry.npmmirror.com/@iconify/utils/2.1.13:
- resolution: {integrity: sha512-6uWvJIo715xYRy1KmCCyZYW0YYkLjaojEExoEkxpOHKhi9cyHW8hVKo+m8zrxzNVSqjUx9OuVRa2BWXeXfkp5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@iconify/utils/-/utils-2.1.13.tgz}
- name: '@iconify/utils'
- version: 2.1.13
- dependencies:
- '@antfu/install-pkg': registry.npmmirror.com/@antfu/install-pkg/0.1.1
- '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
- '@iconify/types': registry.npmmirror.com/@iconify/types/2.0.0
- debug: registry.npmmirror.com/debug/4.3.4
- kolorist: registry.npmmirror.com/kolorist/1.8.0
- local-pkg: registry.npmmirror.com/local-pkg/0.4.3
- transitivePeerDependencies:
- - supports-color
- dev: false
- registry.npmmirror.com/@jridgewell/gen-mapping/0.3.3:
- resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz}
- name: '@jridgewell/gen-mapping'
- version: 0.3.3
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array/1.1.2
- '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.15
- '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20
- registry.npmmirror.com/@jridgewell/resolve-uri/3.1.1:
- resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz}
- name: '@jridgewell/resolve-uri'
- version: 3.1.1
- engines: {node: '>=6.0.0'}
- registry.npmmirror.com/@jridgewell/set-array/1.1.2:
- resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz}
- name: '@jridgewell/set-array'
- version: 1.1.2
- engines: {node: '>=6.0.0'}
- registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.15:
- resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz}
- name: '@jridgewell/sourcemap-codec'
- version: 1.4.15
- registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20:
- resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz}
- name: '@jridgewell/trace-mapping'
- version: 0.3.20
- dependencies:
- '@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri/3.1.1
- '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.15
- registry.npmmirror.com/@nodelib/fs.scandir/2.1.5:
- resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz}
- name: '@nodelib/fs.scandir'
- version: 2.1.5
- engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
- run-parallel: registry.npmmirror.com/run-parallel/1.2.0
- registry.npmmirror.com/@nodelib/fs.stat/2.0.5:
- resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz}
- name: '@nodelib/fs.stat'
- version: 2.0.5
- engines: {node: '>= 8'}
- registry.npmmirror.com/@nodelib/fs.walk/1.2.8:
- resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz}
- name: '@nodelib/fs.walk'
- version: 1.2.8
- engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir/2.1.5
- fastq: registry.npmmirror.com/fastq/1.15.0
- registry.npmmirror.com/@polka/url/1.0.0-next.24:
- resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@polka/url/-/url-1.0.0-next.24.tgz}
- name: '@polka/url'
- version: 1.0.0-next.24
- registry.npmmirror.com/@rollup/pluginutils/5.1.0:
- resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz}
- name: '@rollup/pluginutils'
- version: 5.1.0
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- '@types/estree': registry.npmmirror.com/@types/estree/1.0.5
- estree-walker: registry.npmmirror.com/estree-walker/2.0.2
- picomatch: registry.npmmirror.com/picomatch/2.3.1
- registry.npmmirror.com/@rollup/rollup-android-arm-eabi/4.8.0:
- resolution: {integrity: sha512-zdTObFRoNENrdPpnTNnhOljYIcOX7aI7+7wyrSpPFFIOf/nRdedE6IYsjaBE7tjukphh1tMTojgJ7p3lKY8x6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.8.0.tgz}
- name: '@rollup/rollup-android-arm-eabi'
- version: 4.8.0
- cpu: [arm]
- os: [android]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-android-arm64/4.8.0:
- resolution: {integrity: sha512-aiItwP48BiGpMFS9Znjo/xCNQVwTQVcRKkFKsO81m8exrGjHkCBDvm9PHay2kpa8RPnZzzKcD1iQ9KaLY4fPQQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.8.0.tgz}
- name: '@rollup/rollup-android-arm64'
- version: 4.8.0
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-darwin-arm64/4.8.0:
- resolution: {integrity: sha512-zhNIS+L4ZYkYQUjIQUR6Zl0RXhbbA0huvNIWjmPc2SL0cB1h5Djkcy+RZ3/Bwszfb6vgwUvcVJYD6e6Zkpsi8g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.8.0.tgz}
- name: '@rollup/rollup-darwin-arm64'
- version: 4.8.0
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-darwin-x64/4.8.0:
- resolution: {integrity: sha512-A/FAHFRNQYrELrb/JHncRWzTTXB2ticiRFztP4ggIUAfa9Up1qfW8aG2w/mN9jNiZ+HB0t0u0jpJgFXG6BfRTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.8.0.tgz}
- name: '@rollup/rollup-darwin-x64'
- version: 4.8.0
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/4.8.0:
- resolution: {integrity: sha512-JsidBnh3p2IJJA4/2xOF2puAYqbaczB3elZDT0qHxn362EIoIkq7hrR43Xa8RisgI6/WPfvb2umbGsuvf7E37A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.8.0.tgz}
- name: '@rollup/rollup-linux-arm-gnueabihf'
- version: 4.8.0
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/4.8.0:
- resolution: {integrity: sha512-hBNCnqw3EVCkaPB0Oqd24bv8SklETptQWcJz06kb9OtiShn9jK1VuTgi7o4zPSt6rNGWQOTDEAccbk0OqJmS+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.8.0.tgz}
- name: '@rollup/rollup-linux-arm64-gnu'
- version: 4.8.0
- cpu: [arm64]
- os: [linux]
- libc: [glibc]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/4.8.0:
- resolution: {integrity: sha512-Fw9ChYfJPdltvi9ALJ9wzdCdxGw4wtq4t1qY028b2O7GwB5qLNSGtqMsAel1lfWTZvf4b6/+4HKp0GlSYg0ahA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.8.0.tgz}
- name: '@rollup/rollup-linux-arm64-musl'
- version: 4.8.0
- cpu: [arm64]
- os: [linux]
- libc: [musl]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/4.8.0:
- resolution: {integrity: sha512-BH5xIh7tOzS9yBi8dFrCTG8Z6iNIGWGltd3IpTSKp6+pNWWO6qy8eKoRxOtwFbMrid5NZaidLYN6rHh9aB8bEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.8.0.tgz}
- name: '@rollup/rollup-linux-riscv64-gnu'
- version: 4.8.0
- cpu: [riscv64]
- os: [linux]
- libc: [glibc]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/4.8.0:
- resolution: {integrity: sha512-PmvAj8k6EuWiyLbkNpd6BLv5XeYFpqWuRvRNRl80xVfpGXK/z6KYXmAgbI4ogz7uFiJxCnYcqyvZVD0dgFog7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.8.0.tgz}
- name: '@rollup/rollup-linux-x64-gnu'
- version: 4.8.0
- cpu: [x64]
- os: [linux]
- libc: [glibc]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-linux-x64-musl/4.8.0:
- resolution: {integrity: sha512-mdxnlW2QUzXwY+95TuxZ+CurrhgrPAMveDWI97EQlA9bfhR8tw3Pt7SUlc/eSlCNxlWktpmT//EAA8UfCHOyXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.8.0.tgz}
- name: '@rollup/rollup-linux-x64-musl'
- version: 4.8.0
- cpu: [x64]
- os: [linux]
- libc: [musl]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/4.8.0:
- resolution: {integrity: sha512-ge7saUz38aesM4MA7Cad8CHo0Fyd1+qTaqoIo+Jtk+ipBi4ATSrHWov9/S4u5pbEQmLjgUjB7BJt+MiKG2kzmA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.8.0.tgz}
- name: '@rollup/rollup-win32-arm64-msvc'
- version: 4.8.0
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/4.8.0:
- resolution: {integrity: sha512-p9E3PZlzurhlsN5h9g7zIP1DnqKXJe8ZUkFwAazqSvHuWfihlIISPxG9hCHCoA+dOOspL/c7ty1eeEVFTE0UTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.8.0.tgz}
- name: '@rollup/rollup-win32-ia32-msvc'
- version: 4.8.0
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/4.8.0:
- resolution: {integrity: sha512-kb4/auKXkYKqlUYTE8s40FcJIj5soOyRLHKd4ugR0dCq0G2EfcF54eYcfQiGkHzjidZ40daB4ulsFdtqNKZtBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.8.0.tgz}
- name: '@rollup/rollup-win32-x64-msvc'
- version: 4.8.0
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/@types/debug/4.1.12:
- resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/debug/-/debug-4.1.12.tgz}
- name: '@types/debug'
- version: 4.1.12
- dependencies:
- '@types/ms': registry.npmmirror.com/@types/ms/0.7.34
- dev: false
- registry.npmmirror.com/@types/estree/1.0.5:
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/estree/-/estree-1.0.5.tgz}
- name: '@types/estree'
- version: 1.0.5
- registry.npmmirror.com/@types/ms/0.7.34:
- resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/ms/-/ms-0.7.34.tgz}
- name: '@types/ms'
- version: 0.7.34
- dev: false
- registry.npmmirror.com/@types/web-bluetooth/0.0.20:
- resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz}
- name: '@types/web-bluetooth'
- version: 0.0.20
- registry.npmmirror.com/@unocss/astro/0.58.0_vite@5.0.8:
- resolution: {integrity: sha512-df+tEFO5eKXjQOwSWQhS9IdjD0sfLHLtn8U09sEKR2Nmh5CvpwyBxmvLQgOCilPou7ehmyKfsyGRLZg7IMp+Ew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/astro/-/astro-0.58.0.tgz}
- id: registry.npmmirror.com/@unocss/astro/0.58.0
- name: '@unocss/astro'
- version: 0.58.0
- peerDependencies:
- vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
- peerDependenciesMeta:
- vite:
- optional: true
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- '@unocss/reset': registry.npmmirror.com/@unocss/reset/0.58.0
- '@unocss/vite': registry.npmmirror.com/@unocss/vite/0.58.0_vite@5.0.8
- vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
- transitivePeerDependencies:
- - rollup
- dev: false
- registry.npmmirror.com/@unocss/cli/0.58.0:
- resolution: {integrity: sha512-rhsrDBxAVueygMcAbMkbuvsHbBL2rG6N96LllYwHn16FLgOE3Sf4JW1/LlNjQje3BtwMMtbSCCAeu2SryFhzbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/cli/-/cli-0.58.0.tgz}
- name: '@unocss/cli'
- version: 0.58.0
- engines: {node: '>=14'}
- hasBin: true
- dependencies:
- '@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.2.1
- '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
- '@unocss/config': registry.npmmirror.com/@unocss/config/0.58.0
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- '@unocss/preset-uno': registry.npmmirror.com/@unocss/preset-uno/0.58.0
- cac: registry.npmmirror.com/cac/6.7.14
- chokidar: registry.npmmirror.com/chokidar/3.5.3
- colorette: registry.npmmirror.com/colorette/2.0.20
- consola: registry.npmmirror.com/consola/3.2.3
- fast-glob: registry.npmmirror.com/fast-glob/3.3.2
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- pathe: registry.npmmirror.com/pathe/1.1.1
- perfect-debounce: registry.npmmirror.com/perfect-debounce/1.0.0
- transitivePeerDependencies:
- - rollup
- dev: false
- registry.npmmirror.com/@unocss/config/0.58.0:
- resolution: {integrity: sha512-WQD29gCZ7cajnMzezD1PRW0qQSxo/C6PX9ktygwhdinFx9nXuLZnKFOz65TiI8y48e53g1i7ivvgY3m4Sq5mIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/config/-/config-0.58.0.tgz}
- name: '@unocss/config'
- version: 0.58.0
- engines: {node: '>=14'}
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- unconfig: registry.npmmirror.com/unconfig/0.3.11
- dev: false
- registry.npmmirror.com/@unocss/core/0.58.0:
- resolution: {integrity: sha512-KhABQXGE2AgtO9vE28d+HnciuyGDcuygsnQdUwlzUuR4K05OSw2kRE9emRN4HaMycD+gA/zDbQrJxTXb6mQUiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/core/-/core-0.58.0.tgz}
- name: '@unocss/core'
- version: 0.58.0
- dev: false
- registry.npmmirror.com/@unocss/extractor-arbitrary-variants/0.58.0:
- resolution: {integrity: sha512-s9wK2UugJM0WK1HpgPz2kTbpeyQc46zais+nauN/ykVX6NMq8PtGzSWszzf+0aIbtWAQGiqAfiYNTpf09tJHfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-0.58.0.tgz}
- name: '@unocss/extractor-arbitrary-variants'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- dev: false
- registry.npmmirror.com/@unocss/inspector/0.58.0:
- resolution: {integrity: sha512-ZC4QauFGdh3/VkzW/FqkO2R03JEbzGNuX0DK03pwas8/jFIGh8pPldesj8GEKm1YWr1emx9cw7JUnhR8XSUBlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/inspector/-/inspector-0.58.0.tgz}
- name: '@unocss/inspector'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
- gzip-size: registry.npmmirror.com/gzip-size/6.0.0
- sirv: registry.npmmirror.com/sirv/2.0.3
- dev: false
- registry.npmmirror.com/@unocss/postcss/0.58.0:
- resolution: {integrity: sha512-2hAwLbfUFqysi8FN1cn3xkHy5GhLMlYy6W4NrAZ2ws7F2MKpsCT2xCj7dT5cI2tW8ulD2YoVbKH15dBhNsMNUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/postcss/-/postcss-0.58.0.tgz}
- name: '@unocss/postcss'
- version: 0.58.0
- engines: {node: '>=14'}
- dependencies:
- '@unocss/config': registry.npmmirror.com/@unocss/config/0.58.0
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
- css-tree: registry.npmmirror.com/css-tree/2.3.1
- fast-glob: registry.npmmirror.com/fast-glob/3.3.2
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- postcss: registry.npmmirror.com/postcss/8.4.32
- dev: false
- registry.npmmirror.com/@unocss/preset-attributify/0.58.0:
- resolution: {integrity: sha512-Ew78noYes12K9gk4dF36MkjpiIqTi1XVqcniiAzxCkzuctxN4B57vW3LVTwjInGmWNNKWN3UNR4q1o0VxH4xJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/preset-attributify/-/preset-attributify-0.58.0.tgz}
- name: '@unocss/preset-attributify'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- dev: false
- registry.npmmirror.com/@unocss/preset-icons/0.58.0:
- resolution: {integrity: sha512-niT32avw+8l+L40LGhrmX6qDV9Z8/gOn4xjjRhLZZouKni3CJOpz9taILyF4xp1nak5nxGT4wa0tuC/htvOF5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/preset-icons/-/preset-icons-0.58.0.tgz}
- name: '@unocss/preset-icons'
- version: 0.58.0
- dependencies:
- '@iconify/utils': registry.npmmirror.com/@iconify/utils/2.1.13
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- ofetch: registry.npmmirror.com/ofetch/1.3.3
- transitivePeerDependencies:
- - supports-color
- dev: false
- registry.npmmirror.com/@unocss/preset-mini/0.58.0:
- resolution: {integrity: sha512-oMliJZVTN3ecAvf52yN+MyJszaJOZoKwMMbUAFqVis62MaqRzZ8mSw12QFLFyX2pltulDFpMBTAKro+hP0wXEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/preset-mini/-/preset-mini-0.58.0.tgz}
- name: '@unocss/preset-mini'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- '@unocss/extractor-arbitrary-variants': registry.npmmirror.com/@unocss/extractor-arbitrary-variants/0.58.0
- '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
- dev: false
- registry.npmmirror.com/@unocss/preset-tagify/0.58.0:
- resolution: {integrity: sha512-I+dzfs/bofiGb2AUxkhcTDhB+r2+/3SO81PFwf3Ae7afnzhA2SLsKAkEqO8YN3M3mwZL7IfXn6vpsWeEAlk/yw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/preset-tagify/-/preset-tagify-0.58.0.tgz}
- name: '@unocss/preset-tagify'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- dev: false
- registry.npmmirror.com/@unocss/preset-typography/0.58.0:
- resolution: {integrity: sha512-8qo+Z1CJtXFMDbAvtizUTRLuLxCIzytgYU0GmuRkfc2iwASSDNDsvh8nAYQfWpyAEOV7QEHtS9c9xL4b0c89FA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/preset-typography/-/preset-typography-0.58.0.tgz}
- name: '@unocss/preset-typography'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- '@unocss/preset-mini': registry.npmmirror.com/@unocss/preset-mini/0.58.0
- dev: false
- registry.npmmirror.com/@unocss/preset-uno/0.58.0:
- resolution: {integrity: sha512-DpgfjtvSgsWeyZH+jQHc1k5IReiZNb7oGpHVnfF6SlHETTnMHSeNetxkPQWYrqJLPI6llNLPTdTa5j47NtmOiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/preset-uno/-/preset-uno-0.58.0.tgz}
- name: '@unocss/preset-uno'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- '@unocss/preset-mini': registry.npmmirror.com/@unocss/preset-mini/0.58.0
- '@unocss/preset-wind': registry.npmmirror.com/@unocss/preset-wind/0.58.0
- '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
- dev: false
- registry.npmmirror.com/@unocss/preset-web-fonts/0.58.0:
- resolution: {integrity: sha512-QarDDEUlexQ2IIn23pE1eHDskG2Tz+JjCe+FAN0DoNLLhvUUWSB4cQIMFWP6dSMJ047Blj9IpgAl9dERICW1qQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/preset-web-fonts/-/preset-web-fonts-0.58.0.tgz}
- name: '@unocss/preset-web-fonts'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- ofetch: registry.npmmirror.com/ofetch/1.3.3
- dev: false
- registry.npmmirror.com/@unocss/preset-wind/0.58.0:
- resolution: {integrity: sha512-2zgaIy9RAGie9CsUYCkYRDSERBi8kG6Q/mQLgNfP9HMz5IThlnDHFWF/hLAVD51xQUg9gH8qWBR9kN/1ioT5Tw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/preset-wind/-/preset-wind-0.58.0.tgz}
- name: '@unocss/preset-wind'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- '@unocss/preset-mini': registry.npmmirror.com/@unocss/preset-mini/0.58.0
- '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
- dev: false
- registry.npmmirror.com/@unocss/reset/0.58.0:
- resolution: {integrity: sha512-UVZ5kz37JGbwAA06k/gjKYcekcTwi6oIhev1EpTtCvHLL6XYcYqcwb/u4Wjzprd3L3lxDGYXvGdjREGm2u7vbQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/reset/-/reset-0.58.0.tgz}
- name: '@unocss/reset'
- version: 0.58.0
- dev: false
- registry.npmmirror.com/@unocss/rule-utils/0.58.0:
- resolution: {integrity: sha512-LBJ9dJ/j5UIMzJF7pmIig55MtJAYtG+tn/zQRveZuPRVahzP+KqwlyB7u3uCUnQhdgo/MJODMcqyr0jl6+kTuA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/rule-utils/-/rule-utils-0.58.0.tgz}
- name: '@unocss/rule-utils'
- version: 0.58.0
- engines: {node: '>=14'}
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- dev: false
- registry.npmmirror.com/@unocss/scope/0.58.0:
- resolution: {integrity: sha512-XgUXZJvbxWSRC/DNOWI5DYdR6Nd6IZxsE5ls3AFA5msgtk5OH4YNQELLMabQw7xbRbU/fftlRJa3vncSfOyl6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/scope/-/scope-0.58.0.tgz}
- name: '@unocss/scope'
- version: 0.58.0
- dev: false
- registry.npmmirror.com/@unocss/transformer-attributify-jsx-babel/0.58.0:
- resolution: {integrity: sha512-ckDq/q476x2yikjS8usmSUGuakqMQrg2pm8sdBINTPdJxGc7kJRvI5UDnzRw4W9hE5IH+E4gg0XfCtFad0O3eg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/transformer-attributify-jsx-babel/-/transformer-attributify-jsx-babel-0.58.0.tgz}
- name: '@unocss/transformer-attributify-jsx-babel'
- version: 0.58.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.23.3_@babel+core@7.23.6
- '@babel/preset-typescript': registry.npmmirror.com/@babel/preset-typescript/7.23.3_@babel+core@7.23.6
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- transitivePeerDependencies:
- - supports-color
- dev: false
- registry.npmmirror.com/@unocss/transformer-attributify-jsx/0.58.0:
- resolution: {integrity: sha512-QDdBEFDE7ntfCH7+8zHRW72MIQ9NH3uYGUE7lYgr5Ap8qzBHCxMT1kUrY6gwuoo3U4dMu2wruglYRHD88hvGkw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-0.58.0.tgz}
- name: '@unocss/transformer-attributify-jsx'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- dev: false
- registry.npmmirror.com/@unocss/transformer-compile-class/0.58.0:
- resolution: {integrity: sha512-/BysfTg2q9sGPfiRHqWw/bT60/gjpBGBRVkIFsG4WVT2pgf3BfQUPu5FumSvZSRd0rA/pR57Lp6ZREAdj6+q+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/transformer-compile-class/-/transformer-compile-class-0.58.0.tgz}
- name: '@unocss/transformer-compile-class'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- dev: false
- registry.npmmirror.com/@unocss/transformer-directives/0.58.0:
- resolution: {integrity: sha512-sU2U/aIykRkGGbA4Qo9Z5XE/KqWf7KhBwC1m8pUoqjawsZex4aVnQgXzDPfcjtmy6pElwK0z2U5DnO+OK9vCgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/transformer-directives/-/transformer-directives-0.58.0.tgz}
- name: '@unocss/transformer-directives'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
- css-tree: registry.npmmirror.com/css-tree/2.3.1
- dev: false
- registry.npmmirror.com/@unocss/transformer-variant-group/0.58.0:
- resolution: {integrity: sha512-O2n8uVIpNic57rrkaaQ8jnC1WJ9N6FkoqxatRDXZ368aJ1CJNya0ZcVUL6lGGND0bOLXen4WmEN62ZxEWTqdkA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/transformer-variant-group/-/transformer-variant-group-0.58.0.tgz}
- name: '@unocss/transformer-variant-group'
- version: 0.58.0
- dependencies:
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- dev: false
- registry.npmmirror.com/@unocss/vite/0.58.0_vite@5.0.8:
- resolution: {integrity: sha512-OCUOLMSOBEtXOEyBbAvMI3/xdR175BWRzmvV9Wc34ANZclEvCdVH8+WU725ibjY4VT0gVIuX68b13fhXdHV41A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/vite/-/vite-0.58.0.tgz}
- id: registry.npmmirror.com/@unocss/vite/0.58.0
- name: '@unocss/vite'
- version: 0.58.0
- peerDependencies:
- vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
- dependencies:
- '@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.2.1
- '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
- '@unocss/config': registry.npmmirror.com/@unocss/config/0.58.0
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- '@unocss/inspector': registry.npmmirror.com/@unocss/inspector/0.58.0
- '@unocss/scope': registry.npmmirror.com/@unocss/scope/0.58.0
- '@unocss/transformer-directives': registry.npmmirror.com/@unocss/transformer-directives/0.58.0
- chokidar: registry.npmmirror.com/chokidar/3.5.3
- fast-glob: registry.npmmirror.com/fast-glob/3.3.2
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
- transitivePeerDependencies:
- - rollup
- dev: false
- registry.npmmirror.com/@vant/popperjs/1.3.0:
- resolution: {integrity: sha512-hB+czUG+aHtjhaEmCJDuXOep0YTZjdlRR+4MSmIFnkCQIxJaXLQdSsR90XWvAI2yvKUI7TCGqR8pQg2RtvkMHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vant/popperjs/-/popperjs-1.3.0.tgz}
- name: '@vant/popperjs'
- version: 1.3.0
- dev: false
- registry.npmmirror.com/@vant/use/1.6.0_vue@3.3.11:
- resolution: {integrity: sha512-PHHxeAASgiOpSmMjceweIrv2AxDZIkWXyaczksMoWvKV2YAYEhoizRuk/xFnKF+emUIi46TsQ+rvlm/t2BBCfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vant/use/-/use-1.6.0.tgz}
- id: registry.npmmirror.com/@vant/use/1.6.0
- name: '@vant/use'
- version: 1.6.0
- peerDependencies:
- vue: ^3.0.0
- dependencies:
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- dev: false
- registry.npmmirror.com/@vitejs/plugin-legacy/4.1.1_vite@5.0.8:
- resolution: {integrity: sha512-um3gbVouD2Q/g19C0qpDfHwveXDCAHzs8OC3e9g6aXpKoD1H14himgs7wkMnhAynBJy7QqUoZNAXDuqN8zLR2g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-legacy/-/plugin-legacy-4.1.1.tgz}
- id: registry.npmmirror.com/@vitejs/plugin-legacy/4.1.1
- name: '@vitejs/plugin-legacy'
- version: 4.1.1
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- terser: ^5.4.0
- vite: ^4.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/preset-env': registry.npmmirror.com/@babel/preset-env/7.23.6_@babel+core@7.23.6
- browserslist: registry.npmmirror.com/browserslist/4.22.2
- core-js: registry.npmmirror.com/core-js/3.34.0
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.13.11
- systemjs: registry.npmmirror.com/systemjs/6.14.2
- vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- registry.npmmirror.com/@vitejs/plugin-vue/4.5.2_vite@5.0.8+vue@3.3.11:
- resolution: {integrity: sha512-UGR3DlzLi/SaVBPX0cnSyE37vqxU3O6chn8l0HJNzQzDia6/Au2A4xKv+iIJW8w2daf80G7TYHhi1pAUjdZ0bQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.5.2.tgz}
- id: registry.npmmirror.com/@vitejs/plugin-vue/4.5.2
- name: '@vitejs/plugin-vue'
- version: 4.5.2
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- vite: ^4.0.0 || ^5.0.0
- vue: ^3.2.25
- dependencies:
- vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- dev: true
- registry.npmmirror.com/@volar/language-core/1.11.1:
- resolution: {integrity: sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/language-core/-/language-core-1.11.1.tgz}
- name: '@volar/language-core'
- version: 1.11.1
- dependencies:
- '@volar/source-map': registry.npmmirror.com/@volar/source-map/1.11.1
- dev: true
- registry.npmmirror.com/@volar/source-map/1.11.1:
- resolution: {integrity: sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/source-map/-/source-map-1.11.1.tgz}
- name: '@volar/source-map'
- version: 1.11.1
- dependencies:
- muggle-string: registry.npmmirror.com/muggle-string/0.3.1
- dev: true
- registry.npmmirror.com/@volar/typescript/1.11.1:
- resolution: {integrity: sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/typescript/-/typescript-1.11.1.tgz}
- name: '@volar/typescript'
- version: 1.11.1
- dependencies:
- '@volar/language-core': registry.npmmirror.com/@volar/language-core/1.11.1
- path-browserify: registry.npmmirror.com/path-browserify/1.0.1
- dev: true
- registry.npmmirror.com/@vue-macros/api/0.9.1_vue@3.3.11:
- resolution: {integrity: sha512-RS+9jicpO10p55eReMSHQO/ZiRURl0WWcN+uj2dnnkGH0+NUysInqziERlEBLhSle3UXHJqDlzezSsnygkdt6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/api/-/api-0.9.1.tgz}
- id: registry.npmmirror.com/@vue-macros/api/0.9.1
- name: '@vue-macros/api'
- version: 0.9.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- resolve.exports: registry.npmmirror.com/resolve.exports/2.0.2
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/better-define/1.7.1_vue@3.3.11:
- resolution: {integrity: sha512-Qxe5v7PL4RHZ9zesoiIm5xq524y5Qel9tB0l8laSND0xhNvd3DNQkNkI39MKvGi7WPavF2N8W64gWNuj/j3U3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/better-define/-/better-define-1.7.1.tgz}
- id: registry.npmmirror.com/@vue-macros/better-define/1.7.1
- name: '@vue-macros/better-define'
- version: 1.7.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/api': registry.npmmirror.com/@vue-macros/api/0.9.1_vue@3.3.11
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/boolean-prop/0.3.1_vue@3.3.11:
- resolution: {integrity: sha512-XE/8vZG6rka6Eul6t0iuF+ibfflvx+pnFYrupmaBmaz2zc1dWn+xYiVz5xEawcCEiVBEUHK1NWSblxluhWBQPA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/boolean-prop/-/boolean-prop-0.3.1.tgz}
- id: registry.npmmirror.com/@vue-macros/boolean-prop/0.3.1
- name: '@vue-macros/boolean-prop'
- version: 0.3.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/chain-call/0.2.1_vue@3.3.11:
- resolution: {integrity: sha512-w4tWPttIa27V1mbfEMJiUMZw8nH/uO9lvAMZnsn39S8m2Ud2yiMdkKyWgH62gtLoeCDdH7HEPqv4ZHbMx74cdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/chain-call/-/chain-call-0.2.1.tgz}
- id: registry.npmmirror.com/@vue-macros/chain-call/0.2.1
- name: '@vue-macros/chain-call'
- version: 0.2.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11:
- resolution: {integrity: sha512-4DZsPeQA/nBQDw2RkYAmH7KrFjJVrMdAhJhO1JCl1bbbFXCGeoGjXfkg9wHPppj47s2HpAB3GrqNwqVGbi12NQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/common/-/common-1.10.0.tgz}
- id: registry.npmmirror.com/@vue-macros/common/1.10.0
- name: '@vue-macros/common'
- version: 1.10.0
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^2.7.0 || ^3.2.25
- peerDependenciesMeta:
- vue:
- optional: true
- dependencies:
- '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
- '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
- '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.3.11
- ast-kit: registry.npmmirror.com/ast-kit/0.11.3
- local-pkg: registry.npmmirror.com/local-pkg/0.5.0
- magic-string-ast: registry.npmmirror.com/magic-string-ast/0.3.0
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/@vue-macros/define-emit/0.2.1_vue@3.3.11:
- resolution: {integrity: sha512-oAil5GVP5GlB/6B/ThRrp6PLx+m1KYlee/84SEt5d1aHT45Tdc0AZYlWWVZ//iBDe0ve84jy/xW+BX86gpm0lg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/define-emit/-/define-emit-0.2.1.tgz}
- id: registry.npmmirror.com/@vue-macros/define-emit/0.2.1
- name: '@vue-macros/define-emit'
- version: 0.2.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^2.7.0 || ^3.2.25
- dependencies:
- '@vue-macros/api': registry.npmmirror.com/@vue-macros/api/0.9.1_vue@3.3.11
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/@vue-macros/define-models/1.2.1_skvchchimvsyroofndahiegrdi:
- resolution: {integrity: sha512-QVQ7MBByiuZ1rc/UyhDOsueD4LiRIUEqVXlmsDUzugiRmUc6ND2+jI3w7eGFLcgA8ruLV3uR6ozEZaHHib5TFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/define-models/-/define-models-1.2.1.tgz}
- id: registry.npmmirror.com/@vue-macros/define-models/1.2.1
- name: '@vue-macros/define-models'
- version: 1.2.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- '@vueuse/core': '>=9.0.0'
- peerDependenciesMeta:
- '@vueuse/core':
- optional: true
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- '@vueuse/core': registry.npmmirror.com/@vueuse/core/10.7.0_vue@3.3.11
- ast-walker-scope: registry.npmmirror.com/ast-walker-scope/0.5.0
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/define-prop/0.3.1_vue@3.3.11:
- resolution: {integrity: sha512-TjRefbNaG/g7DF36kMRfAX/M19vgG/Le+93SDWNkm3ez159XV1XNWOWvgxfkrfZJm5JF3vvIU0+PYFG3T9ecvw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/define-prop/-/define-prop-0.3.1.tgz}
- id: registry.npmmirror.com/@vue-macros/define-prop/0.3.1
- name: '@vue-macros/define-prop'
- version: 0.3.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^2.7.0 || ^3.2.25
- dependencies:
- '@vue-macros/api': registry.npmmirror.com/@vue-macros/api/0.9.1_vue@3.3.11
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/@vue-macros/define-props-refs/1.2.1_vue@3.3.11:
- resolution: {integrity: sha512-NF5VvP5dBWy7X35KldxKhT/psmkEOkV2wHefLFiQDsVvUGYyqwVcsC0t+PrKqoYlmYg5Ouq0lOmTPyEVqjhmDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/define-props-refs/-/define-props-refs-1.2.1.tgz}
- id: registry.npmmirror.com/@vue-macros/define-props-refs/1.2.1
- name: '@vue-macros/define-props-refs'
- version: 1.2.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^2.7.0 || ^3.2.25
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/@vue-macros/define-props/2.0.1_vpxk4enuzjo2mj7qqkh7tzvmae:
- resolution: {integrity: sha512-Cm6T2n7BBmCutrCJqgVkrtnhHIF6y5nNIRgHdb+LNFodaxmSPVBQ+8ddNMMn9C5JG6SdVnybivsS3WkDdl9jpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/define-props/-/define-props-2.0.1.tgz}
- id: registry.npmmirror.com/@vue-macros/define-props/2.0.1
- name: '@vue-macros/define-props'
- version: 2.0.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- '@vue-macros/reactivity-transform': ^0.4.1
- vue: ^2.7.0 || ^3.2.25
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- '@vue-macros/reactivity-transform': registry.npmmirror.com/@vue-macros/reactivity-transform/0.4.1_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/@vue-macros/define-render/1.5.1_vue@3.3.11:
- resolution: {integrity: sha512-60m7i64dPbye5m5Y6DRQi9qPAUPavAyNXbFKws+R62lbc0R1j2pEUxOtMoblusDLFZRQG+MFLjWMYs3dBy7DaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/define-render/-/define-render-1.5.1.tgz}
- id: registry.npmmirror.com/@vue-macros/define-render/1.5.1
- name: '@vue-macros/define-render'
- version: 1.5.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^2.7.0 || ^3.0.0
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/@vue-macros/define-slots/1.1.1_vue@3.3.11:
- resolution: {integrity: sha512-I1iOto50nQPbEsU/+bPr7MQDNgrvMGunfyuS/tQQu9Hp/Y0pGop3LEFXfM1lxBfOishBiBB1i2zMAOIi1IqfIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/define-slots/-/define-slots-1.1.1.tgz}
- id: registry.npmmirror.com/@vue-macros/define-slots/1.1.1
- name: '@vue-macros/define-slots'
- version: 1.1.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^2.7.0 || ^3.0.0
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/@vue-macros/devtools/0.2.0_ntk5c343sybimd4hibvldwklca:
- resolution: {integrity: sha512-jHjvY1bFgQLe/2+5pBOG4fgmL5MPhsqQDj7Barhj8YN+Oe7U2hBImvfAyOGpqd2uucLOWQTP1cWrp3q9b1svsg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/devtools/-/devtools-0.2.0.tgz}
- id: registry.npmmirror.com/@vue-macros/devtools/0.2.0
- name: '@vue-macros/devtools'
- version: 0.2.0
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vite: ^4.0.0 || ^5.0.0-0
- peerDependenciesMeta:
- vite:
- optional: true
- dependencies:
- sirv: registry.npmmirror.com/sirv/2.0.3
- vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - typescript
- dev: true
- registry.npmmirror.com/@vue-macros/export-expose/0.1.1_vue@3.3.11:
- resolution: {integrity: sha512-88CBQ/o+BXV9fyrGBs2qAlBPyTFcrxm9Ye3JjtxmCsiws/8bTbQRWi3MXrNp5XNxD0LDVN2P5xXe0lKKQyN4Kg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/export-expose/-/export-expose-0.1.1.tgz}
- id: registry.npmmirror.com/@vue-macros/export-expose/0.1.1
- name: '@vue-macros/export-expose'
- version: 0.1.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^2.7.0 || ^3.2.25
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/@vue-macros/export-props/0.4.1_vue@3.3.11:
- resolution: {integrity: sha512-pmcyddNk3VnBonjqExIdCNAdsIIRifjK2X3+dmQ1GuXzDMTF7CQ51tr/4yMain0pn40PTr0Az7nqUdYaskp2Fw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/export-props/-/export-props-0.4.1.tgz}
- id: registry.npmmirror.com/@vue-macros/export-props/0.4.1
- name: '@vue-macros/export-props'
- version: 0.4.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^2.7.0 || ^3.2.25
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/@vue-macros/export-render/0.2.1_vue@3.3.11:
- resolution: {integrity: sha512-Em+5cPF1bLiwr3rQmvxo8vQa2jRax81vhp6bIYW4QtXKgdAWbfc+SRHdPQz/BjavvK/oymsnO3/jAK35Vv/xNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/export-render/-/export-render-0.2.1.tgz}
- id: registry.npmmirror.com/@vue-macros/export-render/0.2.1
- name: '@vue-macros/export-render'
- version: 0.2.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^2.7.0 || ^3.2.25
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/@vue-macros/hoist-static/1.5.1_vue@3.3.11:
- resolution: {integrity: sha512-EWmejhLnk5cZ//YNO8o206YFaMvphEXjCXH7fZ3/2SZM99D9xLo/7OUUehmEnR1Pkv9GeG31X2yRhJx80fOuQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/hoist-static/-/hoist-static-1.5.1.tgz}
- id: registry.npmmirror.com/@vue-macros/hoist-static/1.5.1
- name: '@vue-macros/hoist-static'
- version: 1.5.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/jsx-directive/0.8.1_vue@3.3.11:
- resolution: {integrity: sha512-kHPCQhT/CJif+2/lNITOE367obZqTalpAwULRfixlnkvPR2RmMPQ+RkDJ8DYaVH9W7dJicQYZHppCKN8TGwyUQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/jsx-directive/-/jsx-directive-0.8.1.tgz}
- id: registry.npmmirror.com/@vue-macros/jsx-directive/0.8.1
- name: '@vue-macros/jsx-directive'
- version: 0.8.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/named-template/0.4.1_vue@3.3.11:
- resolution: {integrity: sha512-n3zAA4jWek1p9YzSyAySE0UA8G9w4n385yPjcKrOSGYcCjskBJRzKzNklMsvEn0dbR46H7ZrpVxJffv28z8NEA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/named-template/-/named-template-0.4.1.tgz}
- id: registry.npmmirror.com/@vue-macros/named-template/0.4.1
- name: '@vue-macros/named-template'
- version: 0.4.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/reactivity-transform/0.4.1_vue@3.3.11:
- resolution: {integrity: sha512-P+9MnDx9eVr23jDo2CifUtfgYGZ8NcTAE3njS1ef3DpEs9C3p4UfcEbeLyvt1fCpPVf9kpdo//8mVJ8MgVK6cw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/reactivity-transform/-/reactivity-transform-0.4.1.tgz}
- id: registry.npmmirror.com/@vue-macros/reactivity-transform/0.4.1
- name: '@vue-macros/reactivity-transform'
- version: 0.4.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^2.7.0 || ^3.2.25
- dependencies:
- '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/@vue-macros/setup-block/0.3.1_vue@3.3.11:
- resolution: {integrity: sha512-gzRjsmuIBhcMEBY4qyxQBulxa50SyjmQo4QhsaBIMurxcoky8lQpqcQedPhWLQIeJMxZ5s44WrUoGCtEYwaH2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/setup-block/-/setup-block-0.3.1.tgz}
- id: registry.npmmirror.com/@vue-macros/setup-block/0.3.1
- name: '@vue-macros/setup-block'
- version: 0.3.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/setup-component/0.17.1_vue@3.3.11:
- resolution: {integrity: sha512-yfv0GKlO914y22T6pE+CiI5lXOb1UxKLzHyyZshOjlmiuSM6MQICaZulTvh+R+MvIayxu/Y53Ujnovbvbmvhsw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/setup-component/-/setup-component-0.17.1.tgz}
- id: registry.npmmirror.com/@vue-macros/setup-component/0.17.1
- name: '@vue-macros/setup-component'
- version: 0.17.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/setup-sfc/0.17.1_vue@3.3.11:
- resolution: {integrity: sha512-TG9xOFrse2AzSlJx/hpgOXbczngBvuDNZRR9FcNU8DZW/TozFFY7zjHOlrFG38cVAJYPjBPuqrn4mix7FnAoTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/setup-sfc/-/setup-sfc-0.17.1.tgz}
- id: registry.npmmirror.com/@vue-macros/setup-sfc/0.17.1
- name: '@vue-macros/setup-sfc'
- version: 0.17.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/short-bind/0.2.1_vue@3.3.11:
- resolution: {integrity: sha512-KtkRAU+cl9BnCmbIA4hMK2GltG5i+4xv+o4l7IhKuYWzBGqBCQHsgDM4B9IwnYh3hb1pHH+aJo/wRcX6hZJW9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/short-bind/-/short-bind-0.2.1.tgz}
- id: registry.npmmirror.com/@vue-macros/short-bind/0.2.1
- name: '@vue-macros/short-bind'
- version: 0.2.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/short-emits/1.5.1_vue@3.3.11:
- resolution: {integrity: sha512-1QO3xsUGr0/nTP9DYqsK4cNGfaEuqPEUlX6jhDBGGZru1POOpZjdqs2m9gvJrtDZJhk4k5i3AVDZ+PQsFrivsQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/short-emits/-/short-emits-1.5.1.tgz}
- id: registry.npmmirror.com/@vue-macros/short-emits/1.5.1
- name: '@vue-macros/short-emits'
- version: 1.5.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue-macros/short-vmodel/1.4.1_vue@3.3.11:
- resolution: {integrity: sha512-FKgA0iV5xQ2N4scZtUq5Rwciss9swcnbJ2eBMQBz2nHBGG183/+eyWkS1y8HzGyK3ZuwQNQ0vbLkN1ZXg75+ug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/short-vmodel/-/short-vmodel-1.4.1.tgz}
- id: registry.npmmirror.com/@vue-macros/short-vmodel/1.4.1
- name: '@vue-macros/short-vmodel'
- version: 1.4.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/@vue/compiler-core/3.3.11:
- resolution: {integrity: sha512-h97/TGWBilnLuRaj58sxNrsUU66fwdRKLOLQ9N/5iNDfp+DZhYH9Obhe0bXxhedl8fjAgpRANpiZfbgWyruQ0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.11.tgz}
- name: '@vue/compiler-core'
- version: 3.3.11
- dependencies:
- '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- estree-walker: registry.npmmirror.com/estree-walker/2.0.2
- source-map-js: registry.npmmirror.com/source-map-js/1.0.2
- registry.npmmirror.com/@vue/compiler-dom/3.3.11:
- resolution: {integrity: sha512-zoAiUIqSKqAJ81WhfPXYmFGwDRuO+loqLxvXmfUdR5fOitPoUiIeFI9cTTyv9MU5O1+ZZglJVTusWzy+wfk5hw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.11.tgz}
- name: '@vue/compiler-dom'
- version: 3.3.11
- dependencies:
- '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- registry.npmmirror.com/@vue/compiler-sfc/3.3.11:
- resolution: {integrity: sha512-U4iqPlHO0KQeK1mrsxCN0vZzw43/lL8POxgpzcJweopmqtoYy9nljJzWDIQS3EfjiYhfdtdk9Gtgz7MRXnz3GA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.11.tgz}
- name: '@vue/compiler-sfc'
- version: 3.3.11
- dependencies:
- '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
- '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
- '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
- '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.3.11
- '@vue/reactivity-transform': registry.npmmirror.com/@vue/reactivity-transform/3.3.11
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- estree-walker: registry.npmmirror.com/estree-walker/2.0.2
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- postcss: registry.npmmirror.com/postcss/8.4.32
- source-map-js: registry.npmmirror.com/source-map-js/1.0.2
- registry.npmmirror.com/@vue/compiler-ssr/3.3.11:
- resolution: {integrity: sha512-Zd66ZwMvndxRTgVPdo+muV4Rv9n9DwQ4SSgWWKWkPFebHQfVYRrVjeygmmDmPewsHyznCNvJ2P2d6iOOhdv8Qg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.11.tgz}
- name: '@vue/compiler-ssr'
- version: 3.3.11
- dependencies:
- '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- registry.npmmirror.com/@vue/devtools-api/6.5.1:
- resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz}
- name: '@vue/devtools-api'
- version: 6.5.1
- dev: false
- registry.npmmirror.com/@vue/language-core/1.8.25_typescript@5.3.3:
- resolution: {integrity: sha512-NJk/5DnAZlpvXX8BdWmHI45bWGLViUaS3R/RMrmFSvFMSbJKuEODpM4kR0F0Ofv5SFzCWuNiMhxameWpVdQsnA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/language-core/-/language-core-1.8.25.tgz}
- id: registry.npmmirror.com/@vue/language-core/1.8.25
- name: '@vue/language-core'
- version: 1.8.25
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@volar/language-core': registry.npmmirror.com/@volar/language-core/1.11.1
- '@volar/source-map': registry.npmmirror.com/@volar/source-map/1.11.1
- '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- computeds: registry.npmmirror.com/computeds/0.0.1
- minimatch: registry.npmmirror.com/minimatch/9.0.3
- muggle-string: registry.npmmirror.com/muggle-string/0.3.1
- path-browserify: registry.npmmirror.com/path-browserify/1.0.1
- typescript: registry.npmmirror.com/typescript/5.3.3
- vue-template-compiler: registry.npmmirror.com/vue-template-compiler/2.7.15
- dev: true
- registry.npmmirror.com/@vue/reactivity-transform/3.3.11:
- resolution: {integrity: sha512-fPGjH0wqJo68A0wQ1k158utDq/cRyZNlFoxGwNScE28aUFOKFEnCBsvyD8jHn+0kd0UKVpuGuaZEQ6r9FJRqCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.11.tgz}
- name: '@vue/reactivity-transform'
- version: 3.3.11
- dependencies:
- '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
- '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- estree-walker: registry.npmmirror.com/estree-walker/2.0.2
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- registry.npmmirror.com/@vue/reactivity/3.3.11:
- resolution: {integrity: sha512-D5tcw091f0nuu+hXq5XANofD0OXnBmaRqMYl5B3fCR+mX+cXJIGNw/VNawBqkjLNWETrFW0i+xH9NvDbTPVh7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.11.tgz}
- name: '@vue/reactivity'
- version: 3.3.11
- dependencies:
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- registry.npmmirror.com/@vue/runtime-core/3.3.11:
- resolution: {integrity: sha512-g9ztHGwEbS5RyWaOpXuyIVFTschclnwhqEbdy5AwGhYOgc7m/q3NFwr50MirZwTTzX55JY8pSkeib9BX04NIpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.11.tgz}
- name: '@vue/runtime-core'
- version: 3.3.11
- dependencies:
- '@vue/reactivity': registry.npmmirror.com/@vue/reactivity/3.3.11
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- registry.npmmirror.com/@vue/runtime-dom/3.3.11:
- resolution: {integrity: sha512-OlhtV1PVpbgk+I2zl+Y5rQtDNcCDs12rsRg71XwaA2/Rbllw6mBLMi57VOn8G0AjOJ4Mdb4k56V37+g8ukShpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.11.tgz}
- name: '@vue/runtime-dom'
- version: 3.3.11
- dependencies:
- '@vue/runtime-core': registry.npmmirror.com/@vue/runtime-core/3.3.11
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- csstype: registry.npmmirror.com/csstype/3.1.3
- registry.npmmirror.com/@vue/server-renderer/3.3.11_vue@3.3.11:
- resolution: {integrity: sha512-AIWk0VwwxCAm4wqtJyxBylRTXSy1wCLOKbWxHaHiu14wjsNYtiRCSgVuqEPVuDpErOlRdNnuRgipQfXRLjLN5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.11.tgz}
- id: registry.npmmirror.com/@vue/server-renderer/3.3.11
- name: '@vue/server-renderer'
- version: 3.3.11
- peerDependencies:
- vue: 3.3.11
- dependencies:
- '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.3.11
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- registry.npmmirror.com/@vue/shared/3.3.11:
- resolution: {integrity: sha512-u2G8ZQ9IhMWTMXaWqZycnK4UthG1fA238CD+DP4Dm4WJi5hdUKKLg0RMRaRpDPNMdkTwIDkp7WtD0Rd9BH9fLw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.3.11.tgz}
- name: '@vue/shared'
- version: 3.3.11
- registry.npmmirror.com/@vueuse/core/10.7.0_vue@3.3.11:
- resolution: {integrity: sha512-4EUDESCHtwu44ZWK3Gc/hZUVhVo/ysvdtwocB5vcauSV4B7NiGY5972WnsojB3vRNdxvAt7kzJWE2h9h7C9d5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/core/-/core-10.7.0.tgz}
- id: registry.npmmirror.com/@vueuse/core/10.7.0
- name: '@vueuse/core'
- version: 10.7.0
- dependencies:
- '@types/web-bluetooth': registry.npmmirror.com/@types/web-bluetooth/0.0.20
- '@vueuse/metadata': registry.npmmirror.com/@vueuse/metadata/10.7.0
- '@vueuse/shared': registry.npmmirror.com/@vueuse/shared/10.7.0_vue@3.3.11
- vue-demi: registry.npmmirror.com/vue-demi/0.14.6_vue@3.3.11
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
- registry.npmmirror.com/@vueuse/metadata/10.7.0:
- resolution: {integrity: sha512-GlaH7tKP2iBCZ3bHNZ6b0cl9g0CJK8lttkBNUX156gWvNYhTKEtbweWLm9rxCPIiwzYcr/5xML6T8ZUEt+DkvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.7.0.tgz}
- name: '@vueuse/metadata'
- version: 10.7.0
- registry.npmmirror.com/@vueuse/shared/10.7.0_vue@3.3.11:
- resolution: {integrity: sha512-kc00uV6CiaTdc3i1CDC4a3lBxzaBE9AgYNtFN87B5OOscqeWElj/uza8qVDmk7/U8JbqoONLbtqiLJ5LGRuqlw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/shared/-/shared-10.7.0.tgz}
- id: registry.npmmirror.com/@vueuse/shared/10.7.0
- name: '@vueuse/shared'
- version: 10.7.0
- dependencies:
- vue-demi: registry.npmmirror.com/vue-demi/0.14.6_vue@3.3.11
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
- registry.npmmirror.com/@windicss/config/1.9.2:
- resolution: {integrity: sha512-5yOaarc7Yce08i3NCNRNMUb/tfmVcFo801UwgM27/dXWWfG30wuPONms8VrQurPZlcZTayPKX0svOx0doWdnPQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@windicss/config/-/config-1.9.2.tgz}
- name: '@windicss/config'
- version: 1.9.2
- dependencies:
- debug: registry.npmmirror.com/debug/4.3.4
- jiti: registry.npmmirror.com/jiti/1.21.0
- windicss: registry.npmmirror.com/windicss/3.5.6
- transitivePeerDependencies:
- - supports-color
- dev: false
- registry.npmmirror.com/@windicss/plugin-utils/1.9.2:
- resolution: {integrity: sha512-P019ZVYJSBVzMBhYSzcMIWpMjZZWEynF4s7oXgP9+5msH4/Ek55erFXY6r+e3sysBFohnIr3hosQ5dp9FMG16Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@windicss/plugin-utils/-/plugin-utils-1.9.2.tgz}
- name: '@windicss/plugin-utils'
- version: 1.9.2
- dependencies:
- '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
- '@windicss/config': registry.npmmirror.com/@windicss/config/1.9.2
- debug: registry.npmmirror.com/debug/4.3.4
- fast-glob: registry.npmmirror.com/fast-glob/3.3.2
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- micromatch: registry.npmmirror.com/micromatch/4.0.5
- windicss: registry.npmmirror.com/windicss/3.5.6
- transitivePeerDependencies:
- - supports-color
- dev: false
- registry.npmmirror.com/acorn/8.11.2:
- resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-8.11.2.tgz}
- name: acorn
- version: 8.11.2
- engines: {node: '>=0.4.0'}
- hasBin: true
- registry.npmmirror.com/ansi-styles/3.2.1:
- resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz}
- name: ansi-styles
- version: 3.2.1
- engines: {node: '>=4'}
- dependencies:
- color-convert: registry.npmmirror.com/color-convert/1.9.3
- registry.npmmirror.com/anymatch/3.1.3:
- resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz}
- name: anymatch
- version: 3.1.3
- engines: {node: '>= 8'}
- dependencies:
- normalize-path: registry.npmmirror.com/normalize-path/3.0.0
- picomatch: registry.npmmirror.com/picomatch/2.3.1
- registry.npmmirror.com/array-buffer-byte-length/1.0.0:
- resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz}
- name: array-buffer-byte-length
- version: 1.0.0
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- is-array-buffer: registry.npmmirror.com/is-array-buffer/3.0.2
- dev: false
- registry.npmmirror.com/ast-kit/0.11.3:
- resolution: {integrity: sha512-qdwwKEhckRk0XE22/xDdmU3v/60E8Edu4qFhgTLIhGGDs/PAJwLw9pQn8Rj99PitlbBZbYpx0k/lbir4kg0SuA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ast-kit/-/ast-kit-0.11.3.tgz}
- name: ast-kit
- version: 0.11.3
- engines: {node: '>=16.14.0'}
- dependencies:
- '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
- '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
- pathe: registry.npmmirror.com/pathe/1.1.1
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/ast-kit/0.9.5:
- resolution: {integrity: sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ast-kit/-/ast-kit-0.9.5.tgz}
- name: ast-kit
- version: 0.9.5
- engines: {node: '>=16.14.0'}
- dependencies:
- '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
- '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
- pathe: registry.npmmirror.com/pathe/1.1.1
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/ast-walker-scope/0.5.0:
- resolution: {integrity: sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ast-walker-scope/-/ast-walker-scope-0.5.0.tgz}
- name: ast-walker-scope
- version: 0.5.0
- engines: {node: '>=16.14.0'}
- dependencies:
- '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
- ast-kit: registry.npmmirror.com/ast-kit/0.9.5
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/asynckit/0.4.0:
- resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz}
- name: asynckit
- version: 0.4.0
- dev: false
- registry.npmmirror.com/available-typed-arrays/1.0.5:
- resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz}
- name: available-typed-arrays
- version: 1.0.5
- engines: {node: '>= 0.4'}
- dev: false
- registry.npmmirror.com/axios/1.6.2:
- resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/axios/-/axios-1.6.2.tgz}
- name: axios
- version: 1.6.2
- dependencies:
- follow-redirects: registry.npmmirror.com/follow-redirects/1.15.3
- form-data: registry.npmmirror.com/form-data/4.0.0
- proxy-from-env: registry.npmmirror.com/proxy-from-env/1.1.0
- transitivePeerDependencies:
- - debug
- dev: false
- registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.4.7_@babel+core@7.23.6:
- resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz}
- id: registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.4.7
- name: babel-plugin-polyfill-corejs2
- version: 0.4.7
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.4_@babel+core@7.23.6
- semver: registry.npmmirror.com/semver/6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.8.7_@babel+core@7.23.6:
- resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz}
- id: registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.8.7
- name: babel-plugin-polyfill-corejs3
- version: 0.8.7
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.4_@babel+core@7.23.6
- core-js-compat: registry.npmmirror.com/core-js-compat/3.34.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.5.4_@babel+core@7.23.6:
- resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz}
- id: registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.5.4
- name: babel-plugin-polyfill-regenerator
- version: 0.5.4
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
- '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.4_@babel+core@7.23.6
- transitivePeerDependencies:
- - supports-color
- dev: true
- registry.npmmirror.com/balanced-match/1.0.2:
- resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz}
- name: balanced-match
- version: 1.0.2
- dev: true
- registry.npmmirror.com/binary-extensions/2.2.0:
- resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz}
- name: binary-extensions
- version: 2.2.0
- engines: {node: '>=8'}
- registry.npmmirror.com/brace-expansion/2.0.1:
- resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz}
- name: brace-expansion
- version: 2.0.1
- dependencies:
- balanced-match: registry.npmmirror.com/balanced-match/1.0.2
- dev: true
- registry.npmmirror.com/braces/3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz}
- name: braces
- version: 3.0.2
- engines: {node: '>=8'}
- dependencies:
- fill-range: registry.npmmirror.com/fill-range/7.0.1
- registry.npmmirror.com/browserslist/4.22.2:
- resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browserslist/-/browserslist-4.22.2.tgz}
- name: browserslist
- version: 4.22.2
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001568
- electron-to-chromium: registry.npmmirror.com/electron-to-chromium/1.4.611
- node-releases: registry.npmmirror.com/node-releases/2.0.14
- update-browserslist-db: registry.npmmirror.com/update-browserslist-db/1.0.13_browserslist@4.22.2
- registry.npmmirror.com/cac/6.7.14:
- resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cac/-/cac-6.7.14.tgz}
- name: cac
- version: 6.7.14
- engines: {node: '>=8'}
- dev: false
- registry.npmmirror.com/call-bind/1.0.5:
- resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/call-bind/-/call-bind-1.0.5.tgz}
- name: call-bind
- version: 1.0.5
- dependencies:
- function-bind: registry.npmmirror.com/function-bind/1.1.2
- get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
- set-function-length: registry.npmmirror.com/set-function-length/1.1.1
- dev: false
- registry.npmmirror.com/caniuse-lite/1.0.30001568:
- resolution: {integrity: sha512-vSUkH84HontZJ88MiNrOau1EBrCqEQYgkC5gIySiDlpsm8sGVrhU7Kx4V6h0tnqaHzIHZv08HlJIwPbL4XL9+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001568.tgz}
- name: caniuse-lite
- version: 1.0.30001568
- registry.npmmirror.com/chalk/2.4.2:
- resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz}
- name: chalk
- version: 2.4.2
- engines: {node: '>=4'}
- dependencies:
- ansi-styles: registry.npmmirror.com/ansi-styles/3.2.1
- escape-string-regexp: registry.npmmirror.com/escape-string-regexp/1.0.5
- supports-color: registry.npmmirror.com/supports-color/5.5.0
- registry.npmmirror.com/chokidar/3.5.3:
- resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz}
- name: chokidar
- version: 3.5.3
- engines: {node: '>= 8.10.0'}
- dependencies:
- anymatch: registry.npmmirror.com/anymatch/3.1.3
- braces: registry.npmmirror.com/braces/3.0.2
- glob-parent: registry.npmmirror.com/glob-parent/5.1.2
- is-binary-path: registry.npmmirror.com/is-binary-path/2.1.0
- is-glob: registry.npmmirror.com/is-glob/4.0.3
- normalize-path: registry.npmmirror.com/normalize-path/3.0.0
- readdirp: registry.npmmirror.com/readdirp/3.6.0
- optionalDependencies:
- fsevents: registry.npmmirror.com/fsevents/2.3.3
- registry.npmmirror.com/color-convert/1.9.3:
- resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz}
- name: color-convert
- version: 1.9.3
- dependencies:
- color-name: registry.npmmirror.com/color-name/1.1.3
- registry.npmmirror.com/color-name/1.1.3:
- resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz}
- name: color-name
- version: 1.1.3
- registry.npmmirror.com/colorette/2.0.20:
- resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz}
- name: colorette
- version: 2.0.20
- dev: false
- registry.npmmirror.com/combined-stream/1.0.8:
- resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz}
- name: combined-stream
- version: 1.0.8
- engines: {node: '>= 0.8'}
- dependencies:
- delayed-stream: registry.npmmirror.com/delayed-stream/1.0.0
- dev: false
- registry.npmmirror.com/computeds/0.0.1:
- resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/computeds/-/computeds-0.0.1.tgz}
- name: computeds
- version: 0.0.1
- dev: true
- registry.npmmirror.com/consola/3.2.3:
- resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/consola/-/consola-3.2.3.tgz}
- name: consola
- version: 3.2.3
- engines: {node: ^14.18.0 || >=16.10.0}
- dev: false
- registry.npmmirror.com/convert-source-map/2.0.0:
- resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz}
- name: convert-source-map
- version: 2.0.0
- registry.npmmirror.com/core-js-compat/3.34.0:
- resolution: {integrity: sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-js-compat/-/core-js-compat-3.34.0.tgz}
- name: core-js-compat
- version: 3.34.0
- dependencies:
- browserslist: registry.npmmirror.com/browserslist/4.22.2
- dev: true
- registry.npmmirror.com/core-js/3.34.0:
- resolution: {integrity: sha512-aDdvlDder8QmY91H88GzNi9EtQi2TjvQhpCX6B1v/dAZHU1AuLgHvRh54RiOerpEhEW46Tkf+vgAViB/CWC0ag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-js/-/core-js-3.34.0.tgz}
- name: core-js
- version: 3.34.0
- requiresBuild: true
- dev: true
- registry.npmmirror.com/cross-spawn/7.0.3:
- resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz}
- name: cross-spawn
- version: 7.0.3
- engines: {node: '>= 8'}
- dependencies:
- path-key: registry.npmmirror.com/path-key/3.1.1
- shebang-command: registry.npmmirror.com/shebang-command/2.0.0
- which: registry.npmmirror.com/which/2.0.2
- dev: false
- registry.npmmirror.com/css-tree/2.3.1:
- resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/css-tree/-/css-tree-2.3.1.tgz}
- name: css-tree
- version: 2.3.1
- engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
- dependencies:
- mdn-data: registry.npmmirror.com/mdn-data/2.0.30
- source-map-js: registry.npmmirror.com/source-map-js/1.0.2
- dev: false
- registry.npmmirror.com/csstype/3.1.3:
- resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz}
- name: csstype
- version: 3.1.3
- registry.npmmirror.com/de-indent/1.0.2:
- resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/de-indent/-/de-indent-1.0.2.tgz}
- name: de-indent
- version: 1.0.2
- dev: true
- registry.npmmirror.com/debug/4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz}
- name: debug
- version: 4.3.4
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
- dependencies:
- ms: registry.npmmirror.com/ms/2.1.2
- registry.npmmirror.com/deep-equal/2.2.3:
- resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/deep-equal/-/deep-equal-2.2.3.tgz}
- name: deep-equal
- version: 2.2.3
- engines: {node: '>= 0.4'}
- dependencies:
- array-buffer-byte-length: registry.npmmirror.com/array-buffer-byte-length/1.0.0
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- es-get-iterator: registry.npmmirror.com/es-get-iterator/1.1.3
- get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
- is-arguments: registry.npmmirror.com/is-arguments/1.1.1
- is-array-buffer: registry.npmmirror.com/is-array-buffer/3.0.2
- is-date-object: registry.npmmirror.com/is-date-object/1.0.5
- is-regex: registry.npmmirror.com/is-regex/1.1.4
- is-shared-array-buffer: registry.npmmirror.com/is-shared-array-buffer/1.0.2
- isarray: registry.npmmirror.com/isarray/2.0.5
- object-is: registry.npmmirror.com/object-is/1.1.5
- object-keys: registry.npmmirror.com/object-keys/1.1.1
- object.assign: registry.npmmirror.com/object.assign/4.1.5
- regexp.prototype.flags: registry.npmmirror.com/regexp.prototype.flags/1.5.1
- side-channel: registry.npmmirror.com/side-channel/1.0.4
- which-boxed-primitive: registry.npmmirror.com/which-boxed-primitive/1.0.2
- which-collection: registry.npmmirror.com/which-collection/1.0.1
- which-typed-array: registry.npmmirror.com/which-typed-array/1.1.13
- dev: false
- registry.npmmirror.com/define-data-property/1.1.1:
- resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/define-data-property/-/define-data-property-1.1.1.tgz}
- name: define-data-property
- version: 1.1.1
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
- gopd: registry.npmmirror.com/gopd/1.0.1
- has-property-descriptors: registry.npmmirror.com/has-property-descriptors/1.0.1
- dev: false
- registry.npmmirror.com/define-properties/1.2.1:
- resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/define-properties/-/define-properties-1.2.1.tgz}
- name: define-properties
- version: 1.2.1
- engines: {node: '>= 0.4'}
- dependencies:
- define-data-property: registry.npmmirror.com/define-data-property/1.1.1
- has-property-descriptors: registry.npmmirror.com/has-property-descriptors/1.0.1
- object-keys: registry.npmmirror.com/object-keys/1.1.1
- dev: false
- registry.npmmirror.com/defu/6.1.3:
- resolution: {integrity: sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/defu/-/defu-6.1.3.tgz}
- name: defu
- version: 6.1.3
- dev: false
- registry.npmmirror.com/delayed-stream/1.0.0:
- resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz}
- name: delayed-stream
- version: 1.0.0
- engines: {node: '>=0.4.0'}
- dev: false
- registry.npmmirror.com/destr/2.0.2:
- resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/destr/-/destr-2.0.2.tgz}
- name: destr
- version: 2.0.2
- dev: false
- registry.npmmirror.com/duplexer/0.1.2:
- resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/duplexer/-/duplexer-0.1.2.tgz}
- name: duplexer
- version: 0.1.2
- dev: false
- registry.npmmirror.com/electron-to-chromium/1.4.611:
- resolution: {integrity: sha512-ZtRpDxrjHapOwxtv+nuth5ByB8clyn8crVynmRNGO3wG3LOp8RTcyZDqwaI6Ng6y8FCK2hVZmJoqwCskKbNMaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.611.tgz}
- name: electron-to-chromium
- version: 1.4.611
- registry.npmmirror.com/es-get-iterator/1.1.3:
- resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz}
- name: es-get-iterator
- version: 1.1.3
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
- has-symbols: registry.npmmirror.com/has-symbols/1.0.3
- is-arguments: registry.npmmirror.com/is-arguments/1.1.1
- is-map: registry.npmmirror.com/is-map/2.0.2
- is-set: registry.npmmirror.com/is-set/2.0.2
- is-string: registry.npmmirror.com/is-string/1.0.7
- isarray: registry.npmmirror.com/isarray/2.0.5
- stop-iteration-iterator: registry.npmmirror.com/stop-iteration-iterator/1.0.0
- dev: false
- registry.npmmirror.com/esbuild/0.19.9:
- resolution: {integrity: sha512-U9CHtKSy+EpPsEBa+/A2gMs/h3ylBC0H0KSqIg7tpztHerLi6nrrcoUJAkNCEPumx8yJ+Byic4BVwHgRbN0TBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.19.9.tgz}
- name: esbuild
- version: 0.19.9
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': registry.npmmirror.com/@esbuild/android-arm/0.19.9
- '@esbuild/android-arm64': registry.npmmirror.com/@esbuild/android-arm64/0.19.9
- '@esbuild/android-x64': registry.npmmirror.com/@esbuild/android-x64/0.19.9
- '@esbuild/darwin-arm64': registry.npmmirror.com/@esbuild/darwin-arm64/0.19.9
- '@esbuild/darwin-x64': registry.npmmirror.com/@esbuild/darwin-x64/0.19.9
- '@esbuild/freebsd-arm64': registry.npmmirror.com/@esbuild/freebsd-arm64/0.19.9
- '@esbuild/freebsd-x64': registry.npmmirror.com/@esbuild/freebsd-x64/0.19.9
- '@esbuild/linux-arm': registry.npmmirror.com/@esbuild/linux-arm/0.19.9
- '@esbuild/linux-arm64': registry.npmmirror.com/@esbuild/linux-arm64/0.19.9
- '@esbuild/linux-ia32': registry.npmmirror.com/@esbuild/linux-ia32/0.19.9
- '@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64/0.19.9
- '@esbuild/linux-mips64el': registry.npmmirror.com/@esbuild/linux-mips64el/0.19.9
- '@esbuild/linux-ppc64': registry.npmmirror.com/@esbuild/linux-ppc64/0.19.9
- '@esbuild/linux-riscv64': registry.npmmirror.com/@esbuild/linux-riscv64/0.19.9
- '@esbuild/linux-s390x': registry.npmmirror.com/@esbuild/linux-s390x/0.19.9
- '@esbuild/linux-x64': registry.npmmirror.com/@esbuild/linux-x64/0.19.9
- '@esbuild/netbsd-x64': registry.npmmirror.com/@esbuild/netbsd-x64/0.19.9
- '@esbuild/openbsd-x64': registry.npmmirror.com/@esbuild/openbsd-x64/0.19.9
- '@esbuild/sunos-x64': registry.npmmirror.com/@esbuild/sunos-x64/0.19.9
- '@esbuild/win32-arm64': registry.npmmirror.com/@esbuild/win32-arm64/0.19.9
- '@esbuild/win32-ia32': registry.npmmirror.com/@esbuild/win32-ia32/0.19.9
- '@esbuild/win32-x64': registry.npmmirror.com/@esbuild/win32-x64/0.19.9
- registry.npmmirror.com/escalade/3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz}
- name: escalade
- version: 3.1.1
- engines: {node: '>=6'}
- registry.npmmirror.com/escape-string-regexp/1.0.5:
- resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz}
- name: escape-string-regexp
- version: 1.0.5
- engines: {node: '>=0.8.0'}
- registry.npmmirror.com/escape-string-regexp/5.0.0:
- resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz}
- name: escape-string-regexp
- version: 5.0.0
- engines: {node: '>=12'}
- dev: true
- registry.npmmirror.com/esprima-extract-comments/1.1.0:
- resolution: {integrity: sha512-sBQUnvJwpeE9QnPrxh7dpI/dp67erYG4WXEAreAMoelPRpMR7NWb4YtwRPn9b+H1uLQKl/qS8WYmyaljTpjIsw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esprima-extract-comments/-/esprima-extract-comments-1.1.0.tgz}
- name: esprima-extract-comments
- version: 1.1.0
- engines: {node: '>=4'}
- dependencies:
- esprima: registry.npmmirror.com/esprima/4.0.1
- dev: false
- registry.npmmirror.com/esprima/4.0.1:
- resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz}
- name: esprima
- version: 4.0.1
- engines: {node: '>=4'}
- hasBin: true
- dev: false
- registry.npmmirror.com/estree-walker/2.0.2:
- resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz}
- name: estree-walker
- version: 2.0.2
- registry.npmmirror.com/esutils/2.0.3:
- resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz}
- name: esutils
- version: 2.0.3
- engines: {node: '>=0.10.0'}
- dev: true
- registry.npmmirror.com/execa/5.1.1:
- resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz}
- name: execa
- version: 5.1.1
- engines: {node: '>=10'}
- dependencies:
- cross-spawn: registry.npmmirror.com/cross-spawn/7.0.3
- get-stream: registry.npmmirror.com/get-stream/6.0.1
- human-signals: registry.npmmirror.com/human-signals/2.1.0
- is-stream: registry.npmmirror.com/is-stream/2.0.1
- merge-stream: registry.npmmirror.com/merge-stream/2.0.0
- npm-run-path: registry.npmmirror.com/npm-run-path/4.0.1
- onetime: registry.npmmirror.com/onetime/5.1.2
- signal-exit: registry.npmmirror.com/signal-exit/3.0.7
- strip-final-newline: registry.npmmirror.com/strip-final-newline/2.0.0
- dev: false
- registry.npmmirror.com/extract-comments/1.1.0:
- resolution: {integrity: sha512-dzbZV2AdSSVW/4E7Ti5hZdHWbA+Z80RJsJhr5uiL10oyjl/gy7/o+HI1HwK4/WSZhlq4SNKU3oUzXlM13Qx02Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/extract-comments/-/extract-comments-1.1.0.tgz}
- name: extract-comments
- version: 1.1.0
- engines: {node: '>=6'}
- dependencies:
- esprima-extract-comments: registry.npmmirror.com/esprima-extract-comments/1.1.0
- parse-code-context: registry.npmmirror.com/parse-code-context/1.0.0
- dev: false
- registry.npmmirror.com/fast-glob/3.3.2:
- resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.2.tgz}
- name: fast-glob
- version: 3.3.2
- engines: {node: '>=8.6.0'}
- dependencies:
- '@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
- '@nodelib/fs.walk': registry.npmmirror.com/@nodelib/fs.walk/1.2.8
- glob-parent: registry.npmmirror.com/glob-parent/5.1.2
- merge2: registry.npmmirror.com/merge2/1.4.1
- micromatch: registry.npmmirror.com/micromatch/4.0.5
- registry.npmmirror.com/fastq/1.15.0:
- resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz}
- name: fastq
- version: 1.15.0
- dependencies:
- reusify: registry.npmmirror.com/reusify/1.0.4
- registry.npmmirror.com/fill-range/7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz}
- name: fill-range
- version: 7.0.1
- engines: {node: '>=8'}
- dependencies:
- to-regex-range: registry.npmmirror.com/to-regex-range/5.0.1
- registry.npmmirror.com/find-up/5.0.0:
- resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz}
- name: find-up
- version: 5.0.0
- engines: {node: '>=10'}
- dependencies:
- locate-path: registry.npmmirror.com/locate-path/6.0.0
- path-exists: registry.npmmirror.com/path-exists/4.0.0
- dev: false
- registry.npmmirror.com/follow-redirects/1.15.3:
- resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.3.tgz}
- name: follow-redirects
- version: 1.15.3
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
- dev: false
- registry.npmmirror.com/for-each/0.3.3:
- resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz}
- name: for-each
- version: 0.3.3
- dependencies:
- is-callable: registry.npmmirror.com/is-callable/1.2.7
- dev: false
- registry.npmmirror.com/form-data/4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz}
- name: form-data
- version: 4.0.0
- engines: {node: '>= 6'}
- dependencies:
- asynckit: registry.npmmirror.com/asynckit/0.4.0
- combined-stream: registry.npmmirror.com/combined-stream/1.0.8
- mime-types: registry.npmmirror.com/mime-types/2.1.35
- dev: false
- registry.npmmirror.com/fsevents/2.3.3:
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz}
- name: fsevents
- version: 2.3.3
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
- os: [darwin]
- requiresBuild: true
- optional: true
- registry.npmmirror.com/function-bind/1.1.2:
- resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz}
- name: function-bind
- version: 1.1.2
- registry.npmmirror.com/functions-have-names/1.2.3:
- resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz}
- name: functions-have-names
- version: 1.2.3
- dev: false
- registry.npmmirror.com/gensync/1.0.0-beta.2:
- resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz}
- name: gensync
- version: 1.0.0-beta.2
- engines: {node: '>=6.9.0'}
- registry.npmmirror.com/get-intrinsic/1.2.2:
- resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.2.tgz}
- name: get-intrinsic
- version: 1.2.2
- dependencies:
- function-bind: registry.npmmirror.com/function-bind/1.1.2
- has-proto: registry.npmmirror.com/has-proto/1.0.1
- has-symbols: registry.npmmirror.com/has-symbols/1.0.3
- hasown: registry.npmmirror.com/hasown/2.0.0
- dev: false
- registry.npmmirror.com/get-stream/6.0.1:
- resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz}
- name: get-stream
- version: 6.0.1
- engines: {node: '>=10'}
- dev: false
- registry.npmmirror.com/glob-parent/5.1.2:
- resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz}
- name: glob-parent
- version: 5.1.2
- engines: {node: '>= 6'}
- dependencies:
- is-glob: registry.npmmirror.com/is-glob/4.0.3
- registry.npmmirror.com/globals/11.12.0:
- resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz}
- name: globals
- version: 11.12.0
- engines: {node: '>=4'}
- registry.npmmirror.com/gopd/1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/gopd/-/gopd-1.0.1.tgz}
- name: gopd
- version: 1.0.1
- dependencies:
- get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
- dev: false
- registry.npmmirror.com/gzip-size/6.0.0:
- resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/gzip-size/-/gzip-size-6.0.0.tgz}
- name: gzip-size
- version: 6.0.0
- engines: {node: '>=10'}
- dependencies:
- duplexer: registry.npmmirror.com/duplexer/0.1.2
- dev: false
- registry.npmmirror.com/has-bigints/1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz}
- name: has-bigints
- version: 1.0.2
- dev: false
- registry.npmmirror.com/has-flag/3.0.0:
- resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz}
- name: has-flag
- version: 3.0.0
- engines: {node: '>=4'}
- registry.npmmirror.com/has-property-descriptors/1.0.1:
- resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz}
- name: has-property-descriptors
- version: 1.0.1
- dependencies:
- get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
- dev: false
- registry.npmmirror.com/has-proto/1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz}
- name: has-proto
- version: 1.0.1
- engines: {node: '>= 0.4'}
- dev: false
- registry.npmmirror.com/has-symbols/1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz}
- name: has-symbols
- version: 1.0.3
- engines: {node: '>= 0.4'}
- dev: false
- registry.npmmirror.com/has-tostringtag/1.0.0:
- resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz}
- name: has-tostringtag
- version: 1.0.0
- engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: registry.npmmirror.com/has-symbols/1.0.3
- dev: false
- registry.npmmirror.com/hasown/2.0.0:
- resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/hasown/-/hasown-2.0.0.tgz}
- name: hasown
- version: 2.0.0
- engines: {node: '>= 0.4'}
- dependencies:
- function-bind: registry.npmmirror.com/function-bind/1.1.2
- registry.npmmirror.com/he/1.2.0:
- resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/he/-/he-1.2.0.tgz}
- name: he
- version: 1.2.0
- hasBin: true
- dev: true
- registry.npmmirror.com/human-signals/2.1.0:
- resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz}
- name: human-signals
- version: 2.1.0
- engines: {node: '>=10.17.0'}
- dev: false
- registry.npmmirror.com/immutable/4.3.4:
- resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/immutable/-/immutable-4.3.4.tgz}
- name: immutable
- version: 4.3.4
- registry.npmmirror.com/internal-slot/1.0.6:
- resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.6.tgz}
- name: internal-slot
- version: 1.0.6
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
- hasown: registry.npmmirror.com/hasown/2.0.0
- side-channel: registry.npmmirror.com/side-channel/1.0.4
- dev: false
- registry.npmmirror.com/is-arguments/1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-arguments/-/is-arguments-1.1.1.tgz}
- name: is-arguments
- version: 1.1.1
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
- dev: false
- registry.npmmirror.com/is-array-buffer/3.0.2:
- resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz}
- name: is-array-buffer
- version: 3.0.2
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
- is-typed-array: registry.npmmirror.com/is-typed-array/1.1.12
- dev: false
- registry.npmmirror.com/is-bigint/1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz}
- name: is-bigint
- version: 1.0.4
- dependencies:
- has-bigints: registry.npmmirror.com/has-bigints/1.0.2
- dev: false
- registry.npmmirror.com/is-binary-path/2.1.0:
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz}
- name: is-binary-path
- version: 2.1.0
- engines: {node: '>=8'}
- dependencies:
- binary-extensions: registry.npmmirror.com/binary-extensions/2.2.0
- registry.npmmirror.com/is-boolean-object/1.1.2:
- resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz}
- name: is-boolean-object
- version: 1.1.2
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
- dev: false
- registry.npmmirror.com/is-callable/1.2.7:
- resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz}
- name: is-callable
- version: 1.2.7
- engines: {node: '>= 0.4'}
- dev: false
- registry.npmmirror.com/is-core-module/2.13.1:
- resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.1.tgz}
- name: is-core-module
- version: 2.13.1
- dependencies:
- hasown: registry.npmmirror.com/hasown/2.0.0
- dev: true
- registry.npmmirror.com/is-date-object/1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz}
- name: is-date-object
- version: 1.0.5
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
- dev: false
- registry.npmmirror.com/is-extglob/2.1.1:
- resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz}
- name: is-extglob
- version: 2.1.1
- engines: {node: '>=0.10.0'}
- registry.npmmirror.com/is-glob/4.0.3:
- resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz}
- name: is-glob
- version: 4.0.3
- engines: {node: '>=0.10.0'}
- dependencies:
- is-extglob: registry.npmmirror.com/is-extglob/2.1.1
- registry.npmmirror.com/is-map/2.0.2:
- resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-map/-/is-map-2.0.2.tgz}
- name: is-map
- version: 2.0.2
- dev: false
- registry.npmmirror.com/is-number-object/1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-number-object/-/is-number-object-1.0.7.tgz}
- name: is-number-object
- version: 1.0.7
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
- dev: false
- registry.npmmirror.com/is-number/7.0.0:
- resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz}
- name: is-number
- version: 7.0.0
- engines: {node: '>=0.12.0'}
- registry.npmmirror.com/is-regex/1.1.4:
- resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz}
- name: is-regex
- version: 1.1.4
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
- dev: false
- registry.npmmirror.com/is-set/2.0.2:
- resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-set/-/is-set-2.0.2.tgz}
- name: is-set
- version: 2.0.2
- dev: false
- registry.npmmirror.com/is-shared-array-buffer/1.0.2:
- resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz}
- name: is-shared-array-buffer
- version: 1.0.2
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- dev: false
- registry.npmmirror.com/is-stream/2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz}
- name: is-stream
- version: 2.0.1
- engines: {node: '>=8'}
- dev: false
- registry.npmmirror.com/is-string/1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz}
- name: is-string
- version: 1.0.7
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
- dev: false
- registry.npmmirror.com/is-symbol/1.0.4:
- resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz}
- name: is-symbol
- version: 1.0.4
- engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: registry.npmmirror.com/has-symbols/1.0.3
- dev: false
- registry.npmmirror.com/is-typed-array/1.1.12:
- resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.12.tgz}
- name: is-typed-array
- version: 1.1.12
- engines: {node: '>= 0.4'}
- dependencies:
- which-typed-array: registry.npmmirror.com/which-typed-array/1.1.13
- dev: false
- registry.npmmirror.com/is-weakmap/2.0.1:
- resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-weakmap/-/is-weakmap-2.0.1.tgz}
- name: is-weakmap
- version: 2.0.1
- dev: false
- registry.npmmirror.com/is-weakset/2.0.2:
- resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-weakset/-/is-weakset-2.0.2.tgz}
- name: is-weakset
- version: 2.0.2
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
- dev: false
- registry.npmmirror.com/isarray/2.0.5:
- resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isarray/-/isarray-2.0.5.tgz}
- name: isarray
- version: 2.0.5
- dev: false
- registry.npmmirror.com/isexe/2.0.0:
- resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz}
- name: isexe
- version: 2.0.0
- dev: false
- registry.npmmirror.com/jiti/1.21.0:
- resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jiti/-/jiti-1.21.0.tgz}
- name: jiti
- version: 1.21.0
- hasBin: true
- dev: false
- registry.npmmirror.com/js-tokens/4.0.0:
- resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz}
- name: js-tokens
- version: 4.0.0
- registry.npmmirror.com/jsesc/0.5.0:
- resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsesc/-/jsesc-0.5.0.tgz}
- name: jsesc
- version: 0.5.0
- hasBin: true
- dev: true
- registry.npmmirror.com/jsesc/2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz}
- name: jsesc
- version: 2.5.2
- engines: {node: '>=4'}
- hasBin: true
- registry.npmmirror.com/json5/2.2.3:
- resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz}
- name: json5
- version: 2.2.3
- engines: {node: '>=6'}
- hasBin: true
- registry.npmmirror.com/jsonc-parser/3.2.0:
- resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz}
- name: jsonc-parser
- version: 3.2.0
- registry.npmmirror.com/kolorist/1.8.0:
- resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz}
- name: kolorist
- version: 1.8.0
- dev: false
- registry.npmmirror.com/local-pkg/0.4.3:
- resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/local-pkg/-/local-pkg-0.4.3.tgz}
- name: local-pkg
- version: 0.4.3
- engines: {node: '>=14'}
- registry.npmmirror.com/local-pkg/0.5.0:
- resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/local-pkg/-/local-pkg-0.5.0.tgz}
- name: local-pkg
- version: 0.5.0
- engines: {node: '>=14'}
- dependencies:
- mlly: registry.npmmirror.com/mlly/1.4.2
- pkg-types: registry.npmmirror.com/pkg-types/1.0.3
- registry.npmmirror.com/locate-path/6.0.0:
- resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz}
- name: locate-path
- version: 6.0.0
- engines: {node: '>=10'}
- dependencies:
- p-locate: registry.npmmirror.com/p-locate/5.0.0
- dev: false
- registry.npmmirror.com/lodash.debounce/4.0.8:
- resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz}
- name: lodash.debounce
- version: 4.0.8
- dev: true
- registry.npmmirror.com/lru-cache/5.1.1:
- resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz}
- name: lru-cache
- version: 5.1.1
- dependencies:
- yallist: registry.npmmirror.com/yallist/3.1.1
- registry.npmmirror.com/lru-cache/6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz}
- name: lru-cache
- version: 6.0.0
- engines: {node: '>=10'}
- dependencies:
- yallist: registry.npmmirror.com/yallist/4.0.0
- dev: true
- registry.npmmirror.com/magic-string-ast/0.3.0:
- resolution: {integrity: sha512-0shqecEPgdFpnI3AP90epXyxZy9g6CRZ+SZ7BcqFwYmtFEnZ1jpevcV5HoyVnlDS9gCnc1UIg3Rsvp3Ci7r8OA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/magic-string-ast/-/magic-string-ast-0.3.0.tgz}
- name: magic-string-ast
- version: 0.3.0
- engines: {node: '>=16.14.0'}
- dependencies:
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- dev: true
- registry.npmmirror.com/magic-string/0.30.5:
- resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.30.5.tgz}
- name: magic-string
- version: 0.30.5
- engines: {node: '>=12'}
- dependencies:
- '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.15
- registry.npmmirror.com/mdn-data/2.0.30:
- resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.30.tgz}
- name: mdn-data
- version: 2.0.30
- dev: false
- registry.npmmirror.com/merge-stream/2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz}
- name: merge-stream
- version: 2.0.0
- dev: false
- registry.npmmirror.com/merge2/1.4.1:
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz}
- name: merge2
- version: 1.4.1
- engines: {node: '>= 8'}
- registry.npmmirror.com/micromatch/4.0.5:
- resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz}
- name: micromatch
- version: 4.0.5
- engines: {node: '>=8.6'}
- dependencies:
- braces: registry.npmmirror.com/braces/3.0.2
- picomatch: registry.npmmirror.com/picomatch/2.3.1
- registry.npmmirror.com/mime-db/1.52.0:
- resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz}
- name: mime-db
- version: 1.52.0
- engines: {node: '>= 0.6'}
- dev: false
- registry.npmmirror.com/mime-types/2.1.35:
- resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz}
- name: mime-types
- version: 2.1.35
- engines: {node: '>= 0.6'}
- dependencies:
- mime-db: registry.npmmirror.com/mime-db/1.52.0
- dev: false
- registry.npmmirror.com/mimic-fn/2.1.0:
- resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz}
- name: mimic-fn
- version: 2.1.0
- engines: {node: '>=6'}
- dev: false
- registry.npmmirror.com/minimatch/9.0.3:
- resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minimatch/-/minimatch-9.0.3.tgz}
- name: minimatch
- version: 9.0.3
- engines: {node: '>=16 || 14 >=14.17'}
- dependencies:
- brace-expansion: registry.npmmirror.com/brace-expansion/2.0.1
- dev: true
- registry.npmmirror.com/mlly/1.4.2:
- resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mlly/-/mlly-1.4.2.tgz}
- name: mlly
- version: 1.4.2
- dependencies:
- acorn: registry.npmmirror.com/acorn/8.11.2
- pathe: registry.npmmirror.com/pathe/1.1.1
- pkg-types: registry.npmmirror.com/pkg-types/1.0.3
- ufo: registry.npmmirror.com/ufo/1.3.2
- registry.npmmirror.com/mrmime/1.0.1:
- resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mrmime/-/mrmime-1.0.1.tgz}
- name: mrmime
- version: 1.0.1
- engines: {node: '>=10'}
- registry.npmmirror.com/ms/2.1.2:
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz}
- name: ms
- version: 2.1.2
- registry.npmmirror.com/muggle-string/0.3.1:
- resolution: {integrity: sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/muggle-string/-/muggle-string-0.3.1.tgz}
- name: muggle-string
- version: 0.3.1
- dev: true
- registry.npmmirror.com/nanoid/3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz}
- name: nanoid
- version: 3.3.7
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
- registry.npmmirror.com/node-fetch-native/1.4.1:
- resolution: {integrity: sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-fetch-native/-/node-fetch-native-1.4.1.tgz}
- name: node-fetch-native
- version: 1.4.1
- dev: false
- registry.npmmirror.com/node-releases/2.0.14:
- resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.14.tgz}
- name: node-releases
- version: 2.0.14
- registry.npmmirror.com/normalize-path/3.0.0:
- resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz}
- name: normalize-path
- version: 3.0.0
- engines: {node: '>=0.10.0'}
- registry.npmmirror.com/npm-run-path/4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz}
- name: npm-run-path
- version: 4.0.1
- engines: {node: '>=8'}
- dependencies:
- path-key: registry.npmmirror.com/path-key/3.1.1
- dev: false
- registry.npmmirror.com/object-inspect/1.13.1:
- resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.1.tgz}
- name: object-inspect
- version: 1.13.1
- dev: false
- registry.npmmirror.com/object-is/1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-is/-/object-is-1.1.5.tgz}
- name: object-is
- version: 1.1.5
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- define-properties: registry.npmmirror.com/define-properties/1.2.1
- dev: false
- registry.npmmirror.com/object-keys/1.1.1:
- resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz}
- name: object-keys
- version: 1.1.1
- engines: {node: '>= 0.4'}
- dev: false
- registry.npmmirror.com/object.assign/4.1.5:
- resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object.assign/-/object.assign-4.1.5.tgz}
- name: object.assign
- version: 4.1.5
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- define-properties: registry.npmmirror.com/define-properties/1.2.1
- has-symbols: registry.npmmirror.com/has-symbols/1.0.3
- object-keys: registry.npmmirror.com/object-keys/1.1.1
- dev: false
- registry.npmmirror.com/ofetch/1.3.3:
- resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ofetch/-/ofetch-1.3.3.tgz}
- name: ofetch
- version: 1.3.3
- dependencies:
- destr: registry.npmmirror.com/destr/2.0.2
- node-fetch-native: registry.npmmirror.com/node-fetch-native/1.4.1
- ufo: registry.npmmirror.com/ufo/1.3.2
- dev: false
- registry.npmmirror.com/onetime/5.1.2:
- resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz}
- name: onetime
- version: 5.1.2
- engines: {node: '>=6'}
- dependencies:
- mimic-fn: registry.npmmirror.com/mimic-fn/2.1.0
- dev: false
- registry.npmmirror.com/p-limit/3.1.0:
- resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz}
- name: p-limit
- version: 3.1.0
- engines: {node: '>=10'}
- dependencies:
- yocto-queue: registry.npmmirror.com/yocto-queue/0.1.0
- dev: false
- registry.npmmirror.com/p-locate/5.0.0:
- resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz}
- name: p-locate
- version: 5.0.0
- engines: {node: '>=10'}
- dependencies:
- p-limit: registry.npmmirror.com/p-limit/3.1.0
- dev: false
- registry.npmmirror.com/parse-code-context/1.0.0:
- resolution: {integrity: sha512-OZQaqKaQnR21iqhlnPfVisFjBWjhnMl5J9MgbP8xC+EwoVqbXrq78lp+9Zb3ahmLzrIX5Us/qbvBnaS3hkH6OA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/parse-code-context/-/parse-code-context-1.0.0.tgz}
- name: parse-code-context
- version: 1.0.0
- engines: {node: '>=6'}
- dev: false
- registry.npmmirror.com/path-browserify/1.0.1:
- resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz}
- name: path-browserify
- version: 1.0.1
- dev: true
- registry.npmmirror.com/path-exists/4.0.0:
- resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz}
- name: path-exists
- version: 4.0.0
- engines: {node: '>=8'}
- dev: false
- registry.npmmirror.com/path-key/3.1.1:
- resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz}
- name: path-key
- version: 3.1.1
- engines: {node: '>=8'}
- dev: false
- registry.npmmirror.com/path-parse/1.0.7:
- resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz}
- name: path-parse
- version: 1.0.7
- dev: true
- registry.npmmirror.com/pathe/1.1.1:
- resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pathe/-/pathe-1.1.1.tgz}
- name: pathe
- version: 1.1.1
- registry.npmmirror.com/perfect-debounce/1.0.0:
- resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz}
- name: perfect-debounce
- version: 1.0.0
- dev: false
- registry.npmmirror.com/picocolors/1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz}
- name: picocolors
- version: 1.0.0
- registry.npmmirror.com/picomatch/2.3.1:
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz}
- name: picomatch
- version: 2.3.1
- engines: {node: '>=8.6'}
- registry.npmmirror.com/pkg-types/1.0.3:
- resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pkg-types/-/pkg-types-1.0.3.tgz}
- name: pkg-types
- version: 1.0.3
- dependencies:
- jsonc-parser: registry.npmmirror.com/jsonc-parser/3.2.0
- mlly: registry.npmmirror.com/mlly/1.4.2
- pathe: registry.npmmirror.com/pathe/1.1.1
- registry.npmmirror.com/postcss/8.4.32:
- resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.32.tgz}
- name: postcss
- version: 8.4.32
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: registry.npmmirror.com/nanoid/3.3.7
- picocolors: registry.npmmirror.com/picocolors/1.0.0
- source-map-js: registry.npmmirror.com/source-map-js/1.0.2
- registry.npmmirror.com/proxy-from-env/1.1.0:
- resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz}
- name: proxy-from-env
- version: 1.1.0
- dev: false
- registry.npmmirror.com/queue-microtask/1.2.3:
- resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz}
- name: queue-microtask
- version: 1.2.3
- registry.npmmirror.com/readdirp/3.6.0:
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz}
- name: readdirp
- version: 3.6.0
- engines: {node: '>=8.10.0'}
- dependencies:
- picomatch: registry.npmmirror.com/picomatch/2.3.1
- registry.npmmirror.com/regenerate-unicode-properties/10.1.1:
- resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz}
- name: regenerate-unicode-properties
- version: 10.1.1
- engines: {node: '>=4'}
- dependencies:
- regenerate: registry.npmmirror.com/regenerate/1.4.2
- dev: true
- registry.npmmirror.com/regenerate/1.4.2:
- resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerate/-/regenerate-1.4.2.tgz}
- name: regenerate
- version: 1.4.2
- dev: true
- registry.npmmirror.com/regenerator-runtime/0.13.11:
- resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz}
- name: regenerator-runtime
- version: 0.13.11
- dev: true
- registry.npmmirror.com/regenerator-runtime/0.14.0:
- resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz}
- name: regenerator-runtime
- version: 0.14.0
- dev: true
- registry.npmmirror.com/regenerator-transform/0.15.2:
- resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz}
- name: regenerator-transform
- version: 0.15.2
- dependencies:
- '@babel/runtime': registry.npmmirror.com/@babel/runtime/7.23.6
- dev: true
- registry.npmmirror.com/regexp.prototype.flags/1.5.1:
- resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz}
- name: regexp.prototype.flags
- version: 1.5.1
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- define-properties: registry.npmmirror.com/define-properties/1.2.1
- set-function-name: registry.npmmirror.com/set-function-name/2.0.1
- dev: false
- registry.npmmirror.com/regexpu-core/5.3.2:
- resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regexpu-core/-/regexpu-core-5.3.2.tgz}
- name: regexpu-core
- version: 5.3.2
- engines: {node: '>=4'}
- dependencies:
- '@babel/regjsgen': registry.npmmirror.com/@babel/regjsgen/0.8.0
- regenerate: registry.npmmirror.com/regenerate/1.4.2
- regenerate-unicode-properties: registry.npmmirror.com/regenerate-unicode-properties/10.1.1
- regjsparser: registry.npmmirror.com/regjsparser/0.9.1
- unicode-match-property-ecmascript: registry.npmmirror.com/unicode-match-property-ecmascript/2.0.0
- unicode-match-property-value-ecmascript: registry.npmmirror.com/unicode-match-property-value-ecmascript/2.1.0
- dev: true
- registry.npmmirror.com/regjsparser/0.9.1:
- resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regjsparser/-/regjsparser-0.9.1.tgz}
- name: regjsparser
- version: 0.9.1
- hasBin: true
- dependencies:
- jsesc: registry.npmmirror.com/jsesc/0.5.0
- dev: true
- registry.npmmirror.com/resolve.exports/2.0.2:
- resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve.exports/-/resolve.exports-2.0.2.tgz}
- name: resolve.exports
- version: 2.0.2
- engines: {node: '>=10'}
- dev: true
- registry.npmmirror.com/resolve/1.22.8:
- resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve/-/resolve-1.22.8.tgz}
- name: resolve
- version: 1.22.8
- hasBin: true
- dependencies:
- is-core-module: registry.npmmirror.com/is-core-module/2.13.1
- path-parse: registry.npmmirror.com/path-parse/1.0.7
- supports-preserve-symlinks-flag: registry.npmmirror.com/supports-preserve-symlinks-flag/1.0.0
- dev: true
- registry.npmmirror.com/reusify/1.0.4:
- resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz}
- name: reusify
- version: 1.0.4
- engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- registry.npmmirror.com/rollup/4.8.0:
- resolution: {integrity: sha512-NpsklK2fach5CdI+PScmlE5R4Ao/FSWtF7LkoIrHDxPACY/xshNasPsbpG0VVHxUTbf74tJbVT4PrP8JsJ6ZDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-4.8.0.tgz}
- name: rollup
- version: 4.8.0
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
- optionalDependencies:
- '@rollup/rollup-android-arm-eabi': registry.npmmirror.com/@rollup/rollup-android-arm-eabi/4.8.0
- '@rollup/rollup-android-arm64': registry.npmmirror.com/@rollup/rollup-android-arm64/4.8.0
- '@rollup/rollup-darwin-arm64': registry.npmmirror.com/@rollup/rollup-darwin-arm64/4.8.0
- '@rollup/rollup-darwin-x64': registry.npmmirror.com/@rollup/rollup-darwin-x64/4.8.0
- '@rollup/rollup-linux-arm-gnueabihf': registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/4.8.0
- '@rollup/rollup-linux-arm64-gnu': registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/4.8.0
- '@rollup/rollup-linux-arm64-musl': registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/4.8.0
- '@rollup/rollup-linux-riscv64-gnu': registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/4.8.0
- '@rollup/rollup-linux-x64-gnu': registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/4.8.0
- '@rollup/rollup-linux-x64-musl': registry.npmmirror.com/@rollup/rollup-linux-x64-musl/4.8.0
- '@rollup/rollup-win32-arm64-msvc': registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/4.8.0
- '@rollup/rollup-win32-ia32-msvc': registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/4.8.0
- '@rollup/rollup-win32-x64-msvc': registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/4.8.0
- fsevents: registry.npmmirror.com/fsevents/2.3.3
- registry.npmmirror.com/run-parallel/1.2.0:
- resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz}
- name: run-parallel
- version: 1.2.0
- dependencies:
- queue-microtask: registry.npmmirror.com/queue-microtask/1.2.3
- registry.npmmirror.com/sass/1.62.1:
- resolution: {integrity: sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sass/-/sass-1.62.1.tgz}
- name: sass
- version: 1.62.1
- engines: {node: '>=14.0.0'}
- hasBin: true
- dependencies:
- chokidar: registry.npmmirror.com/chokidar/3.5.3
- immutable: registry.npmmirror.com/immutable/4.3.4
- source-map-js: registry.npmmirror.com/source-map-js/1.0.2
- registry.npmmirror.com/scule/1.1.1:
- resolution: {integrity: sha512-sHtm/SsIK9BUBI3EFT/Gnp9VoKfY6QLvlkvAE6YK7454IF8FSgJEAnJpVdSC7K5/pjI5NfxhzBLW2JAfYA/shQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/scule/-/scule-1.1.1.tgz}
- name: scule
- version: 1.1.1
- dev: true
- registry.npmmirror.com/semver/6.3.1:
- resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz}
- name: semver
- version: 6.3.1
- hasBin: true
- registry.npmmirror.com/semver/7.5.4:
- resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz}
- name: semver
- version: 7.5.4
- engines: {node: '>=10'}
- hasBin: true
- dependencies:
- lru-cache: registry.npmmirror.com/lru-cache/6.0.0
- dev: true
- registry.npmmirror.com/set-function-length/1.1.1:
- resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/set-function-length/-/set-function-length-1.1.1.tgz}
- name: set-function-length
- version: 1.1.1
- engines: {node: '>= 0.4'}
- dependencies:
- define-data-property: registry.npmmirror.com/define-data-property/1.1.1
- get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
- gopd: registry.npmmirror.com/gopd/1.0.1
- has-property-descriptors: registry.npmmirror.com/has-property-descriptors/1.0.1
- dev: false
- registry.npmmirror.com/set-function-name/2.0.1:
- resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/set-function-name/-/set-function-name-2.0.1.tgz}
- name: set-function-name
- version: 2.0.1
- engines: {node: '>= 0.4'}
- dependencies:
- define-data-property: registry.npmmirror.com/define-data-property/1.1.1
- functions-have-names: registry.npmmirror.com/functions-have-names/1.2.3
- has-property-descriptors: registry.npmmirror.com/has-property-descriptors/1.0.1
- dev: false
- registry.npmmirror.com/shebang-command/2.0.0:
- resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz}
- name: shebang-command
- version: 2.0.0
- engines: {node: '>=8'}
- dependencies:
- shebang-regex: registry.npmmirror.com/shebang-regex/3.0.0
- dev: false
- registry.npmmirror.com/shebang-regex/3.0.0:
- resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz}
- name: shebang-regex
- version: 3.0.0
- engines: {node: '>=8'}
- dev: false
- registry.npmmirror.com/side-channel/1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz}
- name: side-channel
- version: 1.0.4
- dependencies:
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
- object-inspect: registry.npmmirror.com/object-inspect/1.13.1
- dev: false
- registry.npmmirror.com/signal-exit/3.0.7:
- resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz}
- name: signal-exit
- version: 3.0.7
- dev: false
- registry.npmmirror.com/sirv/2.0.3:
- resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sirv/-/sirv-2.0.3.tgz}
- name: sirv
- version: 2.0.3
- engines: {node: '>= 10'}
- dependencies:
- '@polka/url': registry.npmmirror.com/@polka/url/1.0.0-next.24
- mrmime: registry.npmmirror.com/mrmime/1.0.1
- totalist: registry.npmmirror.com/totalist/3.0.1
- registry.npmmirror.com/source-map-js/1.0.2:
- resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz}
- name: source-map-js
- version: 1.0.2
- engines: {node: '>=0.10.0'}
- registry.npmmirror.com/stop-iteration-iterator/1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz}
- name: stop-iteration-iterator
- version: 1.0.0
- engines: {node: '>= 0.4'}
- dependencies:
- internal-slot: registry.npmmirror.com/internal-slot/1.0.6
- dev: false
- registry.npmmirror.com/strip-final-newline/2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz}
- name: strip-final-newline
- version: 2.0.0
- engines: {node: '>=6'}
- dev: false
- registry.npmmirror.com/strip-literal/1.3.0:
- resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-literal/-/strip-literal-1.3.0.tgz}
- name: strip-literal
- version: 1.3.0
- dependencies:
- acorn: registry.npmmirror.com/acorn/8.11.2
- dev: true
- registry.npmmirror.com/supports-color/5.5.0:
- resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz}
- name: supports-color
- version: 5.5.0
- engines: {node: '>=4'}
- dependencies:
- has-flag: registry.npmmirror.com/has-flag/3.0.0
- registry.npmmirror.com/supports-preserve-symlinks-flag/1.0.0:
- resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz}
- name: supports-preserve-symlinks-flag
- version: 1.0.0
- engines: {node: '>= 0.4'}
- dev: true
- registry.npmmirror.com/systemjs/6.14.2:
- resolution: {integrity: sha512-1TlOwvKWdXxAY9vba+huLu99zrQURDWA8pUTYsRIYDZYQbGyK+pyEP4h4dlySsqo7ozyJBmYD20F+iUHhAltEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/systemjs/-/systemjs-6.14.2.tgz}
- name: systemjs
- version: 6.14.2
- dev: true
- registry.npmmirror.com/to-fast-properties/2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz}
- name: to-fast-properties
- version: 2.0.0
- engines: {node: '>=4'}
- registry.npmmirror.com/to-regex-range/5.0.1:
- resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz}
- name: to-regex-range
- version: 5.0.1
- engines: {node: '>=8.0'}
- dependencies:
- is-number: registry.npmmirror.com/is-number/7.0.0
- registry.npmmirror.com/totalist/3.0.1:
- resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/totalist/-/totalist-3.0.1.tgz}
- name: totalist
- version: 3.0.1
- engines: {node: '>=6'}
- registry.npmmirror.com/typescript/5.3.3:
- resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/-/typescript-5.3.3.tgz}
- name: typescript
- version: 5.3.3
- engines: {node: '>=14.17'}
- hasBin: true
- registry.npmmirror.com/ufo/1.3.2:
- resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ufo/-/ufo-1.3.2.tgz}
- name: ufo
- version: 1.3.2
- registry.npmmirror.com/unconfig/0.3.11:
- resolution: {integrity: sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unconfig/-/unconfig-0.3.11.tgz}
- name: unconfig
- version: 0.3.11
- dependencies:
- '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
- defu: registry.npmmirror.com/defu/6.1.3
- jiti: registry.npmmirror.com/jiti/1.21.0
- mlly: registry.npmmirror.com/mlly/1.4.2
- dev: false
- registry.npmmirror.com/unicode-canonical-property-names-ecmascript/2.0.0:
- resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz}
- name: unicode-canonical-property-names-ecmascript
- version: 2.0.0
- engines: {node: '>=4'}
- dev: true
- registry.npmmirror.com/unicode-match-property-ecmascript/2.0.0:
- resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz}
- name: unicode-match-property-ecmascript
- version: 2.0.0
- engines: {node: '>=4'}
- dependencies:
- unicode-canonical-property-names-ecmascript: registry.npmmirror.com/unicode-canonical-property-names-ecmascript/2.0.0
- unicode-property-aliases-ecmascript: registry.npmmirror.com/unicode-property-aliases-ecmascript/2.1.0
- dev: true
- registry.npmmirror.com/unicode-match-property-value-ecmascript/2.1.0:
- resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz}
- name: unicode-match-property-value-ecmascript
- version: 2.1.0
- engines: {node: '>=4'}
- dev: true
- registry.npmmirror.com/unicode-property-aliases-ecmascript/2.1.0:
- resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz}
- name: unicode-property-aliases-ecmascript
- version: 2.1.0
- engines: {node: '>=4'}
- dev: true
- registry.npmmirror.com/unimport/3.6.1:
- resolution: {integrity: sha512-zKzbp8AQ+l8QK3XrONtUBdgBbMI8TkGh8hBYF77ZkVqMLLIAHwGSwJRFolPQMBx/5pezeRKvmu2gzlqnxRZeqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unimport/-/unimport-3.6.1.tgz}
- name: unimport
- version: 3.6.1
- dependencies:
- '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
- escape-string-regexp: registry.npmmirror.com/escape-string-regexp/5.0.0
- fast-glob: registry.npmmirror.com/fast-glob/3.3.2
- local-pkg: registry.npmmirror.com/local-pkg/0.5.0
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- mlly: registry.npmmirror.com/mlly/1.4.2
- pathe: registry.npmmirror.com/pathe/1.1.1
- pkg-types: registry.npmmirror.com/pkg-types/1.0.3
- scule: registry.npmmirror.com/scule/1.1.1
- strip-literal: registry.npmmirror.com/strip-literal/1.3.0
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/unocss/0.58.0_vite@5.0.8:
- resolution: {integrity: sha512-MSPRHxBqWN+1AHGV+J5uUy4//e6ZBK6O+ISzD0qrXcCD/GNtxk1+lYjOK2ltkUiKX539+/KF91vNxzhhwEf+xA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unocss/-/unocss-0.58.0.tgz}
- id: registry.npmmirror.com/unocss/0.58.0
- name: unocss
- version: 0.58.0
- engines: {node: '>=14'}
- peerDependencies:
- '@unocss/webpack': 0.58.0
- vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
- peerDependenciesMeta:
- '@unocss/webpack':
- optional: true
- vite:
- optional: true
- dependencies:
- '@unocss/astro': registry.npmmirror.com/@unocss/astro/0.58.0_vite@5.0.8
- '@unocss/cli': registry.npmmirror.com/@unocss/cli/0.58.0
- '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
- '@unocss/extractor-arbitrary-variants': registry.npmmirror.com/@unocss/extractor-arbitrary-variants/0.58.0
- '@unocss/postcss': registry.npmmirror.com/@unocss/postcss/0.58.0
- '@unocss/preset-attributify': registry.npmmirror.com/@unocss/preset-attributify/0.58.0
- '@unocss/preset-icons': registry.npmmirror.com/@unocss/preset-icons/0.58.0
- '@unocss/preset-mini': registry.npmmirror.com/@unocss/preset-mini/0.58.0
- '@unocss/preset-tagify': registry.npmmirror.com/@unocss/preset-tagify/0.58.0
- '@unocss/preset-typography': registry.npmmirror.com/@unocss/preset-typography/0.58.0
- '@unocss/preset-uno': registry.npmmirror.com/@unocss/preset-uno/0.58.0
- '@unocss/preset-web-fonts': registry.npmmirror.com/@unocss/preset-web-fonts/0.58.0
- '@unocss/preset-wind': registry.npmmirror.com/@unocss/preset-wind/0.58.0
- '@unocss/reset': registry.npmmirror.com/@unocss/reset/0.58.0
- '@unocss/transformer-attributify-jsx': registry.npmmirror.com/@unocss/transformer-attributify-jsx/0.58.0
- '@unocss/transformer-attributify-jsx-babel': registry.npmmirror.com/@unocss/transformer-attributify-jsx-babel/0.58.0
- '@unocss/transformer-compile-class': registry.npmmirror.com/@unocss/transformer-compile-class/0.58.0
- '@unocss/transformer-directives': registry.npmmirror.com/@unocss/transformer-directives/0.58.0
- '@unocss/transformer-variant-group': registry.npmmirror.com/@unocss/transformer-variant-group/0.58.0
- '@unocss/vite': registry.npmmirror.com/@unocss/vite/0.58.0_vite@5.0.8
- vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
- transitivePeerDependencies:
- - rollup
- - supports-color
- dev: false
- registry.npmmirror.com/unplugin-auto-import/0.16.7_@vueuse+core@10.7.0:
- resolution: {integrity: sha512-w7XmnRlchq6YUFJVFGSvG1T/6j8GrdYN6Em9Wf0Ye+HXgD/22kont+WnuCAA0UaUoxtuvRR1u/mXKy63g/hfqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-auto-import/-/unplugin-auto-import-0.16.7.tgz}
- id: registry.npmmirror.com/unplugin-auto-import/0.16.7
- name: unplugin-auto-import
- version: 0.16.7
- engines: {node: '>=14'}
- peerDependencies:
- '@nuxt/kit': ^3.2.2
- '@vueuse/core': '*'
- peerDependenciesMeta:
- '@nuxt/kit':
- optional: true
- '@vueuse/core':
- optional: true
- dependencies:
- '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
- '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
- '@vueuse/core': registry.npmmirror.com/@vueuse/core/10.7.0_vue@3.3.11
- fast-glob: registry.npmmirror.com/fast-glob/3.3.2
- local-pkg: registry.npmmirror.com/local-pkg/0.5.0
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- minimatch: registry.npmmirror.com/minimatch/9.0.3
- unimport: registry.npmmirror.com/unimport/3.6.1
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- dev: true
- registry.npmmirror.com/unplugin-combine/0.8.1_vite@5.0.8:
- resolution: {integrity: sha512-m2OSmXXRwCPZx8Ct8eF8WbjgTo8bydim2W1ofu2hDabGdr2pgDAoFjOP1J4MOIwa0OByqk1JX8IGlSdeE6uxVQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-combine/-/unplugin-combine-0.8.1.tgz}
- id: registry.npmmirror.com/unplugin-combine/0.8.1
- name: unplugin-combine
- version: 0.8.1
- engines: {node: '>=16.14.0'}
- peerDependencies:
- esbuild: '>=0.13'
- rollup: ^3.2.0 || ^4.0.0
- vite: ^2.3.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
- webpack: 4 || 5
- peerDependenciesMeta:
- esbuild:
- optional: true
- rollup:
- optional: true
- vite:
- optional: true
- webpack:
- optional: true
- dependencies:
- '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
- dev: true
- registry.npmmirror.com/unplugin-vue-components/0.25.2_vue@3.3.11:
- resolution: {integrity: sha512-OVmLFqILH6w+eM8fyt/d/eoJT9A6WO51NZLf1vC5c1FZ4rmq2bbGxTy8WP2Jm7xwFdukaIdv819+UI7RClPyCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.25.2.tgz}
- id: registry.npmmirror.com/unplugin-vue-components/0.25.2
- name: unplugin-vue-components
- version: 0.25.2
- engines: {node: '>=14'}
- peerDependencies:
- '@babel/parser': ^7.15.8
- '@nuxt/kit': ^3.2.2
- vue: 2 || 3
- peerDependenciesMeta:
- '@babel/parser':
- optional: true
- '@nuxt/kit':
- optional: true
- dependencies:
- '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
- '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
- chokidar: registry.npmmirror.com/chokidar/3.5.3
- debug: registry.npmmirror.com/debug/4.3.4
- fast-glob: registry.npmmirror.com/fast-glob/3.3.2
- local-pkg: registry.npmmirror.com/local-pkg/0.4.3
- magic-string: registry.npmmirror.com/magic-string/0.30.5
- minimatch: registry.npmmirror.com/minimatch/9.0.3
- resolve: registry.npmmirror.com/resolve/1.22.8
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - rollup
- - supports-color
- dev: true
- registry.npmmirror.com/unplugin-vue-define-options/1.4.1_vue@3.3.11:
- resolution: {integrity: sha512-dsI7JZvzCv6hV0Iq8cUKO70gFlsfEmASZzmebVlPzT2Knb57d4Plqjuf0wpU61G2HGSDZ8gy73Nix4FTmFVOyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-vue-define-options/-/unplugin-vue-define-options-1.4.1.tgz}
- id: registry.npmmirror.com/unplugin-vue-define-options/1.4.1
- name: unplugin-vue-define-options
- version: 1.4.1
- engines: {node: '>=16.14.0'}
- dependencies:
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- ast-walker-scope: registry.npmmirror.com/ast-walker-scope/0.5.0
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- transitivePeerDependencies:
- - rollup
- - vue
- dev: true
- registry.npmmirror.com/unplugin-vue-macros/2.7.2_kjy4kr7ghkor6vh7yweuhrtx7e:
- resolution: {integrity: sha512-+CWXQK+mnpC3AO3CmMCxJbdAk+DQBXPbs0u4ci/vapdpbWouWOMk32aFVbwlnI5wgXoqzYbaPUgrKA5tBJIa+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-vue-macros/-/unplugin-vue-macros-2.7.2.tgz}
- id: registry.npmmirror.com/unplugin-vue-macros/2.7.2
- name: unplugin-vue-macros
- version: 2.7.2
- engines: {node: '>=16.14.0'}
- peerDependencies:
- vue: ^2.7.0 || ^3.2.25
- dependencies:
- '@vue-macros/better-define': registry.npmmirror.com/@vue-macros/better-define/1.7.1_vue@3.3.11
- '@vue-macros/boolean-prop': registry.npmmirror.com/@vue-macros/boolean-prop/0.3.1_vue@3.3.11
- '@vue-macros/chain-call': registry.npmmirror.com/@vue-macros/chain-call/0.2.1_vue@3.3.11
- '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
- '@vue-macros/define-emit': registry.npmmirror.com/@vue-macros/define-emit/0.2.1_vue@3.3.11
- '@vue-macros/define-models': registry.npmmirror.com/@vue-macros/define-models/1.2.1_skvchchimvsyroofndahiegrdi
- '@vue-macros/define-prop': registry.npmmirror.com/@vue-macros/define-prop/0.3.1_vue@3.3.11
- '@vue-macros/define-props': registry.npmmirror.com/@vue-macros/define-props/2.0.1_vpxk4enuzjo2mj7qqkh7tzvmae
- '@vue-macros/define-props-refs': registry.npmmirror.com/@vue-macros/define-props-refs/1.2.1_vue@3.3.11
- '@vue-macros/define-render': registry.npmmirror.com/@vue-macros/define-render/1.5.1_vue@3.3.11
- '@vue-macros/define-slots': registry.npmmirror.com/@vue-macros/define-slots/1.1.1_vue@3.3.11
- '@vue-macros/devtools': registry.npmmirror.com/@vue-macros/devtools/0.2.0_ntk5c343sybimd4hibvldwklca
- '@vue-macros/export-expose': registry.npmmirror.com/@vue-macros/export-expose/0.1.1_vue@3.3.11
- '@vue-macros/export-props': registry.npmmirror.com/@vue-macros/export-props/0.4.1_vue@3.3.11
- '@vue-macros/export-render': registry.npmmirror.com/@vue-macros/export-render/0.2.1_vue@3.3.11
- '@vue-macros/hoist-static': registry.npmmirror.com/@vue-macros/hoist-static/1.5.1_vue@3.3.11
- '@vue-macros/jsx-directive': registry.npmmirror.com/@vue-macros/jsx-directive/0.8.1_vue@3.3.11
- '@vue-macros/named-template': registry.npmmirror.com/@vue-macros/named-template/0.4.1_vue@3.3.11
- '@vue-macros/reactivity-transform': registry.npmmirror.com/@vue-macros/reactivity-transform/0.4.1_vue@3.3.11
- '@vue-macros/setup-block': registry.npmmirror.com/@vue-macros/setup-block/0.3.1_vue@3.3.11
- '@vue-macros/setup-component': registry.npmmirror.com/@vue-macros/setup-component/0.17.1_vue@3.3.11
- '@vue-macros/setup-sfc': registry.npmmirror.com/@vue-macros/setup-sfc/0.17.1_vue@3.3.11
- '@vue-macros/short-bind': registry.npmmirror.com/@vue-macros/short-bind/0.2.1_vue@3.3.11
- '@vue-macros/short-emits': registry.npmmirror.com/@vue-macros/short-emits/1.5.1_vue@3.3.11
- '@vue-macros/short-vmodel': registry.npmmirror.com/@vue-macros/short-vmodel/1.4.1_vue@3.3.11
- unplugin: registry.npmmirror.com/unplugin/1.5.1
- unplugin-combine: registry.npmmirror.com/unplugin-combine/0.8.1_vite@5.0.8
- unplugin-vue-define-options: registry.npmmirror.com/unplugin-vue-define-options/1.4.1_vue@3.3.11
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- transitivePeerDependencies:
- - '@vueuse/core'
- - esbuild
- - rollup
- - typescript
- - vite
- - webpack
- dev: true
- registry.npmmirror.com/unplugin/1.5.1:
- resolution: {integrity: sha512-0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin/-/unplugin-1.5.1.tgz}
- name: unplugin
- version: 1.5.1
- dependencies:
- acorn: registry.npmmirror.com/acorn/8.11.2
- chokidar: registry.npmmirror.com/chokidar/3.5.3
- webpack-sources: registry.npmmirror.com/webpack-sources/3.2.3
- webpack-virtual-modules: registry.npmmirror.com/webpack-virtual-modules/0.6.1
- dev: true
- registry.npmmirror.com/update-browserslist-db/1.0.13_browserslist@4.22.2:
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz}
- id: registry.npmmirror.com/update-browserslist-db/1.0.13
- name: update-browserslist-db
- version: 1.0.13
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
- dependencies:
- browserslist: registry.npmmirror.com/browserslist/4.22.2
- escalade: registry.npmmirror.com/escalade/3.1.1
- picocolors: registry.npmmirror.com/picocolors/1.0.0
- registry.npmmirror.com/vant/4.8.0_vue@3.3.11:
- resolution: {integrity: sha512-JeEcSd1zt0+fcSo/wuyvhF+dUdd1IaaJmrG0BTiUvH/XcBJEUaTSSEaYG0V8iI38xUTUCuDG+TSfSoSeEwGVAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vant/-/vant-4.8.0.tgz}
- id: registry.npmmirror.com/vant/4.8.0
- name: vant
- version: 4.8.0
- peerDependencies:
- vue: ^3.0.0
- dependencies:
- '@vant/popperjs': registry.npmmirror.com/@vant/popperjs/1.3.0
- '@vant/use': registry.npmmirror.com/@vant/use/1.6.0_vue@3.3.11
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- dev: false
- registry.npmmirror.com/vite-plugin-pages/0.32.0_vite@5.0.8:
- resolution: {integrity: sha512-OxS3n0zUo5wsfgNCAuw2FiG/KD1ipgQV+2Flst4RyeI2iPv+m0YueVq+nx41k5NOWJj/zhqEas6I0b7HXveXjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite-plugin-pages/-/vite-plugin-pages-0.32.0.tgz}
- id: registry.npmmirror.com/vite-plugin-pages/0.32.0
- name: vite-plugin-pages
- version: 0.32.0
- peerDependencies:
- '@vue/compiler-sfc': ^2.7.0 || ^3.0.0
- vite: ^2.0.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0
- peerDependenciesMeta:
- '@vue/compiler-sfc':
- optional: true
- dependencies:
- '@types/debug': registry.npmmirror.com/@types/debug/4.1.12
- debug: registry.npmmirror.com/debug/4.3.4
- deep-equal: registry.npmmirror.com/deep-equal/2.2.3
- extract-comments: registry.npmmirror.com/extract-comments/1.1.0
- fast-glob: registry.npmmirror.com/fast-glob/3.3.2
- json5: registry.npmmirror.com/json5/2.2.3
- local-pkg: registry.npmmirror.com/local-pkg/0.5.0
- picocolors: registry.npmmirror.com/picocolors/1.0.0
- vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
- yaml: registry.npmmirror.com/yaml/2.3.4
- transitivePeerDependencies:
- - supports-color
- dev: false
- registry.npmmirror.com/vite-plugin-windicss/1.9.2_vite@5.0.8:
- resolution: {integrity: sha512-QRWOFgdsbj00DNHm8vM51gbSQeuyXC73uGtp//cMHMeMstFD83fbX7x6MmpjC04dijWMxyAuD90sUD0Q/pjnnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite-plugin-windicss/-/vite-plugin-windicss-1.9.2.tgz}
- id: registry.npmmirror.com/vite-plugin-windicss/1.9.2
- name: vite-plugin-windicss
- version: 1.9.2
- peerDependencies:
- vite: ^2.0.1 || ^3.0.0 || ^4.0.0 || ^5.0.0
- dependencies:
- '@windicss/plugin-utils': registry.npmmirror.com/@windicss/plugin-utils/1.9.2
- debug: registry.npmmirror.com/debug/4.3.4
- kolorist: registry.npmmirror.com/kolorist/1.8.0
- vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
- windicss: registry.npmmirror.com/windicss/3.5.6
- transitivePeerDependencies:
- - supports-color
- dev: false
- registry.npmmirror.com/vite/5.0.8_sass@1.62.1:
- resolution: {integrity: sha512-jYMALd8aeqR3yS9xlHd0OzQJndS9fH5ylVgWdB+pxTwxLKdO1pgC5Dlb398BUxpfaBxa4M9oT7j1g503Gaj5IQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/-/vite-5.0.8.tgz}
- id: registry.npmmirror.com/vite/5.0.8
- name: vite
- version: 5.0.8
- 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
- dependencies:
- esbuild: registry.npmmirror.com/esbuild/0.19.9
- postcss: registry.npmmirror.com/postcss/8.4.32
- rollup: registry.npmmirror.com/rollup/4.8.0
- sass: registry.npmmirror.com/sass/1.62.1
- optionalDependencies:
- fsevents: registry.npmmirror.com/fsevents/2.3.3
- registry.npmmirror.com/vue-demi/0.14.6_vue@3.3.11:
- resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz}
- id: registry.npmmirror.com/vue-demi/0.14.6
- name: vue-demi
- version: 0.14.6
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.0.0-0 || ^2.6.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
- dependencies:
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- registry.npmmirror.com/vue-router/4.2.5_vue@3.3.11:
- resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-router/-/vue-router-4.2.5.tgz}
- id: registry.npmmirror.com/vue-router/4.2.5
- name: vue-router
- version: 4.2.5
- peerDependencies:
- vue: ^3.2.0
- dependencies:
- '@vue/devtools-api': registry.npmmirror.com/@vue/devtools-api/6.5.1
- vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
- dev: false
- registry.npmmirror.com/vue-template-compiler/2.7.15:
- resolution: {integrity: sha512-yQxjxMptBL7UAog00O8sANud99C6wJF+7kgbcwqkvA38vCGF7HWE66w0ZFnS/kX5gSoJr/PQ4/oS3Ne2pW37Og==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.15.tgz}
- name: vue-template-compiler
- version: 2.7.15
- dependencies:
- de-indent: registry.npmmirror.com/de-indent/1.0.2
- he: registry.npmmirror.com/he/1.2.0
- dev: true
- registry.npmmirror.com/vue-tsc/1.8.25_typescript@5.3.3:
- resolution: {integrity: sha512-lHsRhDc/Y7LINvYhZ3pv4elflFADoEOo67vfClAfF2heVHpHmVquLSjojgCSIwzA4F0Pc4vowT/psXCYcfk+iQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-tsc/-/vue-tsc-1.8.25.tgz}
- id: registry.npmmirror.com/vue-tsc/1.8.25
- name: vue-tsc
- version: 1.8.25
- hasBin: true
- peerDependencies:
- typescript: '*'
- dependencies:
- '@volar/typescript': registry.npmmirror.com/@volar/typescript/1.11.1
- '@vue/language-core': registry.npmmirror.com/@vue/language-core/1.8.25_typescript@5.3.3
- semver: registry.npmmirror.com/semver/7.5.4
- typescript: registry.npmmirror.com/typescript/5.3.3
- dev: true
- registry.npmmirror.com/vue/3.3.11_typescript@5.3.3:
- resolution: {integrity: sha512-d4oBctG92CRO1cQfVBZp6WJAs0n8AK4Xf5fNjQCBeKCvMI1efGQ5E3Alt1slFJS9fZuPcFoiAiqFvQlv1X7t/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue/-/vue-3.3.11.tgz}
- id: registry.npmmirror.com/vue/3.3.11
- name: vue
- version: 3.3.11
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
- '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.3.11
- '@vue/runtime-dom': registry.npmmirror.com/@vue/runtime-dom/3.3.11
- '@vue/server-renderer': registry.npmmirror.com/@vue/server-renderer/3.3.11_vue@3.3.11
- '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
- typescript: registry.npmmirror.com/typescript/5.3.3
- registry.npmmirror.com/webpack-sources/3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz}
- name: webpack-sources
- version: 3.2.3
- engines: {node: '>=10.13.0'}
- dev: true
- registry.npmmirror.com/webpack-virtual-modules/0.6.1:
- resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.1.tgz}
- name: webpack-virtual-modules
- version: 0.6.1
- dev: true
- registry.npmmirror.com/which-boxed-primitive/1.0.2:
- resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz}
- name: which-boxed-primitive
- version: 1.0.2
- dependencies:
- is-bigint: registry.npmmirror.com/is-bigint/1.0.4
- is-boolean-object: registry.npmmirror.com/is-boolean-object/1.1.2
- is-number-object: registry.npmmirror.com/is-number-object/1.0.7
- is-string: registry.npmmirror.com/is-string/1.0.7
- is-symbol: registry.npmmirror.com/is-symbol/1.0.4
- dev: false
- registry.npmmirror.com/which-collection/1.0.1:
- resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which-collection/-/which-collection-1.0.1.tgz}
- name: which-collection
- version: 1.0.1
- dependencies:
- is-map: registry.npmmirror.com/is-map/2.0.2
- is-set: registry.npmmirror.com/is-set/2.0.2
- is-weakmap: registry.npmmirror.com/is-weakmap/2.0.1
- is-weakset: registry.npmmirror.com/is-weakset/2.0.2
- dev: false
- registry.npmmirror.com/which-typed-array/1.1.13:
- resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which-typed-array/-/which-typed-array-1.1.13.tgz}
- name: which-typed-array
- version: 1.1.13
- engines: {node: '>= 0.4'}
- dependencies:
- available-typed-arrays: registry.npmmirror.com/available-typed-arrays/1.0.5
- call-bind: registry.npmmirror.com/call-bind/1.0.5
- for-each: registry.npmmirror.com/for-each/0.3.3
- gopd: registry.npmmirror.com/gopd/1.0.1
- has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
- dev: false
- registry.npmmirror.com/which/2.0.2:
- resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which/-/which-2.0.2.tgz}
- name: which
- version: 2.0.2
- engines: {node: '>= 8'}
- hasBin: true
- dependencies:
- isexe: registry.npmmirror.com/isexe/2.0.0
- dev: false
- registry.npmmirror.com/windicss/3.5.6:
- resolution: {integrity: sha512-P1mzPEjgFMZLX0ZqfFht4fhV/FX8DTG7ERG1fBLiWvd34pTLVReS5CVsewKn9PApSgXnVfPWwvq+qUsRwpnwFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/windicss/-/windicss-3.5.6.tgz}
- name: windicss
- version: 3.5.6
- engines: {node: '>= 12'}
- hasBin: true
- dev: false
- registry.npmmirror.com/yallist/3.1.1:
- resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz}
- name: yallist
- version: 3.1.1
- registry.npmmirror.com/yallist/4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz}
- name: yallist
- version: 4.0.0
- dev: true
- registry.npmmirror.com/yaml/2.3.4:
- resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml/-/yaml-2.3.4.tgz}
- name: yaml
- version: 2.3.4
- engines: {node: '>= 14'}
- dev: false
- registry.npmmirror.com/yocto-queue/0.1.0:
- resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz}
- name: yocto-queue
- version: 0.1.0
- engines: {node: '>=10'}
- dev: false
|