pnpm-lock.yaml 297 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136
  1. lockfileVersion: 5.4
  2. specifiers:
  3. '@vitejs/plugin-legacy': ^4.0.5
  4. '@vitejs/plugin-vue': ^4.5.2
  5. '@vueuse/core': ^10.1.2
  6. axios: ^1.6.2
  7. sass: 1.62.1
  8. typescript: ^5.2.2
  9. unocss: ^0.58.0
  10. unplugin-auto-import: ^0.16.7
  11. unplugin-vue-components: ^0.25.2
  12. unplugin-vue-macros: ^2.6.2
  13. vant: ^4.8.0
  14. vite: ^5.0.8
  15. vite-plugin-pages: ^0.32.0
  16. vite-plugin-windicss: ^1.9.2
  17. vue: ^3.3.11
  18. vue-router: ^4.2.5
  19. vue-tsc: ^1.8.25
  20. dependencies:
  21. '@vueuse/core': registry.npmmirror.com/@vueuse/core/10.7.0_vue@3.3.11
  22. axios: registry.npmmirror.com/axios/1.6.2
  23. sass: registry.npmmirror.com/sass/1.62.1
  24. unocss: registry.npmmirror.com/unocss/0.58.0_vite@5.0.8
  25. vant: registry.npmmirror.com/vant/4.8.0_vue@3.3.11
  26. vite-plugin-pages: registry.npmmirror.com/vite-plugin-pages/0.32.0_vite@5.0.8
  27. vite-plugin-windicss: registry.npmmirror.com/vite-plugin-windicss/1.9.2_vite@5.0.8
  28. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  29. vue-router: registry.npmmirror.com/vue-router/4.2.5_vue@3.3.11
  30. devDependencies:
  31. '@vitejs/plugin-legacy': registry.npmmirror.com/@vitejs/plugin-legacy/4.1.1_vite@5.0.8
  32. '@vitejs/plugin-vue': registry.npmmirror.com/@vitejs/plugin-vue/4.5.2_vite@5.0.8+vue@3.3.11
  33. typescript: registry.npmmirror.com/typescript/5.3.3
  34. unplugin-auto-import: registry.npmmirror.com/unplugin-auto-import/0.16.7_@vueuse+core@10.7.0
  35. unplugin-vue-components: registry.npmmirror.com/unplugin-vue-components/0.25.2_vue@3.3.11
  36. unplugin-vue-macros: registry.npmmirror.com/unplugin-vue-macros/2.7.2_kjy4kr7ghkor6vh7yweuhrtx7e
  37. vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
  38. vue-tsc: registry.npmmirror.com/vue-tsc/1.8.25_typescript@5.3.3
  39. packages:
  40. registry.npmmirror.com/@ampproject/remapping/2.2.1:
  41. resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz}
  42. name: '@ampproject/remapping'
  43. version: 2.2.1
  44. engines: {node: '>=6.0.0'}
  45. dependencies:
  46. '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.3
  47. '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20
  48. registry.npmmirror.com/@antfu/install-pkg/0.1.1:
  49. 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}
  50. name: '@antfu/install-pkg'
  51. version: 0.1.1
  52. dependencies:
  53. execa: registry.npmmirror.com/execa/5.1.1
  54. find-up: registry.npmmirror.com/find-up/5.0.0
  55. dev: false
  56. registry.npmmirror.com/@antfu/utils/0.7.7:
  57. resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.7.tgz}
  58. name: '@antfu/utils'
  59. version: 0.7.7
  60. registry.npmmirror.com/@babel/code-frame/7.23.5:
  61. resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.23.5.tgz}
  62. name: '@babel/code-frame'
  63. version: 7.23.5
  64. engines: {node: '>=6.9.0'}
  65. dependencies:
  66. '@babel/highlight': registry.npmmirror.com/@babel/highlight/7.23.4
  67. chalk: registry.npmmirror.com/chalk/2.4.2
  68. registry.npmmirror.com/@babel/compat-data/7.23.5:
  69. 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}
  70. name: '@babel/compat-data'
  71. version: 7.23.5
  72. engines: {node: '>=6.9.0'}
  73. registry.npmmirror.com/@babel/core/7.23.6:
  74. resolution: {integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.23.6.tgz}
  75. name: '@babel/core'
  76. version: 7.23.6
  77. engines: {node: '>=6.9.0'}
  78. dependencies:
  79. '@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.2.1
  80. '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.23.5
  81. '@babel/generator': registry.npmmirror.com/@babel/generator/7.23.6
  82. '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
  83. '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6
  84. '@babel/helpers': registry.npmmirror.com/@babel/helpers/7.23.6
  85. '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
  86. '@babel/template': registry.npmmirror.com/@babel/template/7.22.15
  87. '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.23.6
  88. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  89. convert-source-map: registry.npmmirror.com/convert-source-map/2.0.0
  90. debug: registry.npmmirror.com/debug/4.3.4
  91. gensync: registry.npmmirror.com/gensync/1.0.0-beta.2
  92. json5: registry.npmmirror.com/json5/2.2.3
  93. semver: registry.npmmirror.com/semver/6.3.1
  94. transitivePeerDependencies:
  95. - supports-color
  96. registry.npmmirror.com/@babel/generator/7.23.6:
  97. resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.23.6.tgz}
  98. name: '@babel/generator'
  99. version: 7.23.6
  100. engines: {node: '>=6.9.0'}
  101. dependencies:
  102. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  103. '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.3
  104. '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20
  105. jsesc: registry.npmmirror.com/jsesc/2.5.2
  106. registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5:
  107. 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}
  108. name: '@babel/helper-annotate-as-pure'
  109. version: 7.22.5
  110. engines: {node: '>=6.9.0'}
  111. dependencies:
  112. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  113. registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/7.22.15:
  114. 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}
  115. name: '@babel/helper-builder-binary-assignment-operator-visitor'
  116. version: 7.22.15
  117. engines: {node: '>=6.9.0'}
  118. dependencies:
  119. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  120. dev: true
  121. registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6:
  122. 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}
  123. name: '@babel/helper-compilation-targets'
  124. version: 7.23.6
  125. engines: {node: '>=6.9.0'}
  126. dependencies:
  127. '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
  128. '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.23.5
  129. browserslist: registry.npmmirror.com/browserslist/4.22.2
  130. lru-cache: registry.npmmirror.com/lru-cache/5.1.1
  131. semver: registry.npmmirror.com/semver/6.3.1
  132. registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6:
  133. 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}
  134. id: registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6
  135. name: '@babel/helper-create-class-features-plugin'
  136. version: 7.23.6
  137. engines: {node: '>=6.9.0'}
  138. peerDependencies:
  139. '@babel/core': ^7.0.0
  140. dependencies:
  141. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  142. '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
  143. '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
  144. '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
  145. '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.23.0
  146. '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5
  147. '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.6
  148. '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
  149. '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
  150. semver: registry.npmmirror.com/semver/6.3.1
  151. registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6:
  152. 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}
  153. id: registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15
  154. name: '@babel/helper-create-regexp-features-plugin'
  155. version: 7.22.15
  156. engines: {node: '>=6.9.0'}
  157. peerDependencies:
  158. '@babel/core': ^7.0.0
  159. dependencies:
  160. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  161. '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
  162. regexpu-core: registry.npmmirror.com/regexpu-core/5.3.2
  163. semver: registry.npmmirror.com/semver/6.3.1
  164. dev: true
  165. registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.4_@babel+core@7.23.6:
  166. 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}
  167. id: registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.4
  168. name: '@babel/helper-define-polyfill-provider'
  169. version: 0.4.4
  170. peerDependencies:
  171. '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
  172. dependencies:
  173. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  174. '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
  175. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  176. debug: registry.npmmirror.com/debug/4.3.4
  177. lodash.debounce: registry.npmmirror.com/lodash.debounce/4.0.8
  178. resolve: registry.npmmirror.com/resolve/1.22.8
  179. transitivePeerDependencies:
  180. - supports-color
  181. dev: true
  182. registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20:
  183. 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}
  184. name: '@babel/helper-environment-visitor'
  185. version: 7.22.20
  186. engines: {node: '>=6.9.0'}
  187. registry.npmmirror.com/@babel/helper-function-name/7.23.0:
  188. 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}
  189. name: '@babel/helper-function-name'
  190. version: 7.23.0
  191. engines: {node: '>=6.9.0'}
  192. dependencies:
  193. '@babel/template': registry.npmmirror.com/@babel/template/7.22.15
  194. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  195. registry.npmmirror.com/@babel/helper-hoist-variables/7.22.5:
  196. 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}
  197. name: '@babel/helper-hoist-variables'
  198. version: 7.22.5
  199. engines: {node: '>=6.9.0'}
  200. dependencies:
  201. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  202. registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.23.0:
  203. 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}
  204. name: '@babel/helper-member-expression-to-functions'
  205. version: 7.23.0
  206. engines: {node: '>=6.9.0'}
  207. dependencies:
  208. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  209. registry.npmmirror.com/@babel/helper-module-imports/7.22.15:
  210. 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}
  211. name: '@babel/helper-module-imports'
  212. version: 7.22.15
  213. engines: {node: '>=6.9.0'}
  214. dependencies:
  215. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  216. registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6:
  217. 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}
  218. id: registry.npmmirror.com/@babel/helper-module-transforms/7.23.3
  219. name: '@babel/helper-module-transforms'
  220. version: 7.23.3
  221. engines: {node: '>=6.9.0'}
  222. peerDependencies:
  223. '@babel/core': ^7.0.0
  224. dependencies:
  225. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  226. '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
  227. '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.22.15
  228. '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.22.5
  229. '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
  230. '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
  231. registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5:
  232. 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}
  233. name: '@babel/helper-optimise-call-expression'
  234. version: 7.22.5
  235. engines: {node: '>=6.9.0'}
  236. dependencies:
  237. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  238. registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5:
  239. 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}
  240. name: '@babel/helper-plugin-utils'
  241. version: 7.22.5
  242. engines: {node: '>=6.9.0'}
  243. registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.6:
  244. 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}
  245. id: registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20
  246. name: '@babel/helper-remap-async-to-generator'
  247. version: 7.22.20
  248. engines: {node: '>=6.9.0'}
  249. peerDependencies:
  250. '@babel/core': ^7.0.0
  251. dependencies:
  252. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  253. '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
  254. '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
  255. '@babel/helper-wrap-function': registry.npmmirror.com/@babel/helper-wrap-function/7.22.20
  256. dev: true
  257. registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.6:
  258. 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}
  259. id: registry.npmmirror.com/@babel/helper-replace-supers/7.22.20
  260. name: '@babel/helper-replace-supers'
  261. version: 7.22.20
  262. engines: {node: '>=6.9.0'}
  263. peerDependencies:
  264. '@babel/core': ^7.0.0
  265. dependencies:
  266. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  267. '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
  268. '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.23.0
  269. '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5
  270. registry.npmmirror.com/@babel/helper-simple-access/7.22.5:
  271. 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}
  272. name: '@babel/helper-simple-access'
  273. version: 7.22.5
  274. engines: {node: '>=6.9.0'}
  275. dependencies:
  276. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  277. registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5:
  278. 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}
  279. name: '@babel/helper-skip-transparent-expression-wrappers'
  280. version: 7.22.5
  281. engines: {node: '>=6.9.0'}
  282. dependencies:
  283. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  284. registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6:
  285. 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}
  286. name: '@babel/helper-split-export-declaration'
  287. version: 7.22.6
  288. engines: {node: '>=6.9.0'}
  289. dependencies:
  290. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  291. registry.npmmirror.com/@babel/helper-string-parser/7.23.4:
  292. 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}
  293. name: '@babel/helper-string-parser'
  294. version: 7.23.4
  295. engines: {node: '>=6.9.0'}
  296. registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20:
  297. 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}
  298. name: '@babel/helper-validator-identifier'
  299. version: 7.22.20
  300. engines: {node: '>=6.9.0'}
  301. registry.npmmirror.com/@babel/helper-validator-option/7.23.5:
  302. 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}
  303. name: '@babel/helper-validator-option'
  304. version: 7.23.5
  305. engines: {node: '>=6.9.0'}
  306. registry.npmmirror.com/@babel/helper-wrap-function/7.22.20:
  307. 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}
  308. name: '@babel/helper-wrap-function'
  309. version: 7.22.20
  310. engines: {node: '>=6.9.0'}
  311. dependencies:
  312. '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
  313. '@babel/template': registry.npmmirror.com/@babel/template/7.22.15
  314. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  315. dev: true
  316. registry.npmmirror.com/@babel/helpers/7.23.6:
  317. resolution: {integrity: sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.23.6.tgz}
  318. name: '@babel/helpers'
  319. version: 7.23.6
  320. engines: {node: '>=6.9.0'}
  321. dependencies:
  322. '@babel/template': registry.npmmirror.com/@babel/template/7.22.15
  323. '@babel/traverse': registry.npmmirror.com/@babel/traverse/7.23.6
  324. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  325. transitivePeerDependencies:
  326. - supports-color
  327. registry.npmmirror.com/@babel/highlight/7.23.4:
  328. 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}
  329. name: '@babel/highlight'
  330. version: 7.23.4
  331. engines: {node: '>=6.9.0'}
  332. dependencies:
  333. '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
  334. chalk: registry.npmmirror.com/chalk/2.4.2
  335. js-tokens: registry.npmmirror.com/js-tokens/4.0.0
  336. registry.npmmirror.com/@babel/parser/7.23.6:
  337. resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.23.6.tgz}
  338. name: '@babel/parser'
  339. version: 7.23.6
  340. engines: {node: '>=6.0.0'}
  341. hasBin: true
  342. dependencies:
  343. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  344. registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.23.3_@babel+core@7.23.6:
  345. 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}
  346. id: registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.23.3
  347. name: '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression'
  348. version: 7.23.3
  349. engines: {node: '>=6.9.0'}
  350. peerDependencies:
  351. '@babel/core': ^7.0.0
  352. dependencies:
  353. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  354. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  355. dev: true
  356. registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.23.3_@babel+core@7.23.6:
  357. 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}
  358. id: registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.23.3
  359. name: '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining'
  360. version: 7.23.3
  361. engines: {node: '>=6.9.0'}
  362. peerDependencies:
  363. '@babel/core': ^7.13.0
  364. dependencies:
  365. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  366. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  367. '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
  368. '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4_@babel+core@7.23.6
  369. dev: true
  370. registry.npmmirror.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.23.3_@babel+core@7.23.6:
  371. 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}
  372. id: registry.npmmirror.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.23.3
  373. name: '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly'
  374. version: 7.23.3
  375. engines: {node: '>=6.9.0'}
  376. peerDependencies:
  377. '@babel/core': ^7.0.0
  378. dependencies:
  379. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  380. '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
  381. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  382. dev: true
  383. registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.23.6:
  384. 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}
  385. id: registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2
  386. name: '@babel/plugin-proposal-private-property-in-object'
  387. version: 7.21.0-placeholder-for-preset-env.2
  388. engines: {node: '>=6.9.0'}
  389. peerDependencies:
  390. '@babel/core': ^7.0.0-0
  391. dependencies:
  392. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  393. dev: true
  394. registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.6:
  395. 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}
  396. id: registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4
  397. name: '@babel/plugin-syntax-async-generators'
  398. version: 7.8.4
  399. peerDependencies:
  400. '@babel/core': ^7.0.0-0
  401. dependencies:
  402. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  403. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  404. dev: true
  405. registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.23.6:
  406. 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}
  407. id: registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13
  408. name: '@babel/plugin-syntax-class-properties'
  409. version: 7.12.13
  410. peerDependencies:
  411. '@babel/core': ^7.0.0-0
  412. dependencies:
  413. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  414. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  415. dev: true
  416. registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.6:
  417. 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}
  418. id: registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5
  419. name: '@babel/plugin-syntax-class-static-block'
  420. version: 7.14.5
  421. engines: {node: '>=6.9.0'}
  422. peerDependencies:
  423. '@babel/core': ^7.0.0-0
  424. dependencies:
  425. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  426. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  427. dev: true
  428. registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.6:
  429. 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}
  430. id: registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3
  431. name: '@babel/plugin-syntax-dynamic-import'
  432. version: 7.8.3
  433. peerDependencies:
  434. '@babel/core': ^7.0.0-0
  435. dependencies:
  436. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  437. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  438. dev: true
  439. registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.6:
  440. 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}
  441. id: registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3
  442. name: '@babel/plugin-syntax-export-namespace-from'
  443. version: 7.8.3
  444. peerDependencies:
  445. '@babel/core': ^7.0.0-0
  446. dependencies:
  447. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  448. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  449. dev: true
  450. registry.npmmirror.com/@babel/plugin-syntax-import-assertions/7.23.3_@babel+core@7.23.6:
  451. 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}
  452. id: registry.npmmirror.com/@babel/plugin-syntax-import-assertions/7.23.3
  453. name: '@babel/plugin-syntax-import-assertions'
  454. version: 7.23.3
  455. engines: {node: '>=6.9.0'}
  456. peerDependencies:
  457. '@babel/core': ^7.0.0-0
  458. dependencies:
  459. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  460. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  461. dev: true
  462. registry.npmmirror.com/@babel/plugin-syntax-import-attributes/7.23.3_@babel+core@7.23.6:
  463. 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}
  464. id: registry.npmmirror.com/@babel/plugin-syntax-import-attributes/7.23.3
  465. name: '@babel/plugin-syntax-import-attributes'
  466. version: 7.23.3
  467. engines: {node: '>=6.9.0'}
  468. peerDependencies:
  469. '@babel/core': ^7.0.0-0
  470. dependencies:
  471. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  472. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  473. dev: true
  474. registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.23.6:
  475. 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}
  476. id: registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4
  477. name: '@babel/plugin-syntax-import-meta'
  478. version: 7.10.4
  479. peerDependencies:
  480. '@babel/core': ^7.0.0-0
  481. dependencies:
  482. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  483. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  484. dev: true
  485. registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.6:
  486. 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}
  487. id: registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3
  488. name: '@babel/plugin-syntax-json-strings'
  489. version: 7.8.3
  490. peerDependencies:
  491. '@babel/core': ^7.0.0-0
  492. dependencies:
  493. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  494. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  495. dev: true
  496. registry.npmmirror.com/@babel/plugin-syntax-jsx/7.23.3_@babel+core@7.23.6:
  497. 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}
  498. id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.23.3
  499. name: '@babel/plugin-syntax-jsx'
  500. version: 7.23.3
  501. engines: {node: '>=6.9.0'}
  502. peerDependencies:
  503. '@babel/core': ^7.0.0-0
  504. dependencies:
  505. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  506. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  507. dev: false
  508. registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.6:
  509. 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}
  510. id: registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4
  511. name: '@babel/plugin-syntax-logical-assignment-operators'
  512. version: 7.10.4
  513. peerDependencies:
  514. '@babel/core': ^7.0.0-0
  515. dependencies:
  516. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  517. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  518. dev: true
  519. registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.6:
  520. 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}
  521. id: registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3
  522. name: '@babel/plugin-syntax-nullish-coalescing-operator'
  523. version: 7.8.3
  524. peerDependencies:
  525. '@babel/core': ^7.0.0-0
  526. dependencies:
  527. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  528. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  529. dev: true
  530. registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.6:
  531. 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}
  532. id: registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4
  533. name: '@babel/plugin-syntax-numeric-separator'
  534. version: 7.10.4
  535. peerDependencies:
  536. '@babel/core': ^7.0.0-0
  537. dependencies:
  538. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  539. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  540. dev: true
  541. registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.6:
  542. 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}
  543. id: registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3
  544. name: '@babel/plugin-syntax-object-rest-spread'
  545. version: 7.8.3
  546. peerDependencies:
  547. '@babel/core': ^7.0.0-0
  548. dependencies:
  549. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  550. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  551. dev: true
  552. registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.6:
  553. 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}
  554. id: registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3
  555. name: '@babel/plugin-syntax-optional-catch-binding'
  556. version: 7.8.3
  557. peerDependencies:
  558. '@babel/core': ^7.0.0-0
  559. dependencies:
  560. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  561. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  562. dev: true
  563. registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.6:
  564. 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}
  565. id: registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3
  566. name: '@babel/plugin-syntax-optional-chaining'
  567. version: 7.8.3
  568. peerDependencies:
  569. '@babel/core': ^7.0.0-0
  570. dependencies:
  571. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  572. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  573. dev: true
  574. registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.23.6:
  575. 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}
  576. id: registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5
  577. name: '@babel/plugin-syntax-private-property-in-object'
  578. version: 7.14.5
  579. engines: {node: '>=6.9.0'}
  580. peerDependencies:
  581. '@babel/core': ^7.0.0-0
  582. dependencies:
  583. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  584. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  585. dev: true
  586. registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.23.6:
  587. 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}
  588. id: registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5
  589. name: '@babel/plugin-syntax-top-level-await'
  590. version: 7.14.5
  591. engines: {node: '>=6.9.0'}
  592. peerDependencies:
  593. '@babel/core': ^7.0.0-0
  594. dependencies:
  595. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  596. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  597. dev: true
  598. registry.npmmirror.com/@babel/plugin-syntax-typescript/7.23.3_@babel+core@7.23.6:
  599. 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}
  600. id: registry.npmmirror.com/@babel/plugin-syntax-typescript/7.23.3
  601. name: '@babel/plugin-syntax-typescript'
  602. version: 7.23.3
  603. engines: {node: '>=6.9.0'}
  604. peerDependencies:
  605. '@babel/core': ^7.0.0-0
  606. dependencies:
  607. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  608. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  609. dev: false
  610. registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.23.6:
  611. 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}
  612. id: registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/7.18.6
  613. name: '@babel/plugin-syntax-unicode-sets-regex'
  614. version: 7.18.6
  615. engines: {node: '>=6.9.0'}
  616. peerDependencies:
  617. '@babel/core': ^7.0.0
  618. dependencies:
  619. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  620. '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
  621. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  622. dev: true
  623. registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.23.3_@babel+core@7.23.6:
  624. 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}
  625. id: registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.23.3
  626. name: '@babel/plugin-transform-arrow-functions'
  627. version: 7.23.3
  628. engines: {node: '>=6.9.0'}
  629. peerDependencies:
  630. '@babel/core': ^7.0.0-0
  631. dependencies:
  632. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  633. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  634. dev: true
  635. registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/7.23.4_@babel+core@7.23.6:
  636. 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}
  637. id: registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/7.23.4
  638. name: '@babel/plugin-transform-async-generator-functions'
  639. version: 7.23.4
  640. engines: {node: '>=6.9.0'}
  641. peerDependencies:
  642. '@babel/core': ^7.0.0-0
  643. dependencies:
  644. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  645. '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
  646. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  647. '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.6
  648. '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.6
  649. dev: true
  650. registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.23.3_@babel+core@7.23.6:
  651. 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}
  652. id: registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.23.3
  653. name: '@babel/plugin-transform-async-to-generator'
  654. version: 7.23.3
  655. engines: {node: '>=6.9.0'}
  656. peerDependencies:
  657. '@babel/core': ^7.0.0-0
  658. dependencies:
  659. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  660. '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.22.15
  661. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  662. '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.6
  663. dev: true
  664. registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.23.3_@babel+core@7.23.6:
  665. 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}
  666. id: registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.23.3
  667. name: '@babel/plugin-transform-block-scoped-functions'
  668. version: 7.23.3
  669. engines: {node: '>=6.9.0'}
  670. peerDependencies:
  671. '@babel/core': ^7.0.0-0
  672. dependencies:
  673. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  674. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  675. dev: true
  676. registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.23.4_@babel+core@7.23.6:
  677. 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}
  678. id: registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.23.4
  679. name: '@babel/plugin-transform-block-scoping'
  680. version: 7.23.4
  681. engines: {node: '>=6.9.0'}
  682. peerDependencies:
  683. '@babel/core': ^7.0.0-0
  684. dependencies:
  685. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  686. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  687. dev: true
  688. registry.npmmirror.com/@babel/plugin-transform-class-properties/7.23.3_@babel+core@7.23.6:
  689. 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}
  690. id: registry.npmmirror.com/@babel/plugin-transform-class-properties/7.23.3
  691. name: '@babel/plugin-transform-class-properties'
  692. version: 7.23.3
  693. engines: {node: '>=6.9.0'}
  694. peerDependencies:
  695. '@babel/core': ^7.0.0-0
  696. dependencies:
  697. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  698. '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6
  699. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  700. dev: true
  701. registry.npmmirror.com/@babel/plugin-transform-class-static-block/7.23.4_@babel+core@7.23.6:
  702. 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}
  703. id: registry.npmmirror.com/@babel/plugin-transform-class-static-block/7.23.4
  704. name: '@babel/plugin-transform-class-static-block'
  705. version: 7.23.4
  706. engines: {node: '>=6.9.0'}
  707. peerDependencies:
  708. '@babel/core': ^7.12.0
  709. dependencies:
  710. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  711. '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6
  712. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  713. '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.6
  714. dev: true
  715. registry.npmmirror.com/@babel/plugin-transform-classes/7.23.5_@babel+core@7.23.6:
  716. 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}
  717. id: registry.npmmirror.com/@babel/plugin-transform-classes/7.23.5
  718. name: '@babel/plugin-transform-classes'
  719. version: 7.23.5
  720. engines: {node: '>=6.9.0'}
  721. peerDependencies:
  722. '@babel/core': ^7.0.0-0
  723. dependencies:
  724. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  725. '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
  726. '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
  727. '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
  728. '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
  729. '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5
  730. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  731. '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.6
  732. '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
  733. globals: registry.npmmirror.com/globals/11.12.0
  734. dev: true
  735. registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.23.3_@babel+core@7.23.6:
  736. 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}
  737. id: registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.23.3
  738. name: '@babel/plugin-transform-computed-properties'
  739. version: 7.23.3
  740. engines: {node: '>=6.9.0'}
  741. peerDependencies:
  742. '@babel/core': ^7.0.0-0
  743. dependencies:
  744. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  745. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  746. '@babel/template': registry.npmmirror.com/@babel/template/7.22.15
  747. dev: true
  748. registry.npmmirror.com/@babel/plugin-transform-destructuring/7.23.3_@babel+core@7.23.6:
  749. 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}
  750. id: registry.npmmirror.com/@babel/plugin-transform-destructuring/7.23.3
  751. name: '@babel/plugin-transform-destructuring'
  752. version: 7.23.3
  753. engines: {node: '>=6.9.0'}
  754. peerDependencies:
  755. '@babel/core': ^7.0.0-0
  756. dependencies:
  757. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  758. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  759. dev: true
  760. registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.23.3_@babel+core@7.23.6:
  761. 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}
  762. id: registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.23.3
  763. name: '@babel/plugin-transform-dotall-regex'
  764. version: 7.23.3
  765. engines: {node: '>=6.9.0'}
  766. peerDependencies:
  767. '@babel/core': ^7.0.0-0
  768. dependencies:
  769. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  770. '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
  771. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  772. dev: true
  773. registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.23.3_@babel+core@7.23.6:
  774. 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}
  775. id: registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.23.3
  776. name: '@babel/plugin-transform-duplicate-keys'
  777. version: 7.23.3
  778. engines: {node: '>=6.9.0'}
  779. peerDependencies:
  780. '@babel/core': ^7.0.0-0
  781. dependencies:
  782. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  783. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  784. dev: true
  785. registry.npmmirror.com/@babel/plugin-transform-dynamic-import/7.23.4_@babel+core@7.23.6:
  786. 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}
  787. id: registry.npmmirror.com/@babel/plugin-transform-dynamic-import/7.23.4
  788. name: '@babel/plugin-transform-dynamic-import'
  789. version: 7.23.4
  790. engines: {node: '>=6.9.0'}
  791. peerDependencies:
  792. '@babel/core': ^7.0.0-0
  793. dependencies:
  794. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  795. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  796. '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.6
  797. dev: true
  798. registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.23.3_@babel+core@7.23.6:
  799. 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}
  800. id: registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.23.3
  801. name: '@babel/plugin-transform-exponentiation-operator'
  802. version: 7.23.3
  803. engines: {node: '>=6.9.0'}
  804. peerDependencies:
  805. '@babel/core': ^7.0.0-0
  806. dependencies:
  807. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  808. '@babel/helper-builder-binary-assignment-operator-visitor': registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/7.22.15
  809. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  810. dev: true
  811. registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/7.23.4_@babel+core@7.23.6:
  812. 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}
  813. id: registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/7.23.4
  814. name: '@babel/plugin-transform-export-namespace-from'
  815. version: 7.23.4
  816. engines: {node: '>=6.9.0'}
  817. peerDependencies:
  818. '@babel/core': ^7.0.0-0
  819. dependencies:
  820. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  821. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  822. '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.6
  823. dev: true
  824. registry.npmmirror.com/@babel/plugin-transform-for-of/7.23.6_@babel+core@7.23.6:
  825. 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}
  826. id: registry.npmmirror.com/@babel/plugin-transform-for-of/7.23.6
  827. name: '@babel/plugin-transform-for-of'
  828. version: 7.23.6
  829. engines: {node: '>=6.9.0'}
  830. peerDependencies:
  831. '@babel/core': ^7.0.0-0
  832. dependencies:
  833. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  834. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  835. '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
  836. dev: true
  837. registry.npmmirror.com/@babel/plugin-transform-function-name/7.23.3_@babel+core@7.23.6:
  838. 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}
  839. id: registry.npmmirror.com/@babel/plugin-transform-function-name/7.23.3
  840. name: '@babel/plugin-transform-function-name'
  841. version: 7.23.3
  842. engines: {node: '>=6.9.0'}
  843. peerDependencies:
  844. '@babel/core': ^7.0.0-0
  845. dependencies:
  846. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  847. '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
  848. '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
  849. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  850. dev: true
  851. registry.npmmirror.com/@babel/plugin-transform-json-strings/7.23.4_@babel+core@7.23.6:
  852. 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}
  853. id: registry.npmmirror.com/@babel/plugin-transform-json-strings/7.23.4
  854. name: '@babel/plugin-transform-json-strings'
  855. version: 7.23.4
  856. engines: {node: '>=6.9.0'}
  857. peerDependencies:
  858. '@babel/core': ^7.0.0-0
  859. dependencies:
  860. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  861. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  862. '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.6
  863. dev: true
  864. registry.npmmirror.com/@babel/plugin-transform-literals/7.23.3_@babel+core@7.23.6:
  865. 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}
  866. id: registry.npmmirror.com/@babel/plugin-transform-literals/7.23.3
  867. name: '@babel/plugin-transform-literals'
  868. version: 7.23.3
  869. engines: {node: '>=6.9.0'}
  870. peerDependencies:
  871. '@babel/core': ^7.0.0-0
  872. dependencies:
  873. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  874. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  875. dev: true
  876. registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/7.23.4_@babel+core@7.23.6:
  877. 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}
  878. id: registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/7.23.4
  879. name: '@babel/plugin-transform-logical-assignment-operators'
  880. version: 7.23.4
  881. engines: {node: '>=6.9.0'}
  882. peerDependencies:
  883. '@babel/core': ^7.0.0-0
  884. dependencies:
  885. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  886. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  887. '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.6
  888. dev: true
  889. registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.23.3_@babel+core@7.23.6:
  890. 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}
  891. id: registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.23.3
  892. name: '@babel/plugin-transform-member-expression-literals'
  893. version: 7.23.3
  894. engines: {node: '>=6.9.0'}
  895. peerDependencies:
  896. '@babel/core': ^7.0.0-0
  897. dependencies:
  898. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  899. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  900. dev: true
  901. registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.23.3_@babel+core@7.23.6:
  902. 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}
  903. id: registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.23.3
  904. name: '@babel/plugin-transform-modules-amd'
  905. version: 7.23.3
  906. engines: {node: '>=6.9.0'}
  907. peerDependencies:
  908. '@babel/core': ^7.0.0-0
  909. dependencies:
  910. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  911. '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6
  912. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  913. dev: true
  914. registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.23.3_@babel+core@7.23.6:
  915. 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}
  916. id: registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.23.3
  917. name: '@babel/plugin-transform-modules-commonjs'
  918. version: 7.23.3
  919. engines: {node: '>=6.9.0'}
  920. peerDependencies:
  921. '@babel/core': ^7.0.0-0
  922. dependencies:
  923. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  924. '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6
  925. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  926. '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.22.5
  927. registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.23.3_@babel+core@7.23.6:
  928. 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}
  929. id: registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.23.3
  930. name: '@babel/plugin-transform-modules-systemjs'
  931. version: 7.23.3
  932. engines: {node: '>=6.9.0'}
  933. peerDependencies:
  934. '@babel/core': ^7.0.0-0
  935. dependencies:
  936. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  937. '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.22.5
  938. '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6
  939. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  940. '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
  941. dev: true
  942. registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.23.3_@babel+core@7.23.6:
  943. 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}
  944. id: registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.23.3
  945. name: '@babel/plugin-transform-modules-umd'
  946. version: 7.23.3
  947. engines: {node: '>=6.9.0'}
  948. peerDependencies:
  949. '@babel/core': ^7.0.0-0
  950. dependencies:
  951. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  952. '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.6
  953. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  954. dev: true
  955. registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.23.6:
  956. 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}
  957. id: registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.22.5
  958. name: '@babel/plugin-transform-named-capturing-groups-regex'
  959. version: 7.22.5
  960. engines: {node: '>=6.9.0'}
  961. peerDependencies:
  962. '@babel/core': ^7.0.0
  963. dependencies:
  964. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  965. '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
  966. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  967. dev: true
  968. registry.npmmirror.com/@babel/plugin-transform-new-target/7.23.3_@babel+core@7.23.6:
  969. 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}
  970. id: registry.npmmirror.com/@babel/plugin-transform-new-target/7.23.3
  971. name: '@babel/plugin-transform-new-target'
  972. version: 7.23.3
  973. engines: {node: '>=6.9.0'}
  974. peerDependencies:
  975. '@babel/core': ^7.0.0-0
  976. dependencies:
  977. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  978. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  979. dev: true
  980. registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/7.23.4_@babel+core@7.23.6:
  981. 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}
  982. id: registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/7.23.4
  983. name: '@babel/plugin-transform-nullish-coalescing-operator'
  984. version: 7.23.4
  985. engines: {node: '>=6.9.0'}
  986. peerDependencies:
  987. '@babel/core': ^7.0.0-0
  988. dependencies:
  989. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  990. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  991. '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.6
  992. dev: true
  993. registry.npmmirror.com/@babel/plugin-transform-numeric-separator/7.23.4_@babel+core@7.23.6:
  994. 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}
  995. id: registry.npmmirror.com/@babel/plugin-transform-numeric-separator/7.23.4
  996. name: '@babel/plugin-transform-numeric-separator'
  997. version: 7.23.4
  998. engines: {node: '>=6.9.0'}
  999. peerDependencies:
  1000. '@babel/core': ^7.0.0-0
  1001. dependencies:
  1002. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1003. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1004. '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.6
  1005. dev: true
  1006. registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/7.23.4_@babel+core@7.23.6:
  1007. 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}
  1008. id: registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/7.23.4
  1009. name: '@babel/plugin-transform-object-rest-spread'
  1010. version: 7.23.4
  1011. engines: {node: '>=6.9.0'}
  1012. peerDependencies:
  1013. '@babel/core': ^7.0.0-0
  1014. dependencies:
  1015. '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
  1016. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1017. '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
  1018. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1019. '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.6
  1020. '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3_@babel+core@7.23.6
  1021. dev: true
  1022. registry.npmmirror.com/@babel/plugin-transform-object-super/7.23.3_@babel+core@7.23.6:
  1023. 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}
  1024. id: registry.npmmirror.com/@babel/plugin-transform-object-super/7.23.3
  1025. name: '@babel/plugin-transform-object-super'
  1026. version: 7.23.3
  1027. engines: {node: '>=6.9.0'}
  1028. peerDependencies:
  1029. '@babel/core': ^7.0.0-0
  1030. dependencies:
  1031. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1032. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1033. '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.6
  1034. dev: true
  1035. registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/7.23.4_@babel+core@7.23.6:
  1036. 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}
  1037. id: registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/7.23.4
  1038. name: '@babel/plugin-transform-optional-catch-binding'
  1039. version: 7.23.4
  1040. engines: {node: '>=6.9.0'}
  1041. peerDependencies:
  1042. '@babel/core': ^7.0.0-0
  1043. dependencies:
  1044. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1045. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1046. '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.6
  1047. dev: true
  1048. registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4_@babel+core@7.23.6:
  1049. 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}
  1050. id: registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4
  1051. name: '@babel/plugin-transform-optional-chaining'
  1052. version: 7.23.4
  1053. engines: {node: '>=6.9.0'}
  1054. peerDependencies:
  1055. '@babel/core': ^7.0.0-0
  1056. dependencies:
  1057. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1058. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1059. '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
  1060. '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.6
  1061. dev: true
  1062. registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3_@babel+core@7.23.6:
  1063. 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}
  1064. id: registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3
  1065. name: '@babel/plugin-transform-parameters'
  1066. version: 7.23.3
  1067. engines: {node: '>=6.9.0'}
  1068. peerDependencies:
  1069. '@babel/core': ^7.0.0-0
  1070. dependencies:
  1071. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1072. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1073. dev: true
  1074. registry.npmmirror.com/@babel/plugin-transform-private-methods/7.23.3_@babel+core@7.23.6:
  1075. 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}
  1076. id: registry.npmmirror.com/@babel/plugin-transform-private-methods/7.23.3
  1077. name: '@babel/plugin-transform-private-methods'
  1078. version: 7.23.3
  1079. engines: {node: '>=6.9.0'}
  1080. peerDependencies:
  1081. '@babel/core': ^7.0.0-0
  1082. dependencies:
  1083. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1084. '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6
  1085. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1086. dev: true
  1087. registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/7.23.4_@babel+core@7.23.6:
  1088. 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}
  1089. id: registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/7.23.4
  1090. name: '@babel/plugin-transform-private-property-in-object'
  1091. version: 7.23.4
  1092. engines: {node: '>=6.9.0'}
  1093. peerDependencies:
  1094. '@babel/core': ^7.0.0-0
  1095. dependencies:
  1096. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1097. '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
  1098. '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6
  1099. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1100. '@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
  1101. dev: true
  1102. registry.npmmirror.com/@babel/plugin-transform-property-literals/7.23.3_@babel+core@7.23.6:
  1103. 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}
  1104. id: registry.npmmirror.com/@babel/plugin-transform-property-literals/7.23.3
  1105. name: '@babel/plugin-transform-property-literals'
  1106. version: 7.23.3
  1107. engines: {node: '>=6.9.0'}
  1108. peerDependencies:
  1109. '@babel/core': ^7.0.0-0
  1110. dependencies:
  1111. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1112. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1113. dev: true
  1114. registry.npmmirror.com/@babel/plugin-transform-regenerator/7.23.3_@babel+core@7.23.6:
  1115. 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}
  1116. id: registry.npmmirror.com/@babel/plugin-transform-regenerator/7.23.3
  1117. name: '@babel/plugin-transform-regenerator'
  1118. version: 7.23.3
  1119. engines: {node: '>=6.9.0'}
  1120. peerDependencies:
  1121. '@babel/core': ^7.0.0-0
  1122. dependencies:
  1123. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1124. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1125. regenerator-transform: registry.npmmirror.com/regenerator-transform/0.15.2
  1126. dev: true
  1127. registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.23.3_@babel+core@7.23.6:
  1128. 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}
  1129. id: registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.23.3
  1130. name: '@babel/plugin-transform-reserved-words'
  1131. version: 7.23.3
  1132. engines: {node: '>=6.9.0'}
  1133. peerDependencies:
  1134. '@babel/core': ^7.0.0-0
  1135. dependencies:
  1136. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1137. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1138. dev: true
  1139. registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.23.3_@babel+core@7.23.6:
  1140. 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}
  1141. id: registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.23.3
  1142. name: '@babel/plugin-transform-shorthand-properties'
  1143. version: 7.23.3
  1144. engines: {node: '>=6.9.0'}
  1145. peerDependencies:
  1146. '@babel/core': ^7.0.0-0
  1147. dependencies:
  1148. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1149. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1150. dev: true
  1151. registry.npmmirror.com/@babel/plugin-transform-spread/7.23.3_@babel+core@7.23.6:
  1152. 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}
  1153. id: registry.npmmirror.com/@babel/plugin-transform-spread/7.23.3
  1154. name: '@babel/plugin-transform-spread'
  1155. version: 7.23.3
  1156. engines: {node: '>=6.9.0'}
  1157. peerDependencies:
  1158. '@babel/core': ^7.0.0-0
  1159. dependencies:
  1160. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1161. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1162. '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
  1163. dev: true
  1164. registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.23.3_@babel+core@7.23.6:
  1165. 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}
  1166. id: registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.23.3
  1167. name: '@babel/plugin-transform-sticky-regex'
  1168. version: 7.23.3
  1169. engines: {node: '>=6.9.0'}
  1170. peerDependencies:
  1171. '@babel/core': ^7.0.0-0
  1172. dependencies:
  1173. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1174. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1175. dev: true
  1176. registry.npmmirror.com/@babel/plugin-transform-template-literals/7.23.3_@babel+core@7.23.6:
  1177. 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}
  1178. id: registry.npmmirror.com/@babel/plugin-transform-template-literals/7.23.3
  1179. name: '@babel/plugin-transform-template-literals'
  1180. version: 7.23.3
  1181. engines: {node: '>=6.9.0'}
  1182. peerDependencies:
  1183. '@babel/core': ^7.0.0-0
  1184. dependencies:
  1185. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1186. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1187. dev: true
  1188. registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.23.3_@babel+core@7.23.6:
  1189. 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}
  1190. id: registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.23.3
  1191. name: '@babel/plugin-transform-typeof-symbol'
  1192. version: 7.23.3
  1193. engines: {node: '>=6.9.0'}
  1194. peerDependencies:
  1195. '@babel/core': ^7.0.0-0
  1196. dependencies:
  1197. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1198. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1199. dev: true
  1200. registry.npmmirror.com/@babel/plugin-transform-typescript/7.23.6_@babel+core@7.23.6:
  1201. 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}
  1202. id: registry.npmmirror.com/@babel/plugin-transform-typescript/7.23.6
  1203. name: '@babel/plugin-transform-typescript'
  1204. version: 7.23.6
  1205. engines: {node: '>=6.9.0'}
  1206. peerDependencies:
  1207. '@babel/core': ^7.0.0-0
  1208. dependencies:
  1209. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1210. '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
  1211. '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.6_@babel+core@7.23.6
  1212. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1213. '@babel/plugin-syntax-typescript': registry.npmmirror.com/@babel/plugin-syntax-typescript/7.23.3_@babel+core@7.23.6
  1214. dev: false
  1215. registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.23.3_@babel+core@7.23.6:
  1216. 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}
  1217. id: registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.23.3
  1218. name: '@babel/plugin-transform-unicode-escapes'
  1219. version: 7.23.3
  1220. engines: {node: '>=6.9.0'}
  1221. peerDependencies:
  1222. '@babel/core': ^7.0.0-0
  1223. dependencies:
  1224. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1225. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1226. dev: true
  1227. registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/7.23.3_@babel+core@7.23.6:
  1228. 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}
  1229. id: registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/7.23.3
  1230. name: '@babel/plugin-transform-unicode-property-regex'
  1231. version: 7.23.3
  1232. engines: {node: '>=6.9.0'}
  1233. peerDependencies:
  1234. '@babel/core': ^7.0.0-0
  1235. dependencies:
  1236. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1237. '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
  1238. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1239. dev: true
  1240. registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.23.3_@babel+core@7.23.6:
  1241. 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}
  1242. id: registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.23.3
  1243. name: '@babel/plugin-transform-unicode-regex'
  1244. version: 7.23.3
  1245. engines: {node: '>=6.9.0'}
  1246. peerDependencies:
  1247. '@babel/core': ^7.0.0-0
  1248. dependencies:
  1249. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1250. '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
  1251. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1252. dev: true
  1253. registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/7.23.3_@babel+core@7.23.6:
  1254. 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}
  1255. id: registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/7.23.3
  1256. name: '@babel/plugin-transform-unicode-sets-regex'
  1257. version: 7.23.3
  1258. engines: {node: '>=6.9.0'}
  1259. peerDependencies:
  1260. '@babel/core': ^7.0.0
  1261. dependencies:
  1262. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1263. '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.6
  1264. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1265. dev: true
  1266. registry.npmmirror.com/@babel/preset-env/7.23.6_@babel+core@7.23.6:
  1267. 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}
  1268. id: registry.npmmirror.com/@babel/preset-env/7.23.6
  1269. name: '@babel/preset-env'
  1270. version: 7.23.6
  1271. engines: {node: '>=6.9.0'}
  1272. peerDependencies:
  1273. '@babel/core': ^7.0.0-0
  1274. dependencies:
  1275. '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
  1276. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1277. '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.23.6
  1278. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1279. '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.23.5
  1280. '@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
  1281. '@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
  1282. '@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
  1283. '@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
  1284. '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.6
  1285. '@babel/plugin-syntax-class-properties': registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.23.6
  1286. '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.6
  1287. '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.6
  1288. '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.6
  1289. '@babel/plugin-syntax-import-assertions': registry.npmmirror.com/@babel/plugin-syntax-import-assertions/7.23.3_@babel+core@7.23.6
  1290. '@babel/plugin-syntax-import-attributes': registry.npmmirror.com/@babel/plugin-syntax-import-attributes/7.23.3_@babel+core@7.23.6
  1291. '@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.23.6
  1292. '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.6
  1293. '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.6
  1294. '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.6
  1295. '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.6
  1296. '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.6
  1297. '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.6
  1298. '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.6
  1299. '@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
  1300. '@babel/plugin-syntax-top-level-await': registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.23.6
  1301. '@babel/plugin-syntax-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.23.6
  1302. '@babel/plugin-transform-arrow-functions': registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.23.3_@babel+core@7.23.6
  1303. '@babel/plugin-transform-async-generator-functions': registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/7.23.4_@babel+core@7.23.6
  1304. '@babel/plugin-transform-async-to-generator': registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.23.3_@babel+core@7.23.6
  1305. '@babel/plugin-transform-block-scoped-functions': registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.23.3_@babel+core@7.23.6
  1306. '@babel/plugin-transform-block-scoping': registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.23.4_@babel+core@7.23.6
  1307. '@babel/plugin-transform-class-properties': registry.npmmirror.com/@babel/plugin-transform-class-properties/7.23.3_@babel+core@7.23.6
  1308. '@babel/plugin-transform-class-static-block': registry.npmmirror.com/@babel/plugin-transform-class-static-block/7.23.4_@babel+core@7.23.6
  1309. '@babel/plugin-transform-classes': registry.npmmirror.com/@babel/plugin-transform-classes/7.23.5_@babel+core@7.23.6
  1310. '@babel/plugin-transform-computed-properties': registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.23.3_@babel+core@7.23.6
  1311. '@babel/plugin-transform-destructuring': registry.npmmirror.com/@babel/plugin-transform-destructuring/7.23.3_@babel+core@7.23.6
  1312. '@babel/plugin-transform-dotall-regex': registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.23.3_@babel+core@7.23.6
  1313. '@babel/plugin-transform-duplicate-keys': registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.23.3_@babel+core@7.23.6
  1314. '@babel/plugin-transform-dynamic-import': registry.npmmirror.com/@babel/plugin-transform-dynamic-import/7.23.4_@babel+core@7.23.6
  1315. '@babel/plugin-transform-exponentiation-operator': registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.23.3_@babel+core@7.23.6
  1316. '@babel/plugin-transform-export-namespace-from': registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/7.23.4_@babel+core@7.23.6
  1317. '@babel/plugin-transform-for-of': registry.npmmirror.com/@babel/plugin-transform-for-of/7.23.6_@babel+core@7.23.6
  1318. '@babel/plugin-transform-function-name': registry.npmmirror.com/@babel/plugin-transform-function-name/7.23.3_@babel+core@7.23.6
  1319. '@babel/plugin-transform-json-strings': registry.npmmirror.com/@babel/plugin-transform-json-strings/7.23.4_@babel+core@7.23.6
  1320. '@babel/plugin-transform-literals': registry.npmmirror.com/@babel/plugin-transform-literals/7.23.3_@babel+core@7.23.6
  1321. '@babel/plugin-transform-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/7.23.4_@babel+core@7.23.6
  1322. '@babel/plugin-transform-member-expression-literals': registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.23.3_@babel+core@7.23.6
  1323. '@babel/plugin-transform-modules-amd': registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.23.3_@babel+core@7.23.6
  1324. '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.23.3_@babel+core@7.23.6
  1325. '@babel/plugin-transform-modules-systemjs': registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.23.3_@babel+core@7.23.6
  1326. '@babel/plugin-transform-modules-umd': registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.23.3_@babel+core@7.23.6
  1327. '@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
  1328. '@babel/plugin-transform-new-target': registry.npmmirror.com/@babel/plugin-transform-new-target/7.23.3_@babel+core@7.23.6
  1329. '@babel/plugin-transform-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/7.23.4_@babel+core@7.23.6
  1330. '@babel/plugin-transform-numeric-separator': registry.npmmirror.com/@babel/plugin-transform-numeric-separator/7.23.4_@babel+core@7.23.6
  1331. '@babel/plugin-transform-object-rest-spread': registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/7.23.4_@babel+core@7.23.6
  1332. '@babel/plugin-transform-object-super': registry.npmmirror.com/@babel/plugin-transform-object-super/7.23.3_@babel+core@7.23.6
  1333. '@babel/plugin-transform-optional-catch-binding': registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/7.23.4_@babel+core@7.23.6
  1334. '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4_@babel+core@7.23.6
  1335. '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3_@babel+core@7.23.6
  1336. '@babel/plugin-transform-private-methods': registry.npmmirror.com/@babel/plugin-transform-private-methods/7.23.3_@babel+core@7.23.6
  1337. '@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
  1338. '@babel/plugin-transform-property-literals': registry.npmmirror.com/@babel/plugin-transform-property-literals/7.23.3_@babel+core@7.23.6
  1339. '@babel/plugin-transform-regenerator': registry.npmmirror.com/@babel/plugin-transform-regenerator/7.23.3_@babel+core@7.23.6
  1340. '@babel/plugin-transform-reserved-words': registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.23.3_@babel+core@7.23.6
  1341. '@babel/plugin-transform-shorthand-properties': registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.23.3_@babel+core@7.23.6
  1342. '@babel/plugin-transform-spread': registry.npmmirror.com/@babel/plugin-transform-spread/7.23.3_@babel+core@7.23.6
  1343. '@babel/plugin-transform-sticky-regex': registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.23.3_@babel+core@7.23.6
  1344. '@babel/plugin-transform-template-literals': registry.npmmirror.com/@babel/plugin-transform-template-literals/7.23.3_@babel+core@7.23.6
  1345. '@babel/plugin-transform-typeof-symbol': registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.23.3_@babel+core@7.23.6
  1346. '@babel/plugin-transform-unicode-escapes': registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.23.3_@babel+core@7.23.6
  1347. '@babel/plugin-transform-unicode-property-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/7.23.3_@babel+core@7.23.6
  1348. '@babel/plugin-transform-unicode-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.23.3_@babel+core@7.23.6
  1349. '@babel/plugin-transform-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/7.23.3_@babel+core@7.23.6
  1350. '@babel/preset-modules': registry.npmmirror.com/@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.23.6
  1351. babel-plugin-polyfill-corejs2: registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.4.7_@babel+core@7.23.6
  1352. babel-plugin-polyfill-corejs3: registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.8.7_@babel+core@7.23.6
  1353. babel-plugin-polyfill-regenerator: registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.5.4_@babel+core@7.23.6
  1354. core-js-compat: registry.npmmirror.com/core-js-compat/3.34.0
  1355. semver: registry.npmmirror.com/semver/6.3.1
  1356. transitivePeerDependencies:
  1357. - supports-color
  1358. dev: true
  1359. registry.npmmirror.com/@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.23.6:
  1360. 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}
  1361. id: registry.npmmirror.com/@babel/preset-modules/0.1.6-no-external-plugins
  1362. name: '@babel/preset-modules'
  1363. version: 0.1.6-no-external-plugins
  1364. peerDependencies:
  1365. '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
  1366. dependencies:
  1367. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1368. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1369. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  1370. esutils: registry.npmmirror.com/esutils/2.0.3
  1371. dev: true
  1372. registry.npmmirror.com/@babel/preset-typescript/7.23.3_@babel+core@7.23.6:
  1373. 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}
  1374. id: registry.npmmirror.com/@babel/preset-typescript/7.23.3
  1375. name: '@babel/preset-typescript'
  1376. version: 7.23.3
  1377. engines: {node: '>=6.9.0'}
  1378. peerDependencies:
  1379. '@babel/core': ^7.0.0-0
  1380. dependencies:
  1381. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  1382. '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
  1383. '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.23.5
  1384. '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.23.3_@babel+core@7.23.6
  1385. '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.23.3_@babel+core@7.23.6
  1386. '@babel/plugin-transform-typescript': registry.npmmirror.com/@babel/plugin-transform-typescript/7.23.6_@babel+core@7.23.6
  1387. dev: false
  1388. registry.npmmirror.com/@babel/regjsgen/0.8.0:
  1389. 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}
  1390. name: '@babel/regjsgen'
  1391. version: 0.8.0
  1392. dev: true
  1393. registry.npmmirror.com/@babel/runtime/7.23.6:
  1394. resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.23.6.tgz}
  1395. name: '@babel/runtime'
  1396. version: 7.23.6
  1397. engines: {node: '>=6.9.0'}
  1398. dependencies:
  1399. regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.14.0
  1400. dev: true
  1401. registry.npmmirror.com/@babel/template/7.22.15:
  1402. resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.22.15.tgz}
  1403. name: '@babel/template'
  1404. version: 7.22.15
  1405. engines: {node: '>=6.9.0'}
  1406. dependencies:
  1407. '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.23.5
  1408. '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
  1409. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  1410. registry.npmmirror.com/@babel/traverse/7.23.6:
  1411. resolution: {integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.23.6.tgz}
  1412. name: '@babel/traverse'
  1413. version: 7.23.6
  1414. engines: {node: '>=6.9.0'}
  1415. dependencies:
  1416. '@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.23.5
  1417. '@babel/generator': registry.npmmirror.com/@babel/generator/7.23.6
  1418. '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
  1419. '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
  1420. '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.22.5
  1421. '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
  1422. '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
  1423. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  1424. debug: registry.npmmirror.com/debug/4.3.4
  1425. globals: registry.npmmirror.com/globals/11.12.0
  1426. transitivePeerDependencies:
  1427. - supports-color
  1428. registry.npmmirror.com/@babel/types/7.23.6:
  1429. resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.23.6.tgz}
  1430. name: '@babel/types'
  1431. version: 7.23.6
  1432. engines: {node: '>=6.9.0'}
  1433. dependencies:
  1434. '@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser/7.23.4
  1435. '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
  1436. to-fast-properties: registry.npmmirror.com/to-fast-properties/2.0.0
  1437. registry.npmmirror.com/@esbuild/android-arm/0.19.9:
  1438. resolution: {integrity: sha512-jkYjjq7SdsWuNI6b5quymW0oC83NN5FdRPuCbs9HZ02mfVdAP8B8eeqLSYU3gb6OJEaY5CQabtTFbqBf26H3GA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.19.9.tgz}
  1439. name: '@esbuild/android-arm'
  1440. version: 0.19.9
  1441. engines: {node: '>=12'}
  1442. cpu: [arm]
  1443. os: [android]
  1444. requiresBuild: true
  1445. optional: true
  1446. registry.npmmirror.com/@esbuild/android-arm64/0.19.9:
  1447. 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}
  1448. name: '@esbuild/android-arm64'
  1449. version: 0.19.9
  1450. engines: {node: '>=12'}
  1451. cpu: [arm64]
  1452. os: [android]
  1453. requiresBuild: true
  1454. optional: true
  1455. registry.npmmirror.com/@esbuild/android-x64/0.19.9:
  1456. 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}
  1457. name: '@esbuild/android-x64'
  1458. version: 0.19.9
  1459. engines: {node: '>=12'}
  1460. cpu: [x64]
  1461. os: [android]
  1462. requiresBuild: true
  1463. optional: true
  1464. registry.npmmirror.com/@esbuild/darwin-arm64/0.19.9:
  1465. 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}
  1466. name: '@esbuild/darwin-arm64'
  1467. version: 0.19.9
  1468. engines: {node: '>=12'}
  1469. cpu: [arm64]
  1470. os: [darwin]
  1471. requiresBuild: true
  1472. optional: true
  1473. registry.npmmirror.com/@esbuild/darwin-x64/0.19.9:
  1474. resolution: {integrity: sha512-vE0VotmNTQaTdX0Q9dOHmMTao6ObjyPm58CHZr1UK7qpNleQyxlFlNCaHsHx6Uqv86VgPmR4o2wdNq3dP1qyDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.19.9.tgz}
  1475. name: '@esbuild/darwin-x64'
  1476. version: 0.19.9
  1477. engines: {node: '>=12'}
  1478. cpu: [x64]
  1479. os: [darwin]
  1480. requiresBuild: true
  1481. optional: true
  1482. registry.npmmirror.com/@esbuild/freebsd-arm64/0.19.9:
  1483. 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}
  1484. name: '@esbuild/freebsd-arm64'
  1485. version: 0.19.9
  1486. engines: {node: '>=12'}
  1487. cpu: [arm64]
  1488. os: [freebsd]
  1489. requiresBuild: true
  1490. optional: true
  1491. registry.npmmirror.com/@esbuild/freebsd-x64/0.19.9:
  1492. 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}
  1493. name: '@esbuild/freebsd-x64'
  1494. version: 0.19.9
  1495. engines: {node: '>=12'}
  1496. cpu: [x64]
  1497. os: [freebsd]
  1498. requiresBuild: true
  1499. optional: true
  1500. registry.npmmirror.com/@esbuild/linux-arm/0.19.9:
  1501. 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}
  1502. name: '@esbuild/linux-arm'
  1503. version: 0.19.9
  1504. engines: {node: '>=12'}
  1505. cpu: [arm]
  1506. os: [linux]
  1507. requiresBuild: true
  1508. optional: true
  1509. registry.npmmirror.com/@esbuild/linux-arm64/0.19.9:
  1510. 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}
  1511. name: '@esbuild/linux-arm64'
  1512. version: 0.19.9
  1513. engines: {node: '>=12'}
  1514. cpu: [arm64]
  1515. os: [linux]
  1516. requiresBuild: true
  1517. optional: true
  1518. registry.npmmirror.com/@esbuild/linux-ia32/0.19.9:
  1519. 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}
  1520. name: '@esbuild/linux-ia32'
  1521. version: 0.19.9
  1522. engines: {node: '>=12'}
  1523. cpu: [ia32]
  1524. os: [linux]
  1525. requiresBuild: true
  1526. optional: true
  1527. registry.npmmirror.com/@esbuild/linux-loong64/0.19.9:
  1528. 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}
  1529. name: '@esbuild/linux-loong64'
  1530. version: 0.19.9
  1531. engines: {node: '>=12'}
  1532. cpu: [loong64]
  1533. os: [linux]
  1534. requiresBuild: true
  1535. optional: true
  1536. registry.npmmirror.com/@esbuild/linux-mips64el/0.19.9:
  1537. 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}
  1538. name: '@esbuild/linux-mips64el'
  1539. version: 0.19.9
  1540. engines: {node: '>=12'}
  1541. cpu: [mips64el]
  1542. os: [linux]
  1543. requiresBuild: true
  1544. optional: true
  1545. registry.npmmirror.com/@esbuild/linux-ppc64/0.19.9:
  1546. 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}
  1547. name: '@esbuild/linux-ppc64'
  1548. version: 0.19.9
  1549. engines: {node: '>=12'}
  1550. cpu: [ppc64]
  1551. os: [linux]
  1552. requiresBuild: true
  1553. optional: true
  1554. registry.npmmirror.com/@esbuild/linux-riscv64/0.19.9:
  1555. 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}
  1556. name: '@esbuild/linux-riscv64'
  1557. version: 0.19.9
  1558. engines: {node: '>=12'}
  1559. cpu: [riscv64]
  1560. os: [linux]
  1561. requiresBuild: true
  1562. optional: true
  1563. registry.npmmirror.com/@esbuild/linux-s390x/0.19.9:
  1564. 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}
  1565. name: '@esbuild/linux-s390x'
  1566. version: 0.19.9
  1567. engines: {node: '>=12'}
  1568. cpu: [s390x]
  1569. os: [linux]
  1570. requiresBuild: true
  1571. optional: true
  1572. registry.npmmirror.com/@esbuild/linux-x64/0.19.9:
  1573. 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}
  1574. name: '@esbuild/linux-x64'
  1575. version: 0.19.9
  1576. engines: {node: '>=12'}
  1577. cpu: [x64]
  1578. os: [linux]
  1579. requiresBuild: true
  1580. optional: true
  1581. registry.npmmirror.com/@esbuild/netbsd-x64/0.19.9:
  1582. 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}
  1583. name: '@esbuild/netbsd-x64'
  1584. version: 0.19.9
  1585. engines: {node: '>=12'}
  1586. cpu: [x64]
  1587. os: [netbsd]
  1588. requiresBuild: true
  1589. optional: true
  1590. registry.npmmirror.com/@esbuild/openbsd-x64/0.19.9:
  1591. 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}
  1592. name: '@esbuild/openbsd-x64'
  1593. version: 0.19.9
  1594. engines: {node: '>=12'}
  1595. cpu: [x64]
  1596. os: [openbsd]
  1597. requiresBuild: true
  1598. optional: true
  1599. registry.npmmirror.com/@esbuild/sunos-x64/0.19.9:
  1600. 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}
  1601. name: '@esbuild/sunos-x64'
  1602. version: 0.19.9
  1603. engines: {node: '>=12'}
  1604. cpu: [x64]
  1605. os: [sunos]
  1606. requiresBuild: true
  1607. optional: true
  1608. registry.npmmirror.com/@esbuild/win32-arm64/0.19.9:
  1609. 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}
  1610. name: '@esbuild/win32-arm64'
  1611. version: 0.19.9
  1612. engines: {node: '>=12'}
  1613. cpu: [arm64]
  1614. os: [win32]
  1615. requiresBuild: true
  1616. optional: true
  1617. registry.npmmirror.com/@esbuild/win32-ia32/0.19.9:
  1618. 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}
  1619. name: '@esbuild/win32-ia32'
  1620. version: 0.19.9
  1621. engines: {node: '>=12'}
  1622. cpu: [ia32]
  1623. os: [win32]
  1624. requiresBuild: true
  1625. optional: true
  1626. registry.npmmirror.com/@esbuild/win32-x64/0.19.9:
  1627. 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}
  1628. name: '@esbuild/win32-x64'
  1629. version: 0.19.9
  1630. engines: {node: '>=12'}
  1631. cpu: [x64]
  1632. os: [win32]
  1633. requiresBuild: true
  1634. optional: true
  1635. registry.npmmirror.com/@iconify/types/2.0.0:
  1636. 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}
  1637. name: '@iconify/types'
  1638. version: 2.0.0
  1639. dev: false
  1640. registry.npmmirror.com/@iconify/utils/2.1.13:
  1641. resolution: {integrity: sha512-6uWvJIo715xYRy1KmCCyZYW0YYkLjaojEExoEkxpOHKhi9cyHW8hVKo+m8zrxzNVSqjUx9OuVRa2BWXeXfkp5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@iconify/utils/-/utils-2.1.13.tgz}
  1642. name: '@iconify/utils'
  1643. version: 2.1.13
  1644. dependencies:
  1645. '@antfu/install-pkg': registry.npmmirror.com/@antfu/install-pkg/0.1.1
  1646. '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
  1647. '@iconify/types': registry.npmmirror.com/@iconify/types/2.0.0
  1648. debug: registry.npmmirror.com/debug/4.3.4
  1649. kolorist: registry.npmmirror.com/kolorist/1.8.0
  1650. local-pkg: registry.npmmirror.com/local-pkg/0.4.3
  1651. transitivePeerDependencies:
  1652. - supports-color
  1653. dev: false
  1654. registry.npmmirror.com/@jridgewell/gen-mapping/0.3.3:
  1655. 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}
  1656. name: '@jridgewell/gen-mapping'
  1657. version: 0.3.3
  1658. engines: {node: '>=6.0.0'}
  1659. dependencies:
  1660. '@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array/1.1.2
  1661. '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.15
  1662. '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20
  1663. registry.npmmirror.com/@jridgewell/resolve-uri/3.1.1:
  1664. 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}
  1665. name: '@jridgewell/resolve-uri'
  1666. version: 3.1.1
  1667. engines: {node: '>=6.0.0'}
  1668. registry.npmmirror.com/@jridgewell/set-array/1.1.2:
  1669. 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}
  1670. name: '@jridgewell/set-array'
  1671. version: 1.1.2
  1672. engines: {node: '>=6.0.0'}
  1673. registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.15:
  1674. 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}
  1675. name: '@jridgewell/sourcemap-codec'
  1676. version: 1.4.15
  1677. registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20:
  1678. 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}
  1679. name: '@jridgewell/trace-mapping'
  1680. version: 0.3.20
  1681. dependencies:
  1682. '@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri/3.1.1
  1683. '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.15
  1684. registry.npmmirror.com/@nodelib/fs.scandir/2.1.5:
  1685. 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}
  1686. name: '@nodelib/fs.scandir'
  1687. version: 2.1.5
  1688. engines: {node: '>= 8'}
  1689. dependencies:
  1690. '@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
  1691. run-parallel: registry.npmmirror.com/run-parallel/1.2.0
  1692. registry.npmmirror.com/@nodelib/fs.stat/2.0.5:
  1693. 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}
  1694. name: '@nodelib/fs.stat'
  1695. version: 2.0.5
  1696. engines: {node: '>= 8'}
  1697. registry.npmmirror.com/@nodelib/fs.walk/1.2.8:
  1698. 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}
  1699. name: '@nodelib/fs.walk'
  1700. version: 1.2.8
  1701. engines: {node: '>= 8'}
  1702. dependencies:
  1703. '@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir/2.1.5
  1704. fastq: registry.npmmirror.com/fastq/1.15.0
  1705. registry.npmmirror.com/@polka/url/1.0.0-next.24:
  1706. 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}
  1707. name: '@polka/url'
  1708. version: 1.0.0-next.24
  1709. registry.npmmirror.com/@rollup/pluginutils/5.1.0:
  1710. resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz}
  1711. name: '@rollup/pluginutils'
  1712. version: 5.1.0
  1713. engines: {node: '>=14.0.0'}
  1714. peerDependencies:
  1715. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  1716. peerDependenciesMeta:
  1717. rollup:
  1718. optional: true
  1719. dependencies:
  1720. '@types/estree': registry.npmmirror.com/@types/estree/1.0.5
  1721. estree-walker: registry.npmmirror.com/estree-walker/2.0.2
  1722. picomatch: registry.npmmirror.com/picomatch/2.3.1
  1723. registry.npmmirror.com/@rollup/rollup-android-arm-eabi/4.8.0:
  1724. 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}
  1725. name: '@rollup/rollup-android-arm-eabi'
  1726. version: 4.8.0
  1727. cpu: [arm]
  1728. os: [android]
  1729. requiresBuild: true
  1730. optional: true
  1731. registry.npmmirror.com/@rollup/rollup-android-arm64/4.8.0:
  1732. 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}
  1733. name: '@rollup/rollup-android-arm64'
  1734. version: 4.8.0
  1735. cpu: [arm64]
  1736. os: [android]
  1737. requiresBuild: true
  1738. optional: true
  1739. registry.npmmirror.com/@rollup/rollup-darwin-arm64/4.8.0:
  1740. 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}
  1741. name: '@rollup/rollup-darwin-arm64'
  1742. version: 4.8.0
  1743. cpu: [arm64]
  1744. os: [darwin]
  1745. requiresBuild: true
  1746. optional: true
  1747. registry.npmmirror.com/@rollup/rollup-darwin-x64/4.8.0:
  1748. 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}
  1749. name: '@rollup/rollup-darwin-x64'
  1750. version: 4.8.0
  1751. cpu: [x64]
  1752. os: [darwin]
  1753. requiresBuild: true
  1754. optional: true
  1755. registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/4.8.0:
  1756. 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}
  1757. name: '@rollup/rollup-linux-arm-gnueabihf'
  1758. version: 4.8.0
  1759. cpu: [arm]
  1760. os: [linux]
  1761. requiresBuild: true
  1762. optional: true
  1763. registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/4.8.0:
  1764. 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}
  1765. name: '@rollup/rollup-linux-arm64-gnu'
  1766. version: 4.8.0
  1767. cpu: [arm64]
  1768. os: [linux]
  1769. libc: [glibc]
  1770. requiresBuild: true
  1771. optional: true
  1772. registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/4.8.0:
  1773. 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}
  1774. name: '@rollup/rollup-linux-arm64-musl'
  1775. version: 4.8.0
  1776. cpu: [arm64]
  1777. os: [linux]
  1778. libc: [musl]
  1779. requiresBuild: true
  1780. optional: true
  1781. registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/4.8.0:
  1782. 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}
  1783. name: '@rollup/rollup-linux-riscv64-gnu'
  1784. version: 4.8.0
  1785. cpu: [riscv64]
  1786. os: [linux]
  1787. libc: [glibc]
  1788. requiresBuild: true
  1789. optional: true
  1790. registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/4.8.0:
  1791. 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}
  1792. name: '@rollup/rollup-linux-x64-gnu'
  1793. version: 4.8.0
  1794. cpu: [x64]
  1795. os: [linux]
  1796. libc: [glibc]
  1797. requiresBuild: true
  1798. optional: true
  1799. registry.npmmirror.com/@rollup/rollup-linux-x64-musl/4.8.0:
  1800. 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}
  1801. name: '@rollup/rollup-linux-x64-musl'
  1802. version: 4.8.0
  1803. cpu: [x64]
  1804. os: [linux]
  1805. libc: [musl]
  1806. requiresBuild: true
  1807. optional: true
  1808. registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/4.8.0:
  1809. 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}
  1810. name: '@rollup/rollup-win32-arm64-msvc'
  1811. version: 4.8.0
  1812. cpu: [arm64]
  1813. os: [win32]
  1814. requiresBuild: true
  1815. optional: true
  1816. registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/4.8.0:
  1817. 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}
  1818. name: '@rollup/rollup-win32-ia32-msvc'
  1819. version: 4.8.0
  1820. cpu: [ia32]
  1821. os: [win32]
  1822. requiresBuild: true
  1823. optional: true
  1824. registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/4.8.0:
  1825. 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}
  1826. name: '@rollup/rollup-win32-x64-msvc'
  1827. version: 4.8.0
  1828. cpu: [x64]
  1829. os: [win32]
  1830. requiresBuild: true
  1831. optional: true
  1832. registry.npmmirror.com/@types/debug/4.1.12:
  1833. 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}
  1834. name: '@types/debug'
  1835. version: 4.1.12
  1836. dependencies:
  1837. '@types/ms': registry.npmmirror.com/@types/ms/0.7.34
  1838. dev: false
  1839. registry.npmmirror.com/@types/estree/1.0.5:
  1840. 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}
  1841. name: '@types/estree'
  1842. version: 1.0.5
  1843. registry.npmmirror.com/@types/ms/0.7.34:
  1844. resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/ms/-/ms-0.7.34.tgz}
  1845. name: '@types/ms'
  1846. version: 0.7.34
  1847. dev: false
  1848. registry.npmmirror.com/@types/web-bluetooth/0.0.20:
  1849. 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}
  1850. name: '@types/web-bluetooth'
  1851. version: 0.0.20
  1852. registry.npmmirror.com/@unocss/astro/0.58.0_vite@5.0.8:
  1853. resolution: {integrity: sha512-df+tEFO5eKXjQOwSWQhS9IdjD0sfLHLtn8U09sEKR2Nmh5CvpwyBxmvLQgOCilPou7ehmyKfsyGRLZg7IMp+Ew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/astro/-/astro-0.58.0.tgz}
  1854. id: registry.npmmirror.com/@unocss/astro/0.58.0
  1855. name: '@unocss/astro'
  1856. version: 0.58.0
  1857. peerDependencies:
  1858. vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
  1859. peerDependenciesMeta:
  1860. vite:
  1861. optional: true
  1862. dependencies:
  1863. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1864. '@unocss/reset': registry.npmmirror.com/@unocss/reset/0.58.0
  1865. '@unocss/vite': registry.npmmirror.com/@unocss/vite/0.58.0_vite@5.0.8
  1866. vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
  1867. transitivePeerDependencies:
  1868. - rollup
  1869. dev: false
  1870. registry.npmmirror.com/@unocss/cli/0.58.0:
  1871. resolution: {integrity: sha512-rhsrDBxAVueygMcAbMkbuvsHbBL2rG6N96LllYwHn16FLgOE3Sf4JW1/LlNjQje3BtwMMtbSCCAeu2SryFhzbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/cli/-/cli-0.58.0.tgz}
  1872. name: '@unocss/cli'
  1873. version: 0.58.0
  1874. engines: {node: '>=14'}
  1875. hasBin: true
  1876. dependencies:
  1877. '@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.2.1
  1878. '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
  1879. '@unocss/config': registry.npmmirror.com/@unocss/config/0.58.0
  1880. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1881. '@unocss/preset-uno': registry.npmmirror.com/@unocss/preset-uno/0.58.0
  1882. cac: registry.npmmirror.com/cac/6.7.14
  1883. chokidar: registry.npmmirror.com/chokidar/3.5.3
  1884. colorette: registry.npmmirror.com/colorette/2.0.20
  1885. consola: registry.npmmirror.com/consola/3.2.3
  1886. fast-glob: registry.npmmirror.com/fast-glob/3.3.2
  1887. magic-string: registry.npmmirror.com/magic-string/0.30.5
  1888. pathe: registry.npmmirror.com/pathe/1.1.1
  1889. perfect-debounce: registry.npmmirror.com/perfect-debounce/1.0.0
  1890. transitivePeerDependencies:
  1891. - rollup
  1892. dev: false
  1893. registry.npmmirror.com/@unocss/config/0.58.0:
  1894. resolution: {integrity: sha512-WQD29gCZ7cajnMzezD1PRW0qQSxo/C6PX9ktygwhdinFx9nXuLZnKFOz65TiI8y48e53g1i7ivvgY3m4Sq5mIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/config/-/config-0.58.0.tgz}
  1895. name: '@unocss/config'
  1896. version: 0.58.0
  1897. engines: {node: '>=14'}
  1898. dependencies:
  1899. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1900. unconfig: registry.npmmirror.com/unconfig/0.3.11
  1901. dev: false
  1902. registry.npmmirror.com/@unocss/core/0.58.0:
  1903. 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}
  1904. name: '@unocss/core'
  1905. version: 0.58.0
  1906. dev: false
  1907. registry.npmmirror.com/@unocss/extractor-arbitrary-variants/0.58.0:
  1908. 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}
  1909. name: '@unocss/extractor-arbitrary-variants'
  1910. version: 0.58.0
  1911. dependencies:
  1912. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1913. dev: false
  1914. registry.npmmirror.com/@unocss/inspector/0.58.0:
  1915. 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}
  1916. name: '@unocss/inspector'
  1917. version: 0.58.0
  1918. dependencies:
  1919. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1920. '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
  1921. gzip-size: registry.npmmirror.com/gzip-size/6.0.0
  1922. sirv: registry.npmmirror.com/sirv/2.0.3
  1923. dev: false
  1924. registry.npmmirror.com/@unocss/postcss/0.58.0:
  1925. resolution: {integrity: sha512-2hAwLbfUFqysi8FN1cn3xkHy5GhLMlYy6W4NrAZ2ws7F2MKpsCT2xCj7dT5cI2tW8ulD2YoVbKH15dBhNsMNUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/postcss/-/postcss-0.58.0.tgz}
  1926. name: '@unocss/postcss'
  1927. version: 0.58.0
  1928. engines: {node: '>=14'}
  1929. dependencies:
  1930. '@unocss/config': registry.npmmirror.com/@unocss/config/0.58.0
  1931. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1932. '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
  1933. css-tree: registry.npmmirror.com/css-tree/2.3.1
  1934. fast-glob: registry.npmmirror.com/fast-glob/3.3.2
  1935. magic-string: registry.npmmirror.com/magic-string/0.30.5
  1936. postcss: registry.npmmirror.com/postcss/8.4.32
  1937. dev: false
  1938. registry.npmmirror.com/@unocss/preset-attributify/0.58.0:
  1939. resolution: {integrity: sha512-Ew78noYes12K9gk4dF36MkjpiIqTi1XVqcniiAzxCkzuctxN4B57vW3LVTwjInGmWNNKWN3UNR4q1o0VxH4xJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/preset-attributify/-/preset-attributify-0.58.0.tgz}
  1940. name: '@unocss/preset-attributify'
  1941. version: 0.58.0
  1942. dependencies:
  1943. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1944. dev: false
  1945. registry.npmmirror.com/@unocss/preset-icons/0.58.0:
  1946. 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}
  1947. name: '@unocss/preset-icons'
  1948. version: 0.58.0
  1949. dependencies:
  1950. '@iconify/utils': registry.npmmirror.com/@iconify/utils/2.1.13
  1951. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1952. ofetch: registry.npmmirror.com/ofetch/1.3.3
  1953. transitivePeerDependencies:
  1954. - supports-color
  1955. dev: false
  1956. registry.npmmirror.com/@unocss/preset-mini/0.58.0:
  1957. 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}
  1958. name: '@unocss/preset-mini'
  1959. version: 0.58.0
  1960. dependencies:
  1961. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1962. '@unocss/extractor-arbitrary-variants': registry.npmmirror.com/@unocss/extractor-arbitrary-variants/0.58.0
  1963. '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
  1964. dev: false
  1965. registry.npmmirror.com/@unocss/preset-tagify/0.58.0:
  1966. 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}
  1967. name: '@unocss/preset-tagify'
  1968. version: 0.58.0
  1969. dependencies:
  1970. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1971. dev: false
  1972. registry.npmmirror.com/@unocss/preset-typography/0.58.0:
  1973. 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}
  1974. name: '@unocss/preset-typography'
  1975. version: 0.58.0
  1976. dependencies:
  1977. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1978. '@unocss/preset-mini': registry.npmmirror.com/@unocss/preset-mini/0.58.0
  1979. dev: false
  1980. registry.npmmirror.com/@unocss/preset-uno/0.58.0:
  1981. 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}
  1982. name: '@unocss/preset-uno'
  1983. version: 0.58.0
  1984. dependencies:
  1985. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1986. '@unocss/preset-mini': registry.npmmirror.com/@unocss/preset-mini/0.58.0
  1987. '@unocss/preset-wind': registry.npmmirror.com/@unocss/preset-wind/0.58.0
  1988. '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
  1989. dev: false
  1990. registry.npmmirror.com/@unocss/preset-web-fonts/0.58.0:
  1991. 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}
  1992. name: '@unocss/preset-web-fonts'
  1993. version: 0.58.0
  1994. dependencies:
  1995. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  1996. ofetch: registry.npmmirror.com/ofetch/1.3.3
  1997. dev: false
  1998. registry.npmmirror.com/@unocss/preset-wind/0.58.0:
  1999. 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}
  2000. name: '@unocss/preset-wind'
  2001. version: 0.58.0
  2002. dependencies:
  2003. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  2004. '@unocss/preset-mini': registry.npmmirror.com/@unocss/preset-mini/0.58.0
  2005. '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
  2006. dev: false
  2007. registry.npmmirror.com/@unocss/reset/0.58.0:
  2008. resolution: {integrity: sha512-UVZ5kz37JGbwAA06k/gjKYcekcTwi6oIhev1EpTtCvHLL6XYcYqcwb/u4Wjzprd3L3lxDGYXvGdjREGm2u7vbQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/reset/-/reset-0.58.0.tgz}
  2009. name: '@unocss/reset'
  2010. version: 0.58.0
  2011. dev: false
  2012. registry.npmmirror.com/@unocss/rule-utils/0.58.0:
  2013. 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}
  2014. name: '@unocss/rule-utils'
  2015. version: 0.58.0
  2016. engines: {node: '>=14'}
  2017. dependencies:
  2018. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  2019. magic-string: registry.npmmirror.com/magic-string/0.30.5
  2020. dev: false
  2021. registry.npmmirror.com/@unocss/scope/0.58.0:
  2022. resolution: {integrity: sha512-XgUXZJvbxWSRC/DNOWI5DYdR6Nd6IZxsE5ls3AFA5msgtk5OH4YNQELLMabQw7xbRbU/fftlRJa3vncSfOyl6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/scope/-/scope-0.58.0.tgz}
  2023. name: '@unocss/scope'
  2024. version: 0.58.0
  2025. dev: false
  2026. registry.npmmirror.com/@unocss/transformer-attributify-jsx-babel/0.58.0:
  2027. 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}
  2028. name: '@unocss/transformer-attributify-jsx-babel'
  2029. version: 0.58.0
  2030. dependencies:
  2031. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  2032. '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.23.3_@babel+core@7.23.6
  2033. '@babel/preset-typescript': registry.npmmirror.com/@babel/preset-typescript/7.23.3_@babel+core@7.23.6
  2034. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  2035. transitivePeerDependencies:
  2036. - supports-color
  2037. dev: false
  2038. registry.npmmirror.com/@unocss/transformer-attributify-jsx/0.58.0:
  2039. 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}
  2040. name: '@unocss/transformer-attributify-jsx'
  2041. version: 0.58.0
  2042. dependencies:
  2043. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  2044. dev: false
  2045. registry.npmmirror.com/@unocss/transformer-compile-class/0.58.0:
  2046. 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}
  2047. name: '@unocss/transformer-compile-class'
  2048. version: 0.58.0
  2049. dependencies:
  2050. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  2051. dev: false
  2052. registry.npmmirror.com/@unocss/transformer-directives/0.58.0:
  2053. 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}
  2054. name: '@unocss/transformer-directives'
  2055. version: 0.58.0
  2056. dependencies:
  2057. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  2058. '@unocss/rule-utils': registry.npmmirror.com/@unocss/rule-utils/0.58.0
  2059. css-tree: registry.npmmirror.com/css-tree/2.3.1
  2060. dev: false
  2061. registry.npmmirror.com/@unocss/transformer-variant-group/0.58.0:
  2062. 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}
  2063. name: '@unocss/transformer-variant-group'
  2064. version: 0.58.0
  2065. dependencies:
  2066. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  2067. dev: false
  2068. registry.npmmirror.com/@unocss/vite/0.58.0_vite@5.0.8:
  2069. resolution: {integrity: sha512-OCUOLMSOBEtXOEyBbAvMI3/xdR175BWRzmvV9Wc34ANZclEvCdVH8+WU725ibjY4VT0gVIuX68b13fhXdHV41A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@unocss/vite/-/vite-0.58.0.tgz}
  2070. id: registry.npmmirror.com/@unocss/vite/0.58.0
  2071. name: '@unocss/vite'
  2072. version: 0.58.0
  2073. peerDependencies:
  2074. vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
  2075. dependencies:
  2076. '@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.2.1
  2077. '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
  2078. '@unocss/config': registry.npmmirror.com/@unocss/config/0.58.0
  2079. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  2080. '@unocss/inspector': registry.npmmirror.com/@unocss/inspector/0.58.0
  2081. '@unocss/scope': registry.npmmirror.com/@unocss/scope/0.58.0
  2082. '@unocss/transformer-directives': registry.npmmirror.com/@unocss/transformer-directives/0.58.0
  2083. chokidar: registry.npmmirror.com/chokidar/3.5.3
  2084. fast-glob: registry.npmmirror.com/fast-glob/3.3.2
  2085. magic-string: registry.npmmirror.com/magic-string/0.30.5
  2086. vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
  2087. transitivePeerDependencies:
  2088. - rollup
  2089. dev: false
  2090. registry.npmmirror.com/@vant/popperjs/1.3.0:
  2091. 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}
  2092. name: '@vant/popperjs'
  2093. version: 1.3.0
  2094. dev: false
  2095. registry.npmmirror.com/@vant/use/1.6.0_vue@3.3.11:
  2096. 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}
  2097. id: registry.npmmirror.com/@vant/use/1.6.0
  2098. name: '@vant/use'
  2099. version: 1.6.0
  2100. peerDependencies:
  2101. vue: ^3.0.0
  2102. dependencies:
  2103. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2104. dev: false
  2105. registry.npmmirror.com/@vitejs/plugin-legacy/4.1.1_vite@5.0.8:
  2106. 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}
  2107. id: registry.npmmirror.com/@vitejs/plugin-legacy/4.1.1
  2108. name: '@vitejs/plugin-legacy'
  2109. version: 4.1.1
  2110. engines: {node: ^14.18.0 || >=16.0.0}
  2111. peerDependencies:
  2112. terser: ^5.4.0
  2113. vite: ^4.0.0
  2114. dependencies:
  2115. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  2116. '@babel/preset-env': registry.npmmirror.com/@babel/preset-env/7.23.6_@babel+core@7.23.6
  2117. browserslist: registry.npmmirror.com/browserslist/4.22.2
  2118. core-js: registry.npmmirror.com/core-js/3.34.0
  2119. magic-string: registry.npmmirror.com/magic-string/0.30.5
  2120. regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.13.11
  2121. systemjs: registry.npmmirror.com/systemjs/6.14.2
  2122. vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
  2123. transitivePeerDependencies:
  2124. - supports-color
  2125. dev: true
  2126. registry.npmmirror.com/@vitejs/plugin-vue/4.5.2_vite@5.0.8+vue@3.3.11:
  2127. 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}
  2128. id: registry.npmmirror.com/@vitejs/plugin-vue/4.5.2
  2129. name: '@vitejs/plugin-vue'
  2130. version: 4.5.2
  2131. engines: {node: ^14.18.0 || >=16.0.0}
  2132. peerDependencies:
  2133. vite: ^4.0.0 || ^5.0.0
  2134. vue: ^3.2.25
  2135. dependencies:
  2136. vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
  2137. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2138. dev: true
  2139. registry.npmmirror.com/@volar/language-core/1.11.1:
  2140. 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}
  2141. name: '@volar/language-core'
  2142. version: 1.11.1
  2143. dependencies:
  2144. '@volar/source-map': registry.npmmirror.com/@volar/source-map/1.11.1
  2145. dev: true
  2146. registry.npmmirror.com/@volar/source-map/1.11.1:
  2147. 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}
  2148. name: '@volar/source-map'
  2149. version: 1.11.1
  2150. dependencies:
  2151. muggle-string: registry.npmmirror.com/muggle-string/0.3.1
  2152. dev: true
  2153. registry.npmmirror.com/@volar/typescript/1.11.1:
  2154. 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}
  2155. name: '@volar/typescript'
  2156. version: 1.11.1
  2157. dependencies:
  2158. '@volar/language-core': registry.npmmirror.com/@volar/language-core/1.11.1
  2159. path-browserify: registry.npmmirror.com/path-browserify/1.0.1
  2160. dev: true
  2161. registry.npmmirror.com/@vue-macros/api/0.9.1_vue@3.3.11:
  2162. 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}
  2163. id: registry.npmmirror.com/@vue-macros/api/0.9.1
  2164. name: '@vue-macros/api'
  2165. version: 0.9.1
  2166. engines: {node: '>=16.14.0'}
  2167. dependencies:
  2168. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  2169. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2170. resolve.exports: registry.npmmirror.com/resolve.exports/2.0.2
  2171. transitivePeerDependencies:
  2172. - rollup
  2173. - vue
  2174. dev: true
  2175. registry.npmmirror.com/@vue-macros/better-define/1.7.1_vue@3.3.11:
  2176. 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}
  2177. id: registry.npmmirror.com/@vue-macros/better-define/1.7.1
  2178. name: '@vue-macros/better-define'
  2179. version: 1.7.1
  2180. engines: {node: '>=16.14.0'}
  2181. dependencies:
  2182. '@vue-macros/api': registry.npmmirror.com/@vue-macros/api/0.9.1_vue@3.3.11
  2183. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2184. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2185. transitivePeerDependencies:
  2186. - rollup
  2187. - vue
  2188. dev: true
  2189. registry.npmmirror.com/@vue-macros/boolean-prop/0.3.1_vue@3.3.11:
  2190. 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}
  2191. id: registry.npmmirror.com/@vue-macros/boolean-prop/0.3.1
  2192. name: '@vue-macros/boolean-prop'
  2193. version: 0.3.1
  2194. engines: {node: '>=16.14.0'}
  2195. dependencies:
  2196. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2197. '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
  2198. transitivePeerDependencies:
  2199. - rollup
  2200. - vue
  2201. dev: true
  2202. registry.npmmirror.com/@vue-macros/chain-call/0.2.1_vue@3.3.11:
  2203. 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}
  2204. id: registry.npmmirror.com/@vue-macros/chain-call/0.2.1
  2205. name: '@vue-macros/chain-call'
  2206. version: 0.2.1
  2207. engines: {node: '>=16.14.0'}
  2208. dependencies:
  2209. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2210. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2211. transitivePeerDependencies:
  2212. - rollup
  2213. - vue
  2214. dev: true
  2215. registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11:
  2216. resolution: {integrity: sha512-4DZsPeQA/nBQDw2RkYAmH7KrFjJVrMdAhJhO1JCl1bbbFXCGeoGjXfkg9wHPppj47s2HpAB3GrqNwqVGbi12NQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue-macros/common/-/common-1.10.0.tgz}
  2217. id: registry.npmmirror.com/@vue-macros/common/1.10.0
  2218. name: '@vue-macros/common'
  2219. version: 1.10.0
  2220. engines: {node: '>=16.14.0'}
  2221. peerDependencies:
  2222. vue: ^2.7.0 || ^3.2.25
  2223. peerDependenciesMeta:
  2224. vue:
  2225. optional: true
  2226. dependencies:
  2227. '@babel/types': registry.npmmirror.com/@babel/types/7.23.6
  2228. '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
  2229. '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.3.11
  2230. ast-kit: registry.npmmirror.com/ast-kit/0.11.3
  2231. local-pkg: registry.npmmirror.com/local-pkg/0.5.0
  2232. magic-string-ast: registry.npmmirror.com/magic-string-ast/0.3.0
  2233. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2234. transitivePeerDependencies:
  2235. - rollup
  2236. dev: true
  2237. registry.npmmirror.com/@vue-macros/define-emit/0.2.1_vue@3.3.11:
  2238. 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}
  2239. id: registry.npmmirror.com/@vue-macros/define-emit/0.2.1
  2240. name: '@vue-macros/define-emit'
  2241. version: 0.2.1
  2242. engines: {node: '>=16.14.0'}
  2243. peerDependencies:
  2244. vue: ^2.7.0 || ^3.2.25
  2245. dependencies:
  2246. '@vue-macros/api': registry.npmmirror.com/@vue-macros/api/0.9.1_vue@3.3.11
  2247. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2248. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2249. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2250. transitivePeerDependencies:
  2251. - rollup
  2252. dev: true
  2253. registry.npmmirror.com/@vue-macros/define-models/1.2.1_skvchchimvsyroofndahiegrdi:
  2254. 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}
  2255. id: registry.npmmirror.com/@vue-macros/define-models/1.2.1
  2256. name: '@vue-macros/define-models'
  2257. version: 1.2.1
  2258. engines: {node: '>=16.14.0'}
  2259. peerDependencies:
  2260. '@vueuse/core': '>=9.0.0'
  2261. peerDependenciesMeta:
  2262. '@vueuse/core':
  2263. optional: true
  2264. dependencies:
  2265. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2266. '@vueuse/core': registry.npmmirror.com/@vueuse/core/10.7.0_vue@3.3.11
  2267. ast-walker-scope: registry.npmmirror.com/ast-walker-scope/0.5.0
  2268. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2269. transitivePeerDependencies:
  2270. - rollup
  2271. - vue
  2272. dev: true
  2273. registry.npmmirror.com/@vue-macros/define-prop/0.3.1_vue@3.3.11:
  2274. 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}
  2275. id: registry.npmmirror.com/@vue-macros/define-prop/0.3.1
  2276. name: '@vue-macros/define-prop'
  2277. version: 0.3.1
  2278. engines: {node: '>=16.14.0'}
  2279. peerDependencies:
  2280. vue: ^2.7.0 || ^3.2.25
  2281. dependencies:
  2282. '@vue-macros/api': registry.npmmirror.com/@vue-macros/api/0.9.1_vue@3.3.11
  2283. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2284. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2285. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2286. transitivePeerDependencies:
  2287. - rollup
  2288. dev: true
  2289. registry.npmmirror.com/@vue-macros/define-props-refs/1.2.1_vue@3.3.11:
  2290. 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}
  2291. id: registry.npmmirror.com/@vue-macros/define-props-refs/1.2.1
  2292. name: '@vue-macros/define-props-refs'
  2293. version: 1.2.1
  2294. engines: {node: '>=16.14.0'}
  2295. peerDependencies:
  2296. vue: ^2.7.0 || ^3.2.25
  2297. dependencies:
  2298. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2299. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2300. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2301. transitivePeerDependencies:
  2302. - rollup
  2303. dev: true
  2304. registry.npmmirror.com/@vue-macros/define-props/2.0.1_vpxk4enuzjo2mj7qqkh7tzvmae:
  2305. 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}
  2306. id: registry.npmmirror.com/@vue-macros/define-props/2.0.1
  2307. name: '@vue-macros/define-props'
  2308. version: 2.0.1
  2309. engines: {node: '>=16.14.0'}
  2310. peerDependencies:
  2311. '@vue-macros/reactivity-transform': ^0.4.1
  2312. vue: ^2.7.0 || ^3.2.25
  2313. dependencies:
  2314. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2315. '@vue-macros/reactivity-transform': registry.npmmirror.com/@vue-macros/reactivity-transform/0.4.1_vue@3.3.11
  2316. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2317. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2318. transitivePeerDependencies:
  2319. - rollup
  2320. dev: true
  2321. registry.npmmirror.com/@vue-macros/define-render/1.5.1_vue@3.3.11:
  2322. 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}
  2323. id: registry.npmmirror.com/@vue-macros/define-render/1.5.1
  2324. name: '@vue-macros/define-render'
  2325. version: 1.5.1
  2326. engines: {node: '>=16.14.0'}
  2327. peerDependencies:
  2328. vue: ^2.7.0 || ^3.0.0
  2329. dependencies:
  2330. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2331. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2332. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2333. transitivePeerDependencies:
  2334. - rollup
  2335. dev: true
  2336. registry.npmmirror.com/@vue-macros/define-slots/1.1.1_vue@3.3.11:
  2337. 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}
  2338. id: registry.npmmirror.com/@vue-macros/define-slots/1.1.1
  2339. name: '@vue-macros/define-slots'
  2340. version: 1.1.1
  2341. engines: {node: '>=16.14.0'}
  2342. peerDependencies:
  2343. vue: ^2.7.0 || ^3.0.0
  2344. dependencies:
  2345. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2346. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2347. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2348. transitivePeerDependencies:
  2349. - rollup
  2350. dev: true
  2351. registry.npmmirror.com/@vue-macros/devtools/0.2.0_ntk5c343sybimd4hibvldwklca:
  2352. 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}
  2353. id: registry.npmmirror.com/@vue-macros/devtools/0.2.0
  2354. name: '@vue-macros/devtools'
  2355. version: 0.2.0
  2356. engines: {node: '>=16.14.0'}
  2357. peerDependencies:
  2358. vite: ^4.0.0 || ^5.0.0-0
  2359. peerDependenciesMeta:
  2360. vite:
  2361. optional: true
  2362. dependencies:
  2363. sirv: registry.npmmirror.com/sirv/2.0.3
  2364. vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
  2365. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2366. transitivePeerDependencies:
  2367. - typescript
  2368. dev: true
  2369. registry.npmmirror.com/@vue-macros/export-expose/0.1.1_vue@3.3.11:
  2370. 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}
  2371. id: registry.npmmirror.com/@vue-macros/export-expose/0.1.1
  2372. name: '@vue-macros/export-expose'
  2373. version: 0.1.1
  2374. engines: {node: '>=16.14.0'}
  2375. peerDependencies:
  2376. vue: ^2.7.0 || ^3.2.25
  2377. dependencies:
  2378. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2379. '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.3.11
  2380. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2381. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2382. transitivePeerDependencies:
  2383. - rollup
  2384. dev: true
  2385. registry.npmmirror.com/@vue-macros/export-props/0.4.1_vue@3.3.11:
  2386. 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}
  2387. id: registry.npmmirror.com/@vue-macros/export-props/0.4.1
  2388. name: '@vue-macros/export-props'
  2389. version: 0.4.1
  2390. engines: {node: '>=16.14.0'}
  2391. peerDependencies:
  2392. vue: ^2.7.0 || ^3.2.25
  2393. dependencies:
  2394. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2395. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2396. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2397. transitivePeerDependencies:
  2398. - rollup
  2399. dev: true
  2400. registry.npmmirror.com/@vue-macros/export-render/0.2.1_vue@3.3.11:
  2401. 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}
  2402. id: registry.npmmirror.com/@vue-macros/export-render/0.2.1
  2403. name: '@vue-macros/export-render'
  2404. version: 0.2.1
  2405. engines: {node: '>=16.14.0'}
  2406. peerDependencies:
  2407. vue: ^2.7.0 || ^3.2.25
  2408. dependencies:
  2409. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2410. '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.3.11
  2411. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2412. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2413. transitivePeerDependencies:
  2414. - rollup
  2415. dev: true
  2416. registry.npmmirror.com/@vue-macros/hoist-static/1.5.1_vue@3.3.11:
  2417. 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}
  2418. id: registry.npmmirror.com/@vue-macros/hoist-static/1.5.1
  2419. name: '@vue-macros/hoist-static'
  2420. version: 1.5.1
  2421. engines: {node: '>=16.14.0'}
  2422. dependencies:
  2423. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2424. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2425. transitivePeerDependencies:
  2426. - rollup
  2427. - vue
  2428. dev: true
  2429. registry.npmmirror.com/@vue-macros/jsx-directive/0.8.1_vue@3.3.11:
  2430. 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}
  2431. id: registry.npmmirror.com/@vue-macros/jsx-directive/0.8.1
  2432. name: '@vue-macros/jsx-directive'
  2433. version: 0.8.1
  2434. engines: {node: '>=16.14.0'}
  2435. dependencies:
  2436. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2437. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2438. transitivePeerDependencies:
  2439. - rollup
  2440. - vue
  2441. dev: true
  2442. registry.npmmirror.com/@vue-macros/named-template/0.4.1_vue@3.3.11:
  2443. 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}
  2444. id: registry.npmmirror.com/@vue-macros/named-template/0.4.1
  2445. name: '@vue-macros/named-template'
  2446. version: 0.4.1
  2447. engines: {node: '>=16.14.0'}
  2448. dependencies:
  2449. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2450. '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
  2451. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2452. transitivePeerDependencies:
  2453. - rollup
  2454. - vue
  2455. dev: true
  2456. registry.npmmirror.com/@vue-macros/reactivity-transform/0.4.1_vue@3.3.11:
  2457. 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}
  2458. id: registry.npmmirror.com/@vue-macros/reactivity-transform/0.4.1
  2459. name: '@vue-macros/reactivity-transform'
  2460. version: 0.4.1
  2461. engines: {node: '>=16.14.0'}
  2462. peerDependencies:
  2463. vue: ^2.7.0 || ^3.2.25
  2464. dependencies:
  2465. '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
  2466. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2467. '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
  2468. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  2469. magic-string: registry.npmmirror.com/magic-string/0.30.5
  2470. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2471. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2472. transitivePeerDependencies:
  2473. - rollup
  2474. dev: true
  2475. registry.npmmirror.com/@vue-macros/setup-block/0.3.1_vue@3.3.11:
  2476. 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}
  2477. id: registry.npmmirror.com/@vue-macros/setup-block/0.3.1
  2478. name: '@vue-macros/setup-block'
  2479. version: 0.3.1
  2480. engines: {node: '>=16.14.0'}
  2481. dependencies:
  2482. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2483. '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
  2484. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2485. transitivePeerDependencies:
  2486. - rollup
  2487. - vue
  2488. dev: true
  2489. registry.npmmirror.com/@vue-macros/setup-component/0.17.1_vue@3.3.11:
  2490. 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}
  2491. id: registry.npmmirror.com/@vue-macros/setup-component/0.17.1
  2492. name: '@vue-macros/setup-component'
  2493. version: 0.17.1
  2494. engines: {node: '>=16.14.0'}
  2495. dependencies:
  2496. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2497. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2498. transitivePeerDependencies:
  2499. - rollup
  2500. - vue
  2501. dev: true
  2502. registry.npmmirror.com/@vue-macros/setup-sfc/0.17.1_vue@3.3.11:
  2503. 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}
  2504. id: registry.npmmirror.com/@vue-macros/setup-sfc/0.17.1
  2505. name: '@vue-macros/setup-sfc'
  2506. version: 0.17.1
  2507. engines: {node: '>=16.14.0'}
  2508. dependencies:
  2509. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2510. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2511. transitivePeerDependencies:
  2512. - rollup
  2513. - vue
  2514. dev: true
  2515. registry.npmmirror.com/@vue-macros/short-bind/0.2.1_vue@3.3.11:
  2516. 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}
  2517. id: registry.npmmirror.com/@vue-macros/short-bind/0.2.1
  2518. name: '@vue-macros/short-bind'
  2519. version: 0.2.1
  2520. engines: {node: '>=16.14.0'}
  2521. dependencies:
  2522. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2523. '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
  2524. transitivePeerDependencies:
  2525. - rollup
  2526. - vue
  2527. dev: true
  2528. registry.npmmirror.com/@vue-macros/short-emits/1.5.1_vue@3.3.11:
  2529. 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}
  2530. id: registry.npmmirror.com/@vue-macros/short-emits/1.5.1
  2531. name: '@vue-macros/short-emits'
  2532. version: 1.5.1
  2533. engines: {node: '>=16.14.0'}
  2534. dependencies:
  2535. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2536. unplugin: registry.npmmirror.com/unplugin/1.5.1
  2537. transitivePeerDependencies:
  2538. - rollup
  2539. - vue
  2540. dev: true
  2541. registry.npmmirror.com/@vue-macros/short-vmodel/1.4.1_vue@3.3.11:
  2542. 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}
  2543. id: registry.npmmirror.com/@vue-macros/short-vmodel/1.4.1
  2544. name: '@vue-macros/short-vmodel'
  2545. version: 1.4.1
  2546. engines: {node: '>=16.14.0'}
  2547. dependencies:
  2548. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  2549. '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
  2550. transitivePeerDependencies:
  2551. - rollup
  2552. - vue
  2553. dev: true
  2554. registry.npmmirror.com/@vue/compiler-core/3.3.11:
  2555. 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}
  2556. name: '@vue/compiler-core'
  2557. version: 3.3.11
  2558. dependencies:
  2559. '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
  2560. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  2561. estree-walker: registry.npmmirror.com/estree-walker/2.0.2
  2562. source-map-js: registry.npmmirror.com/source-map-js/1.0.2
  2563. registry.npmmirror.com/@vue/compiler-dom/3.3.11:
  2564. 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}
  2565. name: '@vue/compiler-dom'
  2566. version: 3.3.11
  2567. dependencies:
  2568. '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
  2569. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  2570. registry.npmmirror.com/@vue/compiler-sfc/3.3.11:
  2571. 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}
  2572. name: '@vue/compiler-sfc'
  2573. version: 3.3.11
  2574. dependencies:
  2575. '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
  2576. '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
  2577. '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
  2578. '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.3.11
  2579. '@vue/reactivity-transform': registry.npmmirror.com/@vue/reactivity-transform/3.3.11
  2580. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  2581. estree-walker: registry.npmmirror.com/estree-walker/2.0.2
  2582. magic-string: registry.npmmirror.com/magic-string/0.30.5
  2583. postcss: registry.npmmirror.com/postcss/8.4.32
  2584. source-map-js: registry.npmmirror.com/source-map-js/1.0.2
  2585. registry.npmmirror.com/@vue/compiler-ssr/3.3.11:
  2586. 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}
  2587. name: '@vue/compiler-ssr'
  2588. version: 3.3.11
  2589. dependencies:
  2590. '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
  2591. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  2592. registry.npmmirror.com/@vue/devtools-api/6.5.1:
  2593. 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}
  2594. name: '@vue/devtools-api'
  2595. version: 6.5.1
  2596. dev: false
  2597. registry.npmmirror.com/@vue/language-core/1.8.25_typescript@5.3.3:
  2598. 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}
  2599. id: registry.npmmirror.com/@vue/language-core/1.8.25
  2600. name: '@vue/language-core'
  2601. version: 1.8.25
  2602. peerDependencies:
  2603. typescript: '*'
  2604. peerDependenciesMeta:
  2605. typescript:
  2606. optional: true
  2607. dependencies:
  2608. '@volar/language-core': registry.npmmirror.com/@volar/language-core/1.11.1
  2609. '@volar/source-map': registry.npmmirror.com/@volar/source-map/1.11.1
  2610. '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
  2611. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  2612. computeds: registry.npmmirror.com/computeds/0.0.1
  2613. minimatch: registry.npmmirror.com/minimatch/9.0.3
  2614. muggle-string: registry.npmmirror.com/muggle-string/0.3.1
  2615. path-browserify: registry.npmmirror.com/path-browserify/1.0.1
  2616. typescript: registry.npmmirror.com/typescript/5.3.3
  2617. vue-template-compiler: registry.npmmirror.com/vue-template-compiler/2.7.15
  2618. dev: true
  2619. registry.npmmirror.com/@vue/reactivity-transform/3.3.11:
  2620. 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}
  2621. name: '@vue/reactivity-transform'
  2622. version: 3.3.11
  2623. dependencies:
  2624. '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
  2625. '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.3.11
  2626. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  2627. estree-walker: registry.npmmirror.com/estree-walker/2.0.2
  2628. magic-string: registry.npmmirror.com/magic-string/0.30.5
  2629. registry.npmmirror.com/@vue/reactivity/3.3.11:
  2630. 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}
  2631. name: '@vue/reactivity'
  2632. version: 3.3.11
  2633. dependencies:
  2634. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  2635. registry.npmmirror.com/@vue/runtime-core/3.3.11:
  2636. 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}
  2637. name: '@vue/runtime-core'
  2638. version: 3.3.11
  2639. dependencies:
  2640. '@vue/reactivity': registry.npmmirror.com/@vue/reactivity/3.3.11
  2641. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  2642. registry.npmmirror.com/@vue/runtime-dom/3.3.11:
  2643. 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}
  2644. name: '@vue/runtime-dom'
  2645. version: 3.3.11
  2646. dependencies:
  2647. '@vue/runtime-core': registry.npmmirror.com/@vue/runtime-core/3.3.11
  2648. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  2649. csstype: registry.npmmirror.com/csstype/3.1.3
  2650. registry.npmmirror.com/@vue/server-renderer/3.3.11_vue@3.3.11:
  2651. resolution: {integrity: sha512-AIWk0VwwxCAm4wqtJyxBylRTXSy1wCLOKbWxHaHiu14wjsNYtiRCSgVuqEPVuDpErOlRdNnuRgipQfXRLjLN5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.11.tgz}
  2652. id: registry.npmmirror.com/@vue/server-renderer/3.3.11
  2653. name: '@vue/server-renderer'
  2654. version: 3.3.11
  2655. peerDependencies:
  2656. vue: 3.3.11
  2657. dependencies:
  2658. '@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.3.11
  2659. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  2660. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  2661. registry.npmmirror.com/@vue/shared/3.3.11:
  2662. resolution: {integrity: sha512-u2G8ZQ9IhMWTMXaWqZycnK4UthG1fA238CD+DP4Dm4WJi5hdUKKLg0RMRaRpDPNMdkTwIDkp7WtD0Rd9BH9fLw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.3.11.tgz}
  2663. name: '@vue/shared'
  2664. version: 3.3.11
  2665. registry.npmmirror.com/@vueuse/core/10.7.0_vue@3.3.11:
  2666. resolution: {integrity: sha512-4EUDESCHtwu44ZWK3Gc/hZUVhVo/ysvdtwocB5vcauSV4B7NiGY5972WnsojB3vRNdxvAt7kzJWE2h9h7C9d5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/core/-/core-10.7.0.tgz}
  2667. id: registry.npmmirror.com/@vueuse/core/10.7.0
  2668. name: '@vueuse/core'
  2669. version: 10.7.0
  2670. dependencies:
  2671. '@types/web-bluetooth': registry.npmmirror.com/@types/web-bluetooth/0.0.20
  2672. '@vueuse/metadata': registry.npmmirror.com/@vueuse/metadata/10.7.0
  2673. '@vueuse/shared': registry.npmmirror.com/@vueuse/shared/10.7.0_vue@3.3.11
  2674. vue-demi: registry.npmmirror.com/vue-demi/0.14.6_vue@3.3.11
  2675. transitivePeerDependencies:
  2676. - '@vue/composition-api'
  2677. - vue
  2678. registry.npmmirror.com/@vueuse/metadata/10.7.0:
  2679. resolution: {integrity: sha512-GlaH7tKP2iBCZ3bHNZ6b0cl9g0CJK8lttkBNUX156gWvNYhTKEtbweWLm9rxCPIiwzYcr/5xML6T8ZUEt+DkvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.7.0.tgz}
  2680. name: '@vueuse/metadata'
  2681. version: 10.7.0
  2682. registry.npmmirror.com/@vueuse/shared/10.7.0_vue@3.3.11:
  2683. resolution: {integrity: sha512-kc00uV6CiaTdc3i1CDC4a3lBxzaBE9AgYNtFN87B5OOscqeWElj/uza8qVDmk7/U8JbqoONLbtqiLJ5LGRuqlw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/shared/-/shared-10.7.0.tgz}
  2684. id: registry.npmmirror.com/@vueuse/shared/10.7.0
  2685. name: '@vueuse/shared'
  2686. version: 10.7.0
  2687. dependencies:
  2688. vue-demi: registry.npmmirror.com/vue-demi/0.14.6_vue@3.3.11
  2689. transitivePeerDependencies:
  2690. - '@vue/composition-api'
  2691. - vue
  2692. registry.npmmirror.com/@windicss/config/1.9.2:
  2693. resolution: {integrity: sha512-5yOaarc7Yce08i3NCNRNMUb/tfmVcFo801UwgM27/dXWWfG30wuPONms8VrQurPZlcZTayPKX0svOx0doWdnPQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@windicss/config/-/config-1.9.2.tgz}
  2694. name: '@windicss/config'
  2695. version: 1.9.2
  2696. dependencies:
  2697. debug: registry.npmmirror.com/debug/4.3.4
  2698. jiti: registry.npmmirror.com/jiti/1.21.0
  2699. windicss: registry.npmmirror.com/windicss/3.5.6
  2700. transitivePeerDependencies:
  2701. - supports-color
  2702. dev: false
  2703. registry.npmmirror.com/@windicss/plugin-utils/1.9.2:
  2704. 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}
  2705. name: '@windicss/plugin-utils'
  2706. version: 1.9.2
  2707. dependencies:
  2708. '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
  2709. '@windicss/config': registry.npmmirror.com/@windicss/config/1.9.2
  2710. debug: registry.npmmirror.com/debug/4.3.4
  2711. fast-glob: registry.npmmirror.com/fast-glob/3.3.2
  2712. magic-string: registry.npmmirror.com/magic-string/0.30.5
  2713. micromatch: registry.npmmirror.com/micromatch/4.0.5
  2714. windicss: registry.npmmirror.com/windicss/3.5.6
  2715. transitivePeerDependencies:
  2716. - supports-color
  2717. dev: false
  2718. registry.npmmirror.com/acorn/8.11.2:
  2719. resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-8.11.2.tgz}
  2720. name: acorn
  2721. version: 8.11.2
  2722. engines: {node: '>=0.4.0'}
  2723. hasBin: true
  2724. registry.npmmirror.com/ansi-styles/3.2.1:
  2725. 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}
  2726. name: ansi-styles
  2727. version: 3.2.1
  2728. engines: {node: '>=4'}
  2729. dependencies:
  2730. color-convert: registry.npmmirror.com/color-convert/1.9.3
  2731. registry.npmmirror.com/anymatch/3.1.3:
  2732. 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}
  2733. name: anymatch
  2734. version: 3.1.3
  2735. engines: {node: '>= 8'}
  2736. dependencies:
  2737. normalize-path: registry.npmmirror.com/normalize-path/3.0.0
  2738. picomatch: registry.npmmirror.com/picomatch/2.3.1
  2739. registry.npmmirror.com/array-buffer-byte-length/1.0.0:
  2740. 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}
  2741. name: array-buffer-byte-length
  2742. version: 1.0.0
  2743. dependencies:
  2744. call-bind: registry.npmmirror.com/call-bind/1.0.5
  2745. is-array-buffer: registry.npmmirror.com/is-array-buffer/3.0.2
  2746. dev: false
  2747. registry.npmmirror.com/ast-kit/0.11.3:
  2748. 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}
  2749. name: ast-kit
  2750. version: 0.11.3
  2751. engines: {node: '>=16.14.0'}
  2752. dependencies:
  2753. '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
  2754. '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
  2755. pathe: registry.npmmirror.com/pathe/1.1.1
  2756. transitivePeerDependencies:
  2757. - rollup
  2758. dev: true
  2759. registry.npmmirror.com/ast-kit/0.9.5:
  2760. 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}
  2761. name: ast-kit
  2762. version: 0.9.5
  2763. engines: {node: '>=16.14.0'}
  2764. dependencies:
  2765. '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
  2766. '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
  2767. pathe: registry.npmmirror.com/pathe/1.1.1
  2768. transitivePeerDependencies:
  2769. - rollup
  2770. dev: true
  2771. registry.npmmirror.com/ast-walker-scope/0.5.0:
  2772. 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}
  2773. name: ast-walker-scope
  2774. version: 0.5.0
  2775. engines: {node: '>=16.14.0'}
  2776. dependencies:
  2777. '@babel/parser': registry.npmmirror.com/@babel/parser/7.23.6
  2778. ast-kit: registry.npmmirror.com/ast-kit/0.9.5
  2779. transitivePeerDependencies:
  2780. - rollup
  2781. dev: true
  2782. registry.npmmirror.com/asynckit/0.4.0:
  2783. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz}
  2784. name: asynckit
  2785. version: 0.4.0
  2786. dev: false
  2787. registry.npmmirror.com/available-typed-arrays/1.0.5:
  2788. 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}
  2789. name: available-typed-arrays
  2790. version: 1.0.5
  2791. engines: {node: '>= 0.4'}
  2792. dev: false
  2793. registry.npmmirror.com/axios/1.6.2:
  2794. resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/axios/-/axios-1.6.2.tgz}
  2795. name: axios
  2796. version: 1.6.2
  2797. dependencies:
  2798. follow-redirects: registry.npmmirror.com/follow-redirects/1.15.3
  2799. form-data: registry.npmmirror.com/form-data/4.0.0
  2800. proxy-from-env: registry.npmmirror.com/proxy-from-env/1.1.0
  2801. transitivePeerDependencies:
  2802. - debug
  2803. dev: false
  2804. registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.4.7_@babel+core@7.23.6:
  2805. 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}
  2806. id: registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.4.7
  2807. name: babel-plugin-polyfill-corejs2
  2808. version: 0.4.7
  2809. peerDependencies:
  2810. '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
  2811. dependencies:
  2812. '@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
  2813. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  2814. '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.4_@babel+core@7.23.6
  2815. semver: registry.npmmirror.com/semver/6.3.1
  2816. transitivePeerDependencies:
  2817. - supports-color
  2818. dev: true
  2819. registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.8.7_@babel+core@7.23.6:
  2820. 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}
  2821. id: registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.8.7
  2822. name: babel-plugin-polyfill-corejs3
  2823. version: 0.8.7
  2824. peerDependencies:
  2825. '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
  2826. dependencies:
  2827. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  2828. '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.4_@babel+core@7.23.6
  2829. core-js-compat: registry.npmmirror.com/core-js-compat/3.34.0
  2830. transitivePeerDependencies:
  2831. - supports-color
  2832. dev: true
  2833. registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.5.4_@babel+core@7.23.6:
  2834. 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}
  2835. id: registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.5.4
  2836. name: babel-plugin-polyfill-regenerator
  2837. version: 0.5.4
  2838. peerDependencies:
  2839. '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
  2840. dependencies:
  2841. '@babel/core': registry.npmmirror.com/@babel/core/7.23.6
  2842. '@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.4_@babel+core@7.23.6
  2843. transitivePeerDependencies:
  2844. - supports-color
  2845. dev: true
  2846. registry.npmmirror.com/balanced-match/1.0.2:
  2847. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz}
  2848. name: balanced-match
  2849. version: 1.0.2
  2850. dev: true
  2851. registry.npmmirror.com/binary-extensions/2.2.0:
  2852. resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz}
  2853. name: binary-extensions
  2854. version: 2.2.0
  2855. engines: {node: '>=8'}
  2856. registry.npmmirror.com/brace-expansion/2.0.1:
  2857. 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}
  2858. name: brace-expansion
  2859. version: 2.0.1
  2860. dependencies:
  2861. balanced-match: registry.npmmirror.com/balanced-match/1.0.2
  2862. dev: true
  2863. registry.npmmirror.com/braces/3.0.2:
  2864. resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz}
  2865. name: braces
  2866. version: 3.0.2
  2867. engines: {node: '>=8'}
  2868. dependencies:
  2869. fill-range: registry.npmmirror.com/fill-range/7.0.1
  2870. registry.npmmirror.com/browserslist/4.22.2:
  2871. 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}
  2872. name: browserslist
  2873. version: 4.22.2
  2874. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  2875. hasBin: true
  2876. dependencies:
  2877. caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001568
  2878. electron-to-chromium: registry.npmmirror.com/electron-to-chromium/1.4.611
  2879. node-releases: registry.npmmirror.com/node-releases/2.0.14
  2880. update-browserslist-db: registry.npmmirror.com/update-browserslist-db/1.0.13_browserslist@4.22.2
  2881. registry.npmmirror.com/cac/6.7.14:
  2882. 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}
  2883. name: cac
  2884. version: 6.7.14
  2885. engines: {node: '>=8'}
  2886. dev: false
  2887. registry.npmmirror.com/call-bind/1.0.5:
  2888. 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}
  2889. name: call-bind
  2890. version: 1.0.5
  2891. dependencies:
  2892. function-bind: registry.npmmirror.com/function-bind/1.1.2
  2893. get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
  2894. set-function-length: registry.npmmirror.com/set-function-length/1.1.1
  2895. dev: false
  2896. registry.npmmirror.com/caniuse-lite/1.0.30001568:
  2897. resolution: {integrity: sha512-vSUkH84HontZJ88MiNrOau1EBrCqEQYgkC5gIySiDlpsm8sGVrhU7Kx4V6h0tnqaHzIHZv08HlJIwPbL4XL9+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001568.tgz}
  2898. name: caniuse-lite
  2899. version: 1.0.30001568
  2900. registry.npmmirror.com/chalk/2.4.2:
  2901. 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}
  2902. name: chalk
  2903. version: 2.4.2
  2904. engines: {node: '>=4'}
  2905. dependencies:
  2906. ansi-styles: registry.npmmirror.com/ansi-styles/3.2.1
  2907. escape-string-regexp: registry.npmmirror.com/escape-string-regexp/1.0.5
  2908. supports-color: registry.npmmirror.com/supports-color/5.5.0
  2909. registry.npmmirror.com/chokidar/3.5.3:
  2910. resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz}
  2911. name: chokidar
  2912. version: 3.5.3
  2913. engines: {node: '>= 8.10.0'}
  2914. dependencies:
  2915. anymatch: registry.npmmirror.com/anymatch/3.1.3
  2916. braces: registry.npmmirror.com/braces/3.0.2
  2917. glob-parent: registry.npmmirror.com/glob-parent/5.1.2
  2918. is-binary-path: registry.npmmirror.com/is-binary-path/2.1.0
  2919. is-glob: registry.npmmirror.com/is-glob/4.0.3
  2920. normalize-path: registry.npmmirror.com/normalize-path/3.0.0
  2921. readdirp: registry.npmmirror.com/readdirp/3.6.0
  2922. optionalDependencies:
  2923. fsevents: registry.npmmirror.com/fsevents/2.3.3
  2924. registry.npmmirror.com/color-convert/1.9.3:
  2925. 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}
  2926. name: color-convert
  2927. version: 1.9.3
  2928. dependencies:
  2929. color-name: registry.npmmirror.com/color-name/1.1.3
  2930. registry.npmmirror.com/color-name/1.1.3:
  2931. 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}
  2932. name: color-name
  2933. version: 1.1.3
  2934. registry.npmmirror.com/colorette/2.0.20:
  2935. resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz}
  2936. name: colorette
  2937. version: 2.0.20
  2938. dev: false
  2939. registry.npmmirror.com/combined-stream/1.0.8:
  2940. 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}
  2941. name: combined-stream
  2942. version: 1.0.8
  2943. engines: {node: '>= 0.8'}
  2944. dependencies:
  2945. delayed-stream: registry.npmmirror.com/delayed-stream/1.0.0
  2946. dev: false
  2947. registry.npmmirror.com/computeds/0.0.1:
  2948. resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/computeds/-/computeds-0.0.1.tgz}
  2949. name: computeds
  2950. version: 0.0.1
  2951. dev: true
  2952. registry.npmmirror.com/consola/3.2.3:
  2953. resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/consola/-/consola-3.2.3.tgz}
  2954. name: consola
  2955. version: 3.2.3
  2956. engines: {node: ^14.18.0 || >=16.10.0}
  2957. dev: false
  2958. registry.npmmirror.com/convert-source-map/2.0.0:
  2959. 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}
  2960. name: convert-source-map
  2961. version: 2.0.0
  2962. registry.npmmirror.com/core-js-compat/3.34.0:
  2963. 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}
  2964. name: core-js-compat
  2965. version: 3.34.0
  2966. dependencies:
  2967. browserslist: registry.npmmirror.com/browserslist/4.22.2
  2968. dev: true
  2969. registry.npmmirror.com/core-js/3.34.0:
  2970. 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}
  2971. name: core-js
  2972. version: 3.34.0
  2973. requiresBuild: true
  2974. dev: true
  2975. registry.npmmirror.com/cross-spawn/7.0.3:
  2976. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz}
  2977. name: cross-spawn
  2978. version: 7.0.3
  2979. engines: {node: '>= 8'}
  2980. dependencies:
  2981. path-key: registry.npmmirror.com/path-key/3.1.1
  2982. shebang-command: registry.npmmirror.com/shebang-command/2.0.0
  2983. which: registry.npmmirror.com/which/2.0.2
  2984. dev: false
  2985. registry.npmmirror.com/css-tree/2.3.1:
  2986. 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}
  2987. name: css-tree
  2988. version: 2.3.1
  2989. engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
  2990. dependencies:
  2991. mdn-data: registry.npmmirror.com/mdn-data/2.0.30
  2992. source-map-js: registry.npmmirror.com/source-map-js/1.0.2
  2993. dev: false
  2994. registry.npmmirror.com/csstype/3.1.3:
  2995. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz}
  2996. name: csstype
  2997. version: 3.1.3
  2998. registry.npmmirror.com/de-indent/1.0.2:
  2999. 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}
  3000. name: de-indent
  3001. version: 1.0.2
  3002. dev: true
  3003. registry.npmmirror.com/debug/4.3.4:
  3004. resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz}
  3005. name: debug
  3006. version: 4.3.4
  3007. engines: {node: '>=6.0'}
  3008. peerDependencies:
  3009. supports-color: '*'
  3010. peerDependenciesMeta:
  3011. supports-color:
  3012. optional: true
  3013. dependencies:
  3014. ms: registry.npmmirror.com/ms/2.1.2
  3015. registry.npmmirror.com/deep-equal/2.2.3:
  3016. resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/deep-equal/-/deep-equal-2.2.3.tgz}
  3017. name: deep-equal
  3018. version: 2.2.3
  3019. engines: {node: '>= 0.4'}
  3020. dependencies:
  3021. array-buffer-byte-length: registry.npmmirror.com/array-buffer-byte-length/1.0.0
  3022. call-bind: registry.npmmirror.com/call-bind/1.0.5
  3023. es-get-iterator: registry.npmmirror.com/es-get-iterator/1.1.3
  3024. get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
  3025. is-arguments: registry.npmmirror.com/is-arguments/1.1.1
  3026. is-array-buffer: registry.npmmirror.com/is-array-buffer/3.0.2
  3027. is-date-object: registry.npmmirror.com/is-date-object/1.0.5
  3028. is-regex: registry.npmmirror.com/is-regex/1.1.4
  3029. is-shared-array-buffer: registry.npmmirror.com/is-shared-array-buffer/1.0.2
  3030. isarray: registry.npmmirror.com/isarray/2.0.5
  3031. object-is: registry.npmmirror.com/object-is/1.1.5
  3032. object-keys: registry.npmmirror.com/object-keys/1.1.1
  3033. object.assign: registry.npmmirror.com/object.assign/4.1.5
  3034. regexp.prototype.flags: registry.npmmirror.com/regexp.prototype.flags/1.5.1
  3035. side-channel: registry.npmmirror.com/side-channel/1.0.4
  3036. which-boxed-primitive: registry.npmmirror.com/which-boxed-primitive/1.0.2
  3037. which-collection: registry.npmmirror.com/which-collection/1.0.1
  3038. which-typed-array: registry.npmmirror.com/which-typed-array/1.1.13
  3039. dev: false
  3040. registry.npmmirror.com/define-data-property/1.1.1:
  3041. 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}
  3042. name: define-data-property
  3043. version: 1.1.1
  3044. engines: {node: '>= 0.4'}
  3045. dependencies:
  3046. get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
  3047. gopd: registry.npmmirror.com/gopd/1.0.1
  3048. has-property-descriptors: registry.npmmirror.com/has-property-descriptors/1.0.1
  3049. dev: false
  3050. registry.npmmirror.com/define-properties/1.2.1:
  3051. 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}
  3052. name: define-properties
  3053. version: 1.2.1
  3054. engines: {node: '>= 0.4'}
  3055. dependencies:
  3056. define-data-property: registry.npmmirror.com/define-data-property/1.1.1
  3057. has-property-descriptors: registry.npmmirror.com/has-property-descriptors/1.0.1
  3058. object-keys: registry.npmmirror.com/object-keys/1.1.1
  3059. dev: false
  3060. registry.npmmirror.com/defu/6.1.3:
  3061. resolution: {integrity: sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/defu/-/defu-6.1.3.tgz}
  3062. name: defu
  3063. version: 6.1.3
  3064. dev: false
  3065. registry.npmmirror.com/delayed-stream/1.0.0:
  3066. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz}
  3067. name: delayed-stream
  3068. version: 1.0.0
  3069. engines: {node: '>=0.4.0'}
  3070. dev: false
  3071. registry.npmmirror.com/destr/2.0.2:
  3072. resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/destr/-/destr-2.0.2.tgz}
  3073. name: destr
  3074. version: 2.0.2
  3075. dev: false
  3076. registry.npmmirror.com/duplexer/0.1.2:
  3077. resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/duplexer/-/duplexer-0.1.2.tgz}
  3078. name: duplexer
  3079. version: 0.1.2
  3080. dev: false
  3081. registry.npmmirror.com/electron-to-chromium/1.4.611:
  3082. 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}
  3083. name: electron-to-chromium
  3084. version: 1.4.611
  3085. registry.npmmirror.com/es-get-iterator/1.1.3:
  3086. 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}
  3087. name: es-get-iterator
  3088. version: 1.1.3
  3089. dependencies:
  3090. call-bind: registry.npmmirror.com/call-bind/1.0.5
  3091. get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
  3092. has-symbols: registry.npmmirror.com/has-symbols/1.0.3
  3093. is-arguments: registry.npmmirror.com/is-arguments/1.1.1
  3094. is-map: registry.npmmirror.com/is-map/2.0.2
  3095. is-set: registry.npmmirror.com/is-set/2.0.2
  3096. is-string: registry.npmmirror.com/is-string/1.0.7
  3097. isarray: registry.npmmirror.com/isarray/2.0.5
  3098. stop-iteration-iterator: registry.npmmirror.com/stop-iteration-iterator/1.0.0
  3099. dev: false
  3100. registry.npmmirror.com/esbuild/0.19.9:
  3101. 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}
  3102. name: esbuild
  3103. version: 0.19.9
  3104. engines: {node: '>=12'}
  3105. hasBin: true
  3106. requiresBuild: true
  3107. optionalDependencies:
  3108. '@esbuild/android-arm': registry.npmmirror.com/@esbuild/android-arm/0.19.9
  3109. '@esbuild/android-arm64': registry.npmmirror.com/@esbuild/android-arm64/0.19.9
  3110. '@esbuild/android-x64': registry.npmmirror.com/@esbuild/android-x64/0.19.9
  3111. '@esbuild/darwin-arm64': registry.npmmirror.com/@esbuild/darwin-arm64/0.19.9
  3112. '@esbuild/darwin-x64': registry.npmmirror.com/@esbuild/darwin-x64/0.19.9
  3113. '@esbuild/freebsd-arm64': registry.npmmirror.com/@esbuild/freebsd-arm64/0.19.9
  3114. '@esbuild/freebsd-x64': registry.npmmirror.com/@esbuild/freebsd-x64/0.19.9
  3115. '@esbuild/linux-arm': registry.npmmirror.com/@esbuild/linux-arm/0.19.9
  3116. '@esbuild/linux-arm64': registry.npmmirror.com/@esbuild/linux-arm64/0.19.9
  3117. '@esbuild/linux-ia32': registry.npmmirror.com/@esbuild/linux-ia32/0.19.9
  3118. '@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64/0.19.9
  3119. '@esbuild/linux-mips64el': registry.npmmirror.com/@esbuild/linux-mips64el/0.19.9
  3120. '@esbuild/linux-ppc64': registry.npmmirror.com/@esbuild/linux-ppc64/0.19.9
  3121. '@esbuild/linux-riscv64': registry.npmmirror.com/@esbuild/linux-riscv64/0.19.9
  3122. '@esbuild/linux-s390x': registry.npmmirror.com/@esbuild/linux-s390x/0.19.9
  3123. '@esbuild/linux-x64': registry.npmmirror.com/@esbuild/linux-x64/0.19.9
  3124. '@esbuild/netbsd-x64': registry.npmmirror.com/@esbuild/netbsd-x64/0.19.9
  3125. '@esbuild/openbsd-x64': registry.npmmirror.com/@esbuild/openbsd-x64/0.19.9
  3126. '@esbuild/sunos-x64': registry.npmmirror.com/@esbuild/sunos-x64/0.19.9
  3127. '@esbuild/win32-arm64': registry.npmmirror.com/@esbuild/win32-arm64/0.19.9
  3128. '@esbuild/win32-ia32': registry.npmmirror.com/@esbuild/win32-ia32/0.19.9
  3129. '@esbuild/win32-x64': registry.npmmirror.com/@esbuild/win32-x64/0.19.9
  3130. registry.npmmirror.com/escalade/3.1.1:
  3131. resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz}
  3132. name: escalade
  3133. version: 3.1.1
  3134. engines: {node: '>=6'}
  3135. registry.npmmirror.com/escape-string-regexp/1.0.5:
  3136. 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}
  3137. name: escape-string-regexp
  3138. version: 1.0.5
  3139. engines: {node: '>=0.8.0'}
  3140. registry.npmmirror.com/escape-string-regexp/5.0.0:
  3141. 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}
  3142. name: escape-string-regexp
  3143. version: 5.0.0
  3144. engines: {node: '>=12'}
  3145. dev: true
  3146. registry.npmmirror.com/esprima-extract-comments/1.1.0:
  3147. 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}
  3148. name: esprima-extract-comments
  3149. version: 1.1.0
  3150. engines: {node: '>=4'}
  3151. dependencies:
  3152. esprima: registry.npmmirror.com/esprima/4.0.1
  3153. dev: false
  3154. registry.npmmirror.com/esprima/4.0.1:
  3155. 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}
  3156. name: esprima
  3157. version: 4.0.1
  3158. engines: {node: '>=4'}
  3159. hasBin: true
  3160. dev: false
  3161. registry.npmmirror.com/estree-walker/2.0.2:
  3162. 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}
  3163. name: estree-walker
  3164. version: 2.0.2
  3165. registry.npmmirror.com/esutils/2.0.3:
  3166. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz}
  3167. name: esutils
  3168. version: 2.0.3
  3169. engines: {node: '>=0.10.0'}
  3170. dev: true
  3171. registry.npmmirror.com/execa/5.1.1:
  3172. resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz}
  3173. name: execa
  3174. version: 5.1.1
  3175. engines: {node: '>=10'}
  3176. dependencies:
  3177. cross-spawn: registry.npmmirror.com/cross-spawn/7.0.3
  3178. get-stream: registry.npmmirror.com/get-stream/6.0.1
  3179. human-signals: registry.npmmirror.com/human-signals/2.1.0
  3180. is-stream: registry.npmmirror.com/is-stream/2.0.1
  3181. merge-stream: registry.npmmirror.com/merge-stream/2.0.0
  3182. npm-run-path: registry.npmmirror.com/npm-run-path/4.0.1
  3183. onetime: registry.npmmirror.com/onetime/5.1.2
  3184. signal-exit: registry.npmmirror.com/signal-exit/3.0.7
  3185. strip-final-newline: registry.npmmirror.com/strip-final-newline/2.0.0
  3186. dev: false
  3187. registry.npmmirror.com/extract-comments/1.1.0:
  3188. 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}
  3189. name: extract-comments
  3190. version: 1.1.0
  3191. engines: {node: '>=6'}
  3192. dependencies:
  3193. esprima-extract-comments: registry.npmmirror.com/esprima-extract-comments/1.1.0
  3194. parse-code-context: registry.npmmirror.com/parse-code-context/1.0.0
  3195. dev: false
  3196. registry.npmmirror.com/fast-glob/3.3.2:
  3197. 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}
  3198. name: fast-glob
  3199. version: 3.3.2
  3200. engines: {node: '>=8.6.0'}
  3201. dependencies:
  3202. '@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
  3203. '@nodelib/fs.walk': registry.npmmirror.com/@nodelib/fs.walk/1.2.8
  3204. glob-parent: registry.npmmirror.com/glob-parent/5.1.2
  3205. merge2: registry.npmmirror.com/merge2/1.4.1
  3206. micromatch: registry.npmmirror.com/micromatch/4.0.5
  3207. registry.npmmirror.com/fastq/1.15.0:
  3208. 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}
  3209. name: fastq
  3210. version: 1.15.0
  3211. dependencies:
  3212. reusify: registry.npmmirror.com/reusify/1.0.4
  3213. registry.npmmirror.com/fill-range/7.0.1:
  3214. 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}
  3215. name: fill-range
  3216. version: 7.0.1
  3217. engines: {node: '>=8'}
  3218. dependencies:
  3219. to-regex-range: registry.npmmirror.com/to-regex-range/5.0.1
  3220. registry.npmmirror.com/find-up/5.0.0:
  3221. 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}
  3222. name: find-up
  3223. version: 5.0.0
  3224. engines: {node: '>=10'}
  3225. dependencies:
  3226. locate-path: registry.npmmirror.com/locate-path/6.0.0
  3227. path-exists: registry.npmmirror.com/path-exists/4.0.0
  3228. dev: false
  3229. registry.npmmirror.com/follow-redirects/1.15.3:
  3230. resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.3.tgz}
  3231. name: follow-redirects
  3232. version: 1.15.3
  3233. engines: {node: '>=4.0'}
  3234. peerDependencies:
  3235. debug: '*'
  3236. peerDependenciesMeta:
  3237. debug:
  3238. optional: true
  3239. dev: false
  3240. registry.npmmirror.com/for-each/0.3.3:
  3241. 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}
  3242. name: for-each
  3243. version: 0.3.3
  3244. dependencies:
  3245. is-callable: registry.npmmirror.com/is-callable/1.2.7
  3246. dev: false
  3247. registry.npmmirror.com/form-data/4.0.0:
  3248. 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}
  3249. name: form-data
  3250. version: 4.0.0
  3251. engines: {node: '>= 6'}
  3252. dependencies:
  3253. asynckit: registry.npmmirror.com/asynckit/0.4.0
  3254. combined-stream: registry.npmmirror.com/combined-stream/1.0.8
  3255. mime-types: registry.npmmirror.com/mime-types/2.1.35
  3256. dev: false
  3257. registry.npmmirror.com/fsevents/2.3.3:
  3258. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz}
  3259. name: fsevents
  3260. version: 2.3.3
  3261. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  3262. os: [darwin]
  3263. requiresBuild: true
  3264. optional: true
  3265. registry.npmmirror.com/function-bind/1.1.2:
  3266. 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}
  3267. name: function-bind
  3268. version: 1.1.2
  3269. registry.npmmirror.com/functions-have-names/1.2.3:
  3270. 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}
  3271. name: functions-have-names
  3272. version: 1.2.3
  3273. dev: false
  3274. registry.npmmirror.com/gensync/1.0.0-beta.2:
  3275. 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}
  3276. name: gensync
  3277. version: 1.0.0-beta.2
  3278. engines: {node: '>=6.9.0'}
  3279. registry.npmmirror.com/get-intrinsic/1.2.2:
  3280. 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}
  3281. name: get-intrinsic
  3282. version: 1.2.2
  3283. dependencies:
  3284. function-bind: registry.npmmirror.com/function-bind/1.1.2
  3285. has-proto: registry.npmmirror.com/has-proto/1.0.1
  3286. has-symbols: registry.npmmirror.com/has-symbols/1.0.3
  3287. hasown: registry.npmmirror.com/hasown/2.0.0
  3288. dev: false
  3289. registry.npmmirror.com/get-stream/6.0.1:
  3290. 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}
  3291. name: get-stream
  3292. version: 6.0.1
  3293. engines: {node: '>=10'}
  3294. dev: false
  3295. registry.npmmirror.com/glob-parent/5.1.2:
  3296. 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}
  3297. name: glob-parent
  3298. version: 5.1.2
  3299. engines: {node: '>= 6'}
  3300. dependencies:
  3301. is-glob: registry.npmmirror.com/is-glob/4.0.3
  3302. registry.npmmirror.com/globals/11.12.0:
  3303. 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}
  3304. name: globals
  3305. version: 11.12.0
  3306. engines: {node: '>=4'}
  3307. registry.npmmirror.com/gopd/1.0.1:
  3308. resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/gopd/-/gopd-1.0.1.tgz}
  3309. name: gopd
  3310. version: 1.0.1
  3311. dependencies:
  3312. get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
  3313. dev: false
  3314. registry.npmmirror.com/gzip-size/6.0.0:
  3315. 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}
  3316. name: gzip-size
  3317. version: 6.0.0
  3318. engines: {node: '>=10'}
  3319. dependencies:
  3320. duplexer: registry.npmmirror.com/duplexer/0.1.2
  3321. dev: false
  3322. registry.npmmirror.com/has-bigints/1.0.2:
  3323. 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}
  3324. name: has-bigints
  3325. version: 1.0.2
  3326. dev: false
  3327. registry.npmmirror.com/has-flag/3.0.0:
  3328. 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}
  3329. name: has-flag
  3330. version: 3.0.0
  3331. engines: {node: '>=4'}
  3332. registry.npmmirror.com/has-property-descriptors/1.0.1:
  3333. 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}
  3334. name: has-property-descriptors
  3335. version: 1.0.1
  3336. dependencies:
  3337. get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
  3338. dev: false
  3339. registry.npmmirror.com/has-proto/1.0.1:
  3340. 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}
  3341. name: has-proto
  3342. version: 1.0.1
  3343. engines: {node: '>= 0.4'}
  3344. dev: false
  3345. registry.npmmirror.com/has-symbols/1.0.3:
  3346. resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz}
  3347. name: has-symbols
  3348. version: 1.0.3
  3349. engines: {node: '>= 0.4'}
  3350. dev: false
  3351. registry.npmmirror.com/has-tostringtag/1.0.0:
  3352. resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz}
  3353. name: has-tostringtag
  3354. version: 1.0.0
  3355. engines: {node: '>= 0.4'}
  3356. dependencies:
  3357. has-symbols: registry.npmmirror.com/has-symbols/1.0.3
  3358. dev: false
  3359. registry.npmmirror.com/hasown/2.0.0:
  3360. 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}
  3361. name: hasown
  3362. version: 2.0.0
  3363. engines: {node: '>= 0.4'}
  3364. dependencies:
  3365. function-bind: registry.npmmirror.com/function-bind/1.1.2
  3366. registry.npmmirror.com/he/1.2.0:
  3367. 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}
  3368. name: he
  3369. version: 1.2.0
  3370. hasBin: true
  3371. dev: true
  3372. registry.npmmirror.com/human-signals/2.1.0:
  3373. 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}
  3374. name: human-signals
  3375. version: 2.1.0
  3376. engines: {node: '>=10.17.0'}
  3377. dev: false
  3378. registry.npmmirror.com/immutable/4.3.4:
  3379. 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}
  3380. name: immutable
  3381. version: 4.3.4
  3382. registry.npmmirror.com/internal-slot/1.0.6:
  3383. 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}
  3384. name: internal-slot
  3385. version: 1.0.6
  3386. engines: {node: '>= 0.4'}
  3387. dependencies:
  3388. get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
  3389. hasown: registry.npmmirror.com/hasown/2.0.0
  3390. side-channel: registry.npmmirror.com/side-channel/1.0.4
  3391. dev: false
  3392. registry.npmmirror.com/is-arguments/1.1.1:
  3393. 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}
  3394. name: is-arguments
  3395. version: 1.1.1
  3396. engines: {node: '>= 0.4'}
  3397. dependencies:
  3398. call-bind: registry.npmmirror.com/call-bind/1.0.5
  3399. has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
  3400. dev: false
  3401. registry.npmmirror.com/is-array-buffer/3.0.2:
  3402. 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}
  3403. name: is-array-buffer
  3404. version: 3.0.2
  3405. dependencies:
  3406. call-bind: registry.npmmirror.com/call-bind/1.0.5
  3407. get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
  3408. is-typed-array: registry.npmmirror.com/is-typed-array/1.1.12
  3409. dev: false
  3410. registry.npmmirror.com/is-bigint/1.0.4:
  3411. resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz}
  3412. name: is-bigint
  3413. version: 1.0.4
  3414. dependencies:
  3415. has-bigints: registry.npmmirror.com/has-bigints/1.0.2
  3416. dev: false
  3417. registry.npmmirror.com/is-binary-path/2.1.0:
  3418. 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}
  3419. name: is-binary-path
  3420. version: 2.1.0
  3421. engines: {node: '>=8'}
  3422. dependencies:
  3423. binary-extensions: registry.npmmirror.com/binary-extensions/2.2.0
  3424. registry.npmmirror.com/is-boolean-object/1.1.2:
  3425. 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}
  3426. name: is-boolean-object
  3427. version: 1.1.2
  3428. engines: {node: '>= 0.4'}
  3429. dependencies:
  3430. call-bind: registry.npmmirror.com/call-bind/1.0.5
  3431. has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
  3432. dev: false
  3433. registry.npmmirror.com/is-callable/1.2.7:
  3434. 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}
  3435. name: is-callable
  3436. version: 1.2.7
  3437. engines: {node: '>= 0.4'}
  3438. dev: false
  3439. registry.npmmirror.com/is-core-module/2.13.1:
  3440. 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}
  3441. name: is-core-module
  3442. version: 2.13.1
  3443. dependencies:
  3444. hasown: registry.npmmirror.com/hasown/2.0.0
  3445. dev: true
  3446. registry.npmmirror.com/is-date-object/1.0.5:
  3447. 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}
  3448. name: is-date-object
  3449. version: 1.0.5
  3450. engines: {node: '>= 0.4'}
  3451. dependencies:
  3452. has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
  3453. dev: false
  3454. registry.npmmirror.com/is-extglob/2.1.1:
  3455. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz}
  3456. name: is-extglob
  3457. version: 2.1.1
  3458. engines: {node: '>=0.10.0'}
  3459. registry.npmmirror.com/is-glob/4.0.3:
  3460. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz}
  3461. name: is-glob
  3462. version: 4.0.3
  3463. engines: {node: '>=0.10.0'}
  3464. dependencies:
  3465. is-extglob: registry.npmmirror.com/is-extglob/2.1.1
  3466. registry.npmmirror.com/is-map/2.0.2:
  3467. 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}
  3468. name: is-map
  3469. version: 2.0.2
  3470. dev: false
  3471. registry.npmmirror.com/is-number-object/1.0.7:
  3472. 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}
  3473. name: is-number-object
  3474. version: 1.0.7
  3475. engines: {node: '>= 0.4'}
  3476. dependencies:
  3477. has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
  3478. dev: false
  3479. registry.npmmirror.com/is-number/7.0.0:
  3480. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz}
  3481. name: is-number
  3482. version: 7.0.0
  3483. engines: {node: '>=0.12.0'}
  3484. registry.npmmirror.com/is-regex/1.1.4:
  3485. 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}
  3486. name: is-regex
  3487. version: 1.1.4
  3488. engines: {node: '>= 0.4'}
  3489. dependencies:
  3490. call-bind: registry.npmmirror.com/call-bind/1.0.5
  3491. has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
  3492. dev: false
  3493. registry.npmmirror.com/is-set/2.0.2:
  3494. 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}
  3495. name: is-set
  3496. version: 2.0.2
  3497. dev: false
  3498. registry.npmmirror.com/is-shared-array-buffer/1.0.2:
  3499. 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}
  3500. name: is-shared-array-buffer
  3501. version: 1.0.2
  3502. dependencies:
  3503. call-bind: registry.npmmirror.com/call-bind/1.0.5
  3504. dev: false
  3505. registry.npmmirror.com/is-stream/2.0.1:
  3506. 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}
  3507. name: is-stream
  3508. version: 2.0.1
  3509. engines: {node: '>=8'}
  3510. dev: false
  3511. registry.npmmirror.com/is-string/1.0.7:
  3512. resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz}
  3513. name: is-string
  3514. version: 1.0.7
  3515. engines: {node: '>= 0.4'}
  3516. dependencies:
  3517. has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
  3518. dev: false
  3519. registry.npmmirror.com/is-symbol/1.0.4:
  3520. resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz}
  3521. name: is-symbol
  3522. version: 1.0.4
  3523. engines: {node: '>= 0.4'}
  3524. dependencies:
  3525. has-symbols: registry.npmmirror.com/has-symbols/1.0.3
  3526. dev: false
  3527. registry.npmmirror.com/is-typed-array/1.1.12:
  3528. 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}
  3529. name: is-typed-array
  3530. version: 1.1.12
  3531. engines: {node: '>= 0.4'}
  3532. dependencies:
  3533. which-typed-array: registry.npmmirror.com/which-typed-array/1.1.13
  3534. dev: false
  3535. registry.npmmirror.com/is-weakmap/2.0.1:
  3536. 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}
  3537. name: is-weakmap
  3538. version: 2.0.1
  3539. dev: false
  3540. registry.npmmirror.com/is-weakset/2.0.2:
  3541. resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-weakset/-/is-weakset-2.0.2.tgz}
  3542. name: is-weakset
  3543. version: 2.0.2
  3544. dependencies:
  3545. call-bind: registry.npmmirror.com/call-bind/1.0.5
  3546. get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
  3547. dev: false
  3548. registry.npmmirror.com/isarray/2.0.5:
  3549. resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isarray/-/isarray-2.0.5.tgz}
  3550. name: isarray
  3551. version: 2.0.5
  3552. dev: false
  3553. registry.npmmirror.com/isexe/2.0.0:
  3554. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz}
  3555. name: isexe
  3556. version: 2.0.0
  3557. dev: false
  3558. registry.npmmirror.com/jiti/1.21.0:
  3559. 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}
  3560. name: jiti
  3561. version: 1.21.0
  3562. hasBin: true
  3563. dev: false
  3564. registry.npmmirror.com/js-tokens/4.0.0:
  3565. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz}
  3566. name: js-tokens
  3567. version: 4.0.0
  3568. registry.npmmirror.com/jsesc/0.5.0:
  3569. resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsesc/-/jsesc-0.5.0.tgz}
  3570. name: jsesc
  3571. version: 0.5.0
  3572. hasBin: true
  3573. dev: true
  3574. registry.npmmirror.com/jsesc/2.5.2:
  3575. resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz}
  3576. name: jsesc
  3577. version: 2.5.2
  3578. engines: {node: '>=4'}
  3579. hasBin: true
  3580. registry.npmmirror.com/json5/2.2.3:
  3581. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz}
  3582. name: json5
  3583. version: 2.2.3
  3584. engines: {node: '>=6'}
  3585. hasBin: true
  3586. registry.npmmirror.com/jsonc-parser/3.2.0:
  3587. 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}
  3588. name: jsonc-parser
  3589. version: 3.2.0
  3590. registry.npmmirror.com/kolorist/1.8.0:
  3591. 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}
  3592. name: kolorist
  3593. version: 1.8.0
  3594. dev: false
  3595. registry.npmmirror.com/local-pkg/0.4.3:
  3596. 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}
  3597. name: local-pkg
  3598. version: 0.4.3
  3599. engines: {node: '>=14'}
  3600. registry.npmmirror.com/local-pkg/0.5.0:
  3601. resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/local-pkg/-/local-pkg-0.5.0.tgz}
  3602. name: local-pkg
  3603. version: 0.5.0
  3604. engines: {node: '>=14'}
  3605. dependencies:
  3606. mlly: registry.npmmirror.com/mlly/1.4.2
  3607. pkg-types: registry.npmmirror.com/pkg-types/1.0.3
  3608. registry.npmmirror.com/locate-path/6.0.0:
  3609. 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}
  3610. name: locate-path
  3611. version: 6.0.0
  3612. engines: {node: '>=10'}
  3613. dependencies:
  3614. p-locate: registry.npmmirror.com/p-locate/5.0.0
  3615. dev: false
  3616. registry.npmmirror.com/lodash.debounce/4.0.8:
  3617. 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}
  3618. name: lodash.debounce
  3619. version: 4.0.8
  3620. dev: true
  3621. registry.npmmirror.com/lru-cache/5.1.1:
  3622. 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}
  3623. name: lru-cache
  3624. version: 5.1.1
  3625. dependencies:
  3626. yallist: registry.npmmirror.com/yallist/3.1.1
  3627. registry.npmmirror.com/lru-cache/6.0.0:
  3628. 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}
  3629. name: lru-cache
  3630. version: 6.0.0
  3631. engines: {node: '>=10'}
  3632. dependencies:
  3633. yallist: registry.npmmirror.com/yallist/4.0.0
  3634. dev: true
  3635. registry.npmmirror.com/magic-string-ast/0.3.0:
  3636. 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}
  3637. name: magic-string-ast
  3638. version: 0.3.0
  3639. engines: {node: '>=16.14.0'}
  3640. dependencies:
  3641. magic-string: registry.npmmirror.com/magic-string/0.30.5
  3642. dev: true
  3643. registry.npmmirror.com/magic-string/0.30.5:
  3644. 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}
  3645. name: magic-string
  3646. version: 0.30.5
  3647. engines: {node: '>=12'}
  3648. dependencies:
  3649. '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.15
  3650. registry.npmmirror.com/mdn-data/2.0.30:
  3651. 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}
  3652. name: mdn-data
  3653. version: 2.0.30
  3654. dev: false
  3655. registry.npmmirror.com/merge-stream/2.0.0:
  3656. 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}
  3657. name: merge-stream
  3658. version: 2.0.0
  3659. dev: false
  3660. registry.npmmirror.com/merge2/1.4.1:
  3661. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz}
  3662. name: merge2
  3663. version: 1.4.1
  3664. engines: {node: '>= 8'}
  3665. registry.npmmirror.com/micromatch/4.0.5:
  3666. resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz}
  3667. name: micromatch
  3668. version: 4.0.5
  3669. engines: {node: '>=8.6'}
  3670. dependencies:
  3671. braces: registry.npmmirror.com/braces/3.0.2
  3672. picomatch: registry.npmmirror.com/picomatch/2.3.1
  3673. registry.npmmirror.com/mime-db/1.52.0:
  3674. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz}
  3675. name: mime-db
  3676. version: 1.52.0
  3677. engines: {node: '>= 0.6'}
  3678. dev: false
  3679. registry.npmmirror.com/mime-types/2.1.35:
  3680. 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}
  3681. name: mime-types
  3682. version: 2.1.35
  3683. engines: {node: '>= 0.6'}
  3684. dependencies:
  3685. mime-db: registry.npmmirror.com/mime-db/1.52.0
  3686. dev: false
  3687. registry.npmmirror.com/mimic-fn/2.1.0:
  3688. resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz}
  3689. name: mimic-fn
  3690. version: 2.1.0
  3691. engines: {node: '>=6'}
  3692. dev: false
  3693. registry.npmmirror.com/minimatch/9.0.3:
  3694. resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minimatch/-/minimatch-9.0.3.tgz}
  3695. name: minimatch
  3696. version: 9.0.3
  3697. engines: {node: '>=16 || 14 >=14.17'}
  3698. dependencies:
  3699. brace-expansion: registry.npmmirror.com/brace-expansion/2.0.1
  3700. dev: true
  3701. registry.npmmirror.com/mlly/1.4.2:
  3702. 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}
  3703. name: mlly
  3704. version: 1.4.2
  3705. dependencies:
  3706. acorn: registry.npmmirror.com/acorn/8.11.2
  3707. pathe: registry.npmmirror.com/pathe/1.1.1
  3708. pkg-types: registry.npmmirror.com/pkg-types/1.0.3
  3709. ufo: registry.npmmirror.com/ufo/1.3.2
  3710. registry.npmmirror.com/mrmime/1.0.1:
  3711. resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mrmime/-/mrmime-1.0.1.tgz}
  3712. name: mrmime
  3713. version: 1.0.1
  3714. engines: {node: '>=10'}
  3715. registry.npmmirror.com/ms/2.1.2:
  3716. 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}
  3717. name: ms
  3718. version: 2.1.2
  3719. registry.npmmirror.com/muggle-string/0.3.1:
  3720. 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}
  3721. name: muggle-string
  3722. version: 0.3.1
  3723. dev: true
  3724. registry.npmmirror.com/nanoid/3.3.7:
  3725. resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz}
  3726. name: nanoid
  3727. version: 3.3.7
  3728. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  3729. hasBin: true
  3730. registry.npmmirror.com/node-fetch-native/1.4.1:
  3731. 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}
  3732. name: node-fetch-native
  3733. version: 1.4.1
  3734. dev: false
  3735. registry.npmmirror.com/node-releases/2.0.14:
  3736. resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.14.tgz}
  3737. name: node-releases
  3738. version: 2.0.14
  3739. registry.npmmirror.com/normalize-path/3.0.0:
  3740. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz}
  3741. name: normalize-path
  3742. version: 3.0.0
  3743. engines: {node: '>=0.10.0'}
  3744. registry.npmmirror.com/npm-run-path/4.0.1:
  3745. 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}
  3746. name: npm-run-path
  3747. version: 4.0.1
  3748. engines: {node: '>=8'}
  3749. dependencies:
  3750. path-key: registry.npmmirror.com/path-key/3.1.1
  3751. dev: false
  3752. registry.npmmirror.com/object-inspect/1.13.1:
  3753. 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}
  3754. name: object-inspect
  3755. version: 1.13.1
  3756. dev: false
  3757. registry.npmmirror.com/object-is/1.1.5:
  3758. 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}
  3759. name: object-is
  3760. version: 1.1.5
  3761. engines: {node: '>= 0.4'}
  3762. dependencies:
  3763. call-bind: registry.npmmirror.com/call-bind/1.0.5
  3764. define-properties: registry.npmmirror.com/define-properties/1.2.1
  3765. dev: false
  3766. registry.npmmirror.com/object-keys/1.1.1:
  3767. 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}
  3768. name: object-keys
  3769. version: 1.1.1
  3770. engines: {node: '>= 0.4'}
  3771. dev: false
  3772. registry.npmmirror.com/object.assign/4.1.5:
  3773. 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}
  3774. name: object.assign
  3775. version: 4.1.5
  3776. engines: {node: '>= 0.4'}
  3777. dependencies:
  3778. call-bind: registry.npmmirror.com/call-bind/1.0.5
  3779. define-properties: registry.npmmirror.com/define-properties/1.2.1
  3780. has-symbols: registry.npmmirror.com/has-symbols/1.0.3
  3781. object-keys: registry.npmmirror.com/object-keys/1.1.1
  3782. dev: false
  3783. registry.npmmirror.com/ofetch/1.3.3:
  3784. 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}
  3785. name: ofetch
  3786. version: 1.3.3
  3787. dependencies:
  3788. destr: registry.npmmirror.com/destr/2.0.2
  3789. node-fetch-native: registry.npmmirror.com/node-fetch-native/1.4.1
  3790. ufo: registry.npmmirror.com/ufo/1.3.2
  3791. dev: false
  3792. registry.npmmirror.com/onetime/5.1.2:
  3793. resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz}
  3794. name: onetime
  3795. version: 5.1.2
  3796. engines: {node: '>=6'}
  3797. dependencies:
  3798. mimic-fn: registry.npmmirror.com/mimic-fn/2.1.0
  3799. dev: false
  3800. registry.npmmirror.com/p-limit/3.1.0:
  3801. 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}
  3802. name: p-limit
  3803. version: 3.1.0
  3804. engines: {node: '>=10'}
  3805. dependencies:
  3806. yocto-queue: registry.npmmirror.com/yocto-queue/0.1.0
  3807. dev: false
  3808. registry.npmmirror.com/p-locate/5.0.0:
  3809. 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}
  3810. name: p-locate
  3811. version: 5.0.0
  3812. engines: {node: '>=10'}
  3813. dependencies:
  3814. p-limit: registry.npmmirror.com/p-limit/3.1.0
  3815. dev: false
  3816. registry.npmmirror.com/parse-code-context/1.0.0:
  3817. 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}
  3818. name: parse-code-context
  3819. version: 1.0.0
  3820. engines: {node: '>=6'}
  3821. dev: false
  3822. registry.npmmirror.com/path-browserify/1.0.1:
  3823. 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}
  3824. name: path-browserify
  3825. version: 1.0.1
  3826. dev: true
  3827. registry.npmmirror.com/path-exists/4.0.0:
  3828. 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}
  3829. name: path-exists
  3830. version: 4.0.0
  3831. engines: {node: '>=8'}
  3832. dev: false
  3833. registry.npmmirror.com/path-key/3.1.1:
  3834. 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}
  3835. name: path-key
  3836. version: 3.1.1
  3837. engines: {node: '>=8'}
  3838. dev: false
  3839. registry.npmmirror.com/path-parse/1.0.7:
  3840. 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}
  3841. name: path-parse
  3842. version: 1.0.7
  3843. dev: true
  3844. registry.npmmirror.com/pathe/1.1.1:
  3845. 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}
  3846. name: pathe
  3847. version: 1.1.1
  3848. registry.npmmirror.com/perfect-debounce/1.0.0:
  3849. 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}
  3850. name: perfect-debounce
  3851. version: 1.0.0
  3852. dev: false
  3853. registry.npmmirror.com/picocolors/1.0.0:
  3854. resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz}
  3855. name: picocolors
  3856. version: 1.0.0
  3857. registry.npmmirror.com/picomatch/2.3.1:
  3858. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz}
  3859. name: picomatch
  3860. version: 2.3.1
  3861. engines: {node: '>=8.6'}
  3862. registry.npmmirror.com/pkg-types/1.0.3:
  3863. resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pkg-types/-/pkg-types-1.0.3.tgz}
  3864. name: pkg-types
  3865. version: 1.0.3
  3866. dependencies:
  3867. jsonc-parser: registry.npmmirror.com/jsonc-parser/3.2.0
  3868. mlly: registry.npmmirror.com/mlly/1.4.2
  3869. pathe: registry.npmmirror.com/pathe/1.1.1
  3870. registry.npmmirror.com/postcss/8.4.32:
  3871. resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.32.tgz}
  3872. name: postcss
  3873. version: 8.4.32
  3874. engines: {node: ^10 || ^12 || >=14}
  3875. dependencies:
  3876. nanoid: registry.npmmirror.com/nanoid/3.3.7
  3877. picocolors: registry.npmmirror.com/picocolors/1.0.0
  3878. source-map-js: registry.npmmirror.com/source-map-js/1.0.2
  3879. registry.npmmirror.com/proxy-from-env/1.1.0:
  3880. 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}
  3881. name: proxy-from-env
  3882. version: 1.1.0
  3883. dev: false
  3884. registry.npmmirror.com/queue-microtask/1.2.3:
  3885. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz}
  3886. name: queue-microtask
  3887. version: 1.2.3
  3888. registry.npmmirror.com/readdirp/3.6.0:
  3889. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz}
  3890. name: readdirp
  3891. version: 3.6.0
  3892. engines: {node: '>=8.10.0'}
  3893. dependencies:
  3894. picomatch: registry.npmmirror.com/picomatch/2.3.1
  3895. registry.npmmirror.com/regenerate-unicode-properties/10.1.1:
  3896. 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}
  3897. name: regenerate-unicode-properties
  3898. version: 10.1.1
  3899. engines: {node: '>=4'}
  3900. dependencies:
  3901. regenerate: registry.npmmirror.com/regenerate/1.4.2
  3902. dev: true
  3903. registry.npmmirror.com/regenerate/1.4.2:
  3904. 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}
  3905. name: regenerate
  3906. version: 1.4.2
  3907. dev: true
  3908. registry.npmmirror.com/regenerator-runtime/0.13.11:
  3909. 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}
  3910. name: regenerator-runtime
  3911. version: 0.13.11
  3912. dev: true
  3913. registry.npmmirror.com/regenerator-runtime/0.14.0:
  3914. resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz}
  3915. name: regenerator-runtime
  3916. version: 0.14.0
  3917. dev: true
  3918. registry.npmmirror.com/regenerator-transform/0.15.2:
  3919. resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz}
  3920. name: regenerator-transform
  3921. version: 0.15.2
  3922. dependencies:
  3923. '@babel/runtime': registry.npmmirror.com/@babel/runtime/7.23.6
  3924. dev: true
  3925. registry.npmmirror.com/regexp.prototype.flags/1.5.1:
  3926. 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}
  3927. name: regexp.prototype.flags
  3928. version: 1.5.1
  3929. engines: {node: '>= 0.4'}
  3930. dependencies:
  3931. call-bind: registry.npmmirror.com/call-bind/1.0.5
  3932. define-properties: registry.npmmirror.com/define-properties/1.2.1
  3933. set-function-name: registry.npmmirror.com/set-function-name/2.0.1
  3934. dev: false
  3935. registry.npmmirror.com/regexpu-core/5.3.2:
  3936. 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}
  3937. name: regexpu-core
  3938. version: 5.3.2
  3939. engines: {node: '>=4'}
  3940. dependencies:
  3941. '@babel/regjsgen': registry.npmmirror.com/@babel/regjsgen/0.8.0
  3942. regenerate: registry.npmmirror.com/regenerate/1.4.2
  3943. regenerate-unicode-properties: registry.npmmirror.com/regenerate-unicode-properties/10.1.1
  3944. regjsparser: registry.npmmirror.com/regjsparser/0.9.1
  3945. unicode-match-property-ecmascript: registry.npmmirror.com/unicode-match-property-ecmascript/2.0.0
  3946. unicode-match-property-value-ecmascript: registry.npmmirror.com/unicode-match-property-value-ecmascript/2.1.0
  3947. dev: true
  3948. registry.npmmirror.com/regjsparser/0.9.1:
  3949. resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regjsparser/-/regjsparser-0.9.1.tgz}
  3950. name: regjsparser
  3951. version: 0.9.1
  3952. hasBin: true
  3953. dependencies:
  3954. jsesc: registry.npmmirror.com/jsesc/0.5.0
  3955. dev: true
  3956. registry.npmmirror.com/resolve.exports/2.0.2:
  3957. 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}
  3958. name: resolve.exports
  3959. version: 2.0.2
  3960. engines: {node: '>=10'}
  3961. dev: true
  3962. registry.npmmirror.com/resolve/1.22.8:
  3963. resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve/-/resolve-1.22.8.tgz}
  3964. name: resolve
  3965. version: 1.22.8
  3966. hasBin: true
  3967. dependencies:
  3968. is-core-module: registry.npmmirror.com/is-core-module/2.13.1
  3969. path-parse: registry.npmmirror.com/path-parse/1.0.7
  3970. supports-preserve-symlinks-flag: registry.npmmirror.com/supports-preserve-symlinks-flag/1.0.0
  3971. dev: true
  3972. registry.npmmirror.com/reusify/1.0.4:
  3973. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz}
  3974. name: reusify
  3975. version: 1.0.4
  3976. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  3977. registry.npmmirror.com/rollup/4.8.0:
  3978. resolution: {integrity: sha512-NpsklK2fach5CdI+PScmlE5R4Ao/FSWtF7LkoIrHDxPACY/xshNasPsbpG0VVHxUTbf74tJbVT4PrP8JsJ6ZDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-4.8.0.tgz}
  3979. name: rollup
  3980. version: 4.8.0
  3981. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  3982. hasBin: true
  3983. optionalDependencies:
  3984. '@rollup/rollup-android-arm-eabi': registry.npmmirror.com/@rollup/rollup-android-arm-eabi/4.8.0
  3985. '@rollup/rollup-android-arm64': registry.npmmirror.com/@rollup/rollup-android-arm64/4.8.0
  3986. '@rollup/rollup-darwin-arm64': registry.npmmirror.com/@rollup/rollup-darwin-arm64/4.8.0
  3987. '@rollup/rollup-darwin-x64': registry.npmmirror.com/@rollup/rollup-darwin-x64/4.8.0
  3988. '@rollup/rollup-linux-arm-gnueabihf': registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/4.8.0
  3989. '@rollup/rollup-linux-arm64-gnu': registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/4.8.0
  3990. '@rollup/rollup-linux-arm64-musl': registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/4.8.0
  3991. '@rollup/rollup-linux-riscv64-gnu': registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/4.8.0
  3992. '@rollup/rollup-linux-x64-gnu': registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/4.8.0
  3993. '@rollup/rollup-linux-x64-musl': registry.npmmirror.com/@rollup/rollup-linux-x64-musl/4.8.0
  3994. '@rollup/rollup-win32-arm64-msvc': registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/4.8.0
  3995. '@rollup/rollup-win32-ia32-msvc': registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/4.8.0
  3996. '@rollup/rollup-win32-x64-msvc': registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/4.8.0
  3997. fsevents: registry.npmmirror.com/fsevents/2.3.3
  3998. registry.npmmirror.com/run-parallel/1.2.0:
  3999. 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}
  4000. name: run-parallel
  4001. version: 1.2.0
  4002. dependencies:
  4003. queue-microtask: registry.npmmirror.com/queue-microtask/1.2.3
  4004. registry.npmmirror.com/sass/1.62.1:
  4005. resolution: {integrity: sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sass/-/sass-1.62.1.tgz}
  4006. name: sass
  4007. version: 1.62.1
  4008. engines: {node: '>=14.0.0'}
  4009. hasBin: true
  4010. dependencies:
  4011. chokidar: registry.npmmirror.com/chokidar/3.5.3
  4012. immutable: registry.npmmirror.com/immutable/4.3.4
  4013. source-map-js: registry.npmmirror.com/source-map-js/1.0.2
  4014. registry.npmmirror.com/scule/1.1.1:
  4015. 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}
  4016. name: scule
  4017. version: 1.1.1
  4018. dev: true
  4019. registry.npmmirror.com/semver/6.3.1:
  4020. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz}
  4021. name: semver
  4022. version: 6.3.1
  4023. hasBin: true
  4024. registry.npmmirror.com/semver/7.5.4:
  4025. 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}
  4026. name: semver
  4027. version: 7.5.4
  4028. engines: {node: '>=10'}
  4029. hasBin: true
  4030. dependencies:
  4031. lru-cache: registry.npmmirror.com/lru-cache/6.0.0
  4032. dev: true
  4033. registry.npmmirror.com/set-function-length/1.1.1:
  4034. 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}
  4035. name: set-function-length
  4036. version: 1.1.1
  4037. engines: {node: '>= 0.4'}
  4038. dependencies:
  4039. define-data-property: registry.npmmirror.com/define-data-property/1.1.1
  4040. get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
  4041. gopd: registry.npmmirror.com/gopd/1.0.1
  4042. has-property-descriptors: registry.npmmirror.com/has-property-descriptors/1.0.1
  4043. dev: false
  4044. registry.npmmirror.com/set-function-name/2.0.1:
  4045. 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}
  4046. name: set-function-name
  4047. version: 2.0.1
  4048. engines: {node: '>= 0.4'}
  4049. dependencies:
  4050. define-data-property: registry.npmmirror.com/define-data-property/1.1.1
  4051. functions-have-names: registry.npmmirror.com/functions-have-names/1.2.3
  4052. has-property-descriptors: registry.npmmirror.com/has-property-descriptors/1.0.1
  4053. dev: false
  4054. registry.npmmirror.com/shebang-command/2.0.0:
  4055. 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}
  4056. name: shebang-command
  4057. version: 2.0.0
  4058. engines: {node: '>=8'}
  4059. dependencies:
  4060. shebang-regex: registry.npmmirror.com/shebang-regex/3.0.0
  4061. dev: false
  4062. registry.npmmirror.com/shebang-regex/3.0.0:
  4063. 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}
  4064. name: shebang-regex
  4065. version: 3.0.0
  4066. engines: {node: '>=8'}
  4067. dev: false
  4068. registry.npmmirror.com/side-channel/1.0.4:
  4069. resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz}
  4070. name: side-channel
  4071. version: 1.0.4
  4072. dependencies:
  4073. call-bind: registry.npmmirror.com/call-bind/1.0.5
  4074. get-intrinsic: registry.npmmirror.com/get-intrinsic/1.2.2
  4075. object-inspect: registry.npmmirror.com/object-inspect/1.13.1
  4076. dev: false
  4077. registry.npmmirror.com/signal-exit/3.0.7:
  4078. 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}
  4079. name: signal-exit
  4080. version: 3.0.7
  4081. dev: false
  4082. registry.npmmirror.com/sirv/2.0.3:
  4083. 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}
  4084. name: sirv
  4085. version: 2.0.3
  4086. engines: {node: '>= 10'}
  4087. dependencies:
  4088. '@polka/url': registry.npmmirror.com/@polka/url/1.0.0-next.24
  4089. mrmime: registry.npmmirror.com/mrmime/1.0.1
  4090. totalist: registry.npmmirror.com/totalist/3.0.1
  4091. registry.npmmirror.com/source-map-js/1.0.2:
  4092. 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}
  4093. name: source-map-js
  4094. version: 1.0.2
  4095. engines: {node: '>=0.10.0'}
  4096. registry.npmmirror.com/stop-iteration-iterator/1.0.0:
  4097. 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}
  4098. name: stop-iteration-iterator
  4099. version: 1.0.0
  4100. engines: {node: '>= 0.4'}
  4101. dependencies:
  4102. internal-slot: registry.npmmirror.com/internal-slot/1.0.6
  4103. dev: false
  4104. registry.npmmirror.com/strip-final-newline/2.0.0:
  4105. 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}
  4106. name: strip-final-newline
  4107. version: 2.0.0
  4108. engines: {node: '>=6'}
  4109. dev: false
  4110. registry.npmmirror.com/strip-literal/1.3.0:
  4111. resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-literal/-/strip-literal-1.3.0.tgz}
  4112. name: strip-literal
  4113. version: 1.3.0
  4114. dependencies:
  4115. acorn: registry.npmmirror.com/acorn/8.11.2
  4116. dev: true
  4117. registry.npmmirror.com/supports-color/5.5.0:
  4118. resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz}
  4119. name: supports-color
  4120. version: 5.5.0
  4121. engines: {node: '>=4'}
  4122. dependencies:
  4123. has-flag: registry.npmmirror.com/has-flag/3.0.0
  4124. registry.npmmirror.com/supports-preserve-symlinks-flag/1.0.0:
  4125. 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}
  4126. name: supports-preserve-symlinks-flag
  4127. version: 1.0.0
  4128. engines: {node: '>= 0.4'}
  4129. dev: true
  4130. registry.npmmirror.com/systemjs/6.14.2:
  4131. resolution: {integrity: sha512-1TlOwvKWdXxAY9vba+huLu99zrQURDWA8pUTYsRIYDZYQbGyK+pyEP4h4dlySsqo7ozyJBmYD20F+iUHhAltEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/systemjs/-/systemjs-6.14.2.tgz}
  4132. name: systemjs
  4133. version: 6.14.2
  4134. dev: true
  4135. registry.npmmirror.com/to-fast-properties/2.0.0:
  4136. 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}
  4137. name: to-fast-properties
  4138. version: 2.0.0
  4139. engines: {node: '>=4'}
  4140. registry.npmmirror.com/to-regex-range/5.0.1:
  4141. 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}
  4142. name: to-regex-range
  4143. version: 5.0.1
  4144. engines: {node: '>=8.0'}
  4145. dependencies:
  4146. is-number: registry.npmmirror.com/is-number/7.0.0
  4147. registry.npmmirror.com/totalist/3.0.1:
  4148. resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/totalist/-/totalist-3.0.1.tgz}
  4149. name: totalist
  4150. version: 3.0.1
  4151. engines: {node: '>=6'}
  4152. registry.npmmirror.com/typescript/5.3.3:
  4153. resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/-/typescript-5.3.3.tgz}
  4154. name: typescript
  4155. version: 5.3.3
  4156. engines: {node: '>=14.17'}
  4157. hasBin: true
  4158. registry.npmmirror.com/ufo/1.3.2:
  4159. 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}
  4160. name: ufo
  4161. version: 1.3.2
  4162. registry.npmmirror.com/unconfig/0.3.11:
  4163. 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}
  4164. name: unconfig
  4165. version: 0.3.11
  4166. dependencies:
  4167. '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
  4168. defu: registry.npmmirror.com/defu/6.1.3
  4169. jiti: registry.npmmirror.com/jiti/1.21.0
  4170. mlly: registry.npmmirror.com/mlly/1.4.2
  4171. dev: false
  4172. registry.npmmirror.com/unicode-canonical-property-names-ecmascript/2.0.0:
  4173. 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}
  4174. name: unicode-canonical-property-names-ecmascript
  4175. version: 2.0.0
  4176. engines: {node: '>=4'}
  4177. dev: true
  4178. registry.npmmirror.com/unicode-match-property-ecmascript/2.0.0:
  4179. 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}
  4180. name: unicode-match-property-ecmascript
  4181. version: 2.0.0
  4182. engines: {node: '>=4'}
  4183. dependencies:
  4184. unicode-canonical-property-names-ecmascript: registry.npmmirror.com/unicode-canonical-property-names-ecmascript/2.0.0
  4185. unicode-property-aliases-ecmascript: registry.npmmirror.com/unicode-property-aliases-ecmascript/2.1.0
  4186. dev: true
  4187. registry.npmmirror.com/unicode-match-property-value-ecmascript/2.1.0:
  4188. 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}
  4189. name: unicode-match-property-value-ecmascript
  4190. version: 2.1.0
  4191. engines: {node: '>=4'}
  4192. dev: true
  4193. registry.npmmirror.com/unicode-property-aliases-ecmascript/2.1.0:
  4194. 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}
  4195. name: unicode-property-aliases-ecmascript
  4196. version: 2.1.0
  4197. engines: {node: '>=4'}
  4198. dev: true
  4199. registry.npmmirror.com/unimport/3.6.1:
  4200. resolution: {integrity: sha512-zKzbp8AQ+l8QK3XrONtUBdgBbMI8TkGh8hBYF77ZkVqMLLIAHwGSwJRFolPQMBx/5pezeRKvmu2gzlqnxRZeqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unimport/-/unimport-3.6.1.tgz}
  4201. name: unimport
  4202. version: 3.6.1
  4203. dependencies:
  4204. '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
  4205. escape-string-regexp: registry.npmmirror.com/escape-string-regexp/5.0.0
  4206. fast-glob: registry.npmmirror.com/fast-glob/3.3.2
  4207. local-pkg: registry.npmmirror.com/local-pkg/0.5.0
  4208. magic-string: registry.npmmirror.com/magic-string/0.30.5
  4209. mlly: registry.npmmirror.com/mlly/1.4.2
  4210. pathe: registry.npmmirror.com/pathe/1.1.1
  4211. pkg-types: registry.npmmirror.com/pkg-types/1.0.3
  4212. scule: registry.npmmirror.com/scule/1.1.1
  4213. strip-literal: registry.npmmirror.com/strip-literal/1.3.0
  4214. unplugin: registry.npmmirror.com/unplugin/1.5.1
  4215. transitivePeerDependencies:
  4216. - rollup
  4217. dev: true
  4218. registry.npmmirror.com/unocss/0.58.0_vite@5.0.8:
  4219. 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}
  4220. id: registry.npmmirror.com/unocss/0.58.0
  4221. name: unocss
  4222. version: 0.58.0
  4223. engines: {node: '>=14'}
  4224. peerDependencies:
  4225. '@unocss/webpack': 0.58.0
  4226. vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
  4227. peerDependenciesMeta:
  4228. '@unocss/webpack':
  4229. optional: true
  4230. vite:
  4231. optional: true
  4232. dependencies:
  4233. '@unocss/astro': registry.npmmirror.com/@unocss/astro/0.58.0_vite@5.0.8
  4234. '@unocss/cli': registry.npmmirror.com/@unocss/cli/0.58.0
  4235. '@unocss/core': registry.npmmirror.com/@unocss/core/0.58.0
  4236. '@unocss/extractor-arbitrary-variants': registry.npmmirror.com/@unocss/extractor-arbitrary-variants/0.58.0
  4237. '@unocss/postcss': registry.npmmirror.com/@unocss/postcss/0.58.0
  4238. '@unocss/preset-attributify': registry.npmmirror.com/@unocss/preset-attributify/0.58.0
  4239. '@unocss/preset-icons': registry.npmmirror.com/@unocss/preset-icons/0.58.0
  4240. '@unocss/preset-mini': registry.npmmirror.com/@unocss/preset-mini/0.58.0
  4241. '@unocss/preset-tagify': registry.npmmirror.com/@unocss/preset-tagify/0.58.0
  4242. '@unocss/preset-typography': registry.npmmirror.com/@unocss/preset-typography/0.58.0
  4243. '@unocss/preset-uno': registry.npmmirror.com/@unocss/preset-uno/0.58.0
  4244. '@unocss/preset-web-fonts': registry.npmmirror.com/@unocss/preset-web-fonts/0.58.0
  4245. '@unocss/preset-wind': registry.npmmirror.com/@unocss/preset-wind/0.58.0
  4246. '@unocss/reset': registry.npmmirror.com/@unocss/reset/0.58.0
  4247. '@unocss/transformer-attributify-jsx': registry.npmmirror.com/@unocss/transformer-attributify-jsx/0.58.0
  4248. '@unocss/transformer-attributify-jsx-babel': registry.npmmirror.com/@unocss/transformer-attributify-jsx-babel/0.58.0
  4249. '@unocss/transformer-compile-class': registry.npmmirror.com/@unocss/transformer-compile-class/0.58.0
  4250. '@unocss/transformer-directives': registry.npmmirror.com/@unocss/transformer-directives/0.58.0
  4251. '@unocss/transformer-variant-group': registry.npmmirror.com/@unocss/transformer-variant-group/0.58.0
  4252. '@unocss/vite': registry.npmmirror.com/@unocss/vite/0.58.0_vite@5.0.8
  4253. vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
  4254. transitivePeerDependencies:
  4255. - rollup
  4256. - supports-color
  4257. dev: false
  4258. registry.npmmirror.com/unplugin-auto-import/0.16.7_@vueuse+core@10.7.0:
  4259. 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}
  4260. id: registry.npmmirror.com/unplugin-auto-import/0.16.7
  4261. name: unplugin-auto-import
  4262. version: 0.16.7
  4263. engines: {node: '>=14'}
  4264. peerDependencies:
  4265. '@nuxt/kit': ^3.2.2
  4266. '@vueuse/core': '*'
  4267. peerDependenciesMeta:
  4268. '@nuxt/kit':
  4269. optional: true
  4270. '@vueuse/core':
  4271. optional: true
  4272. dependencies:
  4273. '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
  4274. '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
  4275. '@vueuse/core': registry.npmmirror.com/@vueuse/core/10.7.0_vue@3.3.11
  4276. fast-glob: registry.npmmirror.com/fast-glob/3.3.2
  4277. local-pkg: registry.npmmirror.com/local-pkg/0.5.0
  4278. magic-string: registry.npmmirror.com/magic-string/0.30.5
  4279. minimatch: registry.npmmirror.com/minimatch/9.0.3
  4280. unimport: registry.npmmirror.com/unimport/3.6.1
  4281. unplugin: registry.npmmirror.com/unplugin/1.5.1
  4282. transitivePeerDependencies:
  4283. - rollup
  4284. dev: true
  4285. registry.npmmirror.com/unplugin-combine/0.8.1_vite@5.0.8:
  4286. resolution: {integrity: sha512-m2OSmXXRwCPZx8Ct8eF8WbjgTo8bydim2W1ofu2hDabGdr2pgDAoFjOP1J4MOIwa0OByqk1JX8IGlSdeE6uxVQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin-combine/-/unplugin-combine-0.8.1.tgz}
  4287. id: registry.npmmirror.com/unplugin-combine/0.8.1
  4288. name: unplugin-combine
  4289. version: 0.8.1
  4290. engines: {node: '>=16.14.0'}
  4291. peerDependencies:
  4292. esbuild: '>=0.13'
  4293. rollup: ^3.2.0 || ^4.0.0
  4294. vite: ^2.3.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
  4295. webpack: 4 || 5
  4296. peerDependenciesMeta:
  4297. esbuild:
  4298. optional: true
  4299. rollup:
  4300. optional: true
  4301. vite:
  4302. optional: true
  4303. webpack:
  4304. optional: true
  4305. dependencies:
  4306. '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
  4307. unplugin: registry.npmmirror.com/unplugin/1.5.1
  4308. vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
  4309. dev: true
  4310. registry.npmmirror.com/unplugin-vue-components/0.25.2_vue@3.3.11:
  4311. 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}
  4312. id: registry.npmmirror.com/unplugin-vue-components/0.25.2
  4313. name: unplugin-vue-components
  4314. version: 0.25.2
  4315. engines: {node: '>=14'}
  4316. peerDependencies:
  4317. '@babel/parser': ^7.15.8
  4318. '@nuxt/kit': ^3.2.2
  4319. vue: 2 || 3
  4320. peerDependenciesMeta:
  4321. '@babel/parser':
  4322. optional: true
  4323. '@nuxt/kit':
  4324. optional: true
  4325. dependencies:
  4326. '@antfu/utils': registry.npmmirror.com/@antfu/utils/0.7.7
  4327. '@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/5.1.0
  4328. chokidar: registry.npmmirror.com/chokidar/3.5.3
  4329. debug: registry.npmmirror.com/debug/4.3.4
  4330. fast-glob: registry.npmmirror.com/fast-glob/3.3.2
  4331. local-pkg: registry.npmmirror.com/local-pkg/0.4.3
  4332. magic-string: registry.npmmirror.com/magic-string/0.30.5
  4333. minimatch: registry.npmmirror.com/minimatch/9.0.3
  4334. resolve: registry.npmmirror.com/resolve/1.22.8
  4335. unplugin: registry.npmmirror.com/unplugin/1.5.1
  4336. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  4337. transitivePeerDependencies:
  4338. - rollup
  4339. - supports-color
  4340. dev: true
  4341. registry.npmmirror.com/unplugin-vue-define-options/1.4.1_vue@3.3.11:
  4342. 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}
  4343. id: registry.npmmirror.com/unplugin-vue-define-options/1.4.1
  4344. name: unplugin-vue-define-options
  4345. version: 1.4.1
  4346. engines: {node: '>=16.14.0'}
  4347. dependencies:
  4348. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  4349. ast-walker-scope: registry.npmmirror.com/ast-walker-scope/0.5.0
  4350. unplugin: registry.npmmirror.com/unplugin/1.5.1
  4351. transitivePeerDependencies:
  4352. - rollup
  4353. - vue
  4354. dev: true
  4355. registry.npmmirror.com/unplugin-vue-macros/2.7.2_kjy4kr7ghkor6vh7yweuhrtx7e:
  4356. 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}
  4357. id: registry.npmmirror.com/unplugin-vue-macros/2.7.2
  4358. name: unplugin-vue-macros
  4359. version: 2.7.2
  4360. engines: {node: '>=16.14.0'}
  4361. peerDependencies:
  4362. vue: ^2.7.0 || ^3.2.25
  4363. dependencies:
  4364. '@vue-macros/better-define': registry.npmmirror.com/@vue-macros/better-define/1.7.1_vue@3.3.11
  4365. '@vue-macros/boolean-prop': registry.npmmirror.com/@vue-macros/boolean-prop/0.3.1_vue@3.3.11
  4366. '@vue-macros/chain-call': registry.npmmirror.com/@vue-macros/chain-call/0.2.1_vue@3.3.11
  4367. '@vue-macros/common': registry.npmmirror.com/@vue-macros/common/1.10.0_vue@3.3.11
  4368. '@vue-macros/define-emit': registry.npmmirror.com/@vue-macros/define-emit/0.2.1_vue@3.3.11
  4369. '@vue-macros/define-models': registry.npmmirror.com/@vue-macros/define-models/1.2.1_skvchchimvsyroofndahiegrdi
  4370. '@vue-macros/define-prop': registry.npmmirror.com/@vue-macros/define-prop/0.3.1_vue@3.3.11
  4371. '@vue-macros/define-props': registry.npmmirror.com/@vue-macros/define-props/2.0.1_vpxk4enuzjo2mj7qqkh7tzvmae
  4372. '@vue-macros/define-props-refs': registry.npmmirror.com/@vue-macros/define-props-refs/1.2.1_vue@3.3.11
  4373. '@vue-macros/define-render': registry.npmmirror.com/@vue-macros/define-render/1.5.1_vue@3.3.11
  4374. '@vue-macros/define-slots': registry.npmmirror.com/@vue-macros/define-slots/1.1.1_vue@3.3.11
  4375. '@vue-macros/devtools': registry.npmmirror.com/@vue-macros/devtools/0.2.0_ntk5c343sybimd4hibvldwklca
  4376. '@vue-macros/export-expose': registry.npmmirror.com/@vue-macros/export-expose/0.1.1_vue@3.3.11
  4377. '@vue-macros/export-props': registry.npmmirror.com/@vue-macros/export-props/0.4.1_vue@3.3.11
  4378. '@vue-macros/export-render': registry.npmmirror.com/@vue-macros/export-render/0.2.1_vue@3.3.11
  4379. '@vue-macros/hoist-static': registry.npmmirror.com/@vue-macros/hoist-static/1.5.1_vue@3.3.11
  4380. '@vue-macros/jsx-directive': registry.npmmirror.com/@vue-macros/jsx-directive/0.8.1_vue@3.3.11
  4381. '@vue-macros/named-template': registry.npmmirror.com/@vue-macros/named-template/0.4.1_vue@3.3.11
  4382. '@vue-macros/reactivity-transform': registry.npmmirror.com/@vue-macros/reactivity-transform/0.4.1_vue@3.3.11
  4383. '@vue-macros/setup-block': registry.npmmirror.com/@vue-macros/setup-block/0.3.1_vue@3.3.11
  4384. '@vue-macros/setup-component': registry.npmmirror.com/@vue-macros/setup-component/0.17.1_vue@3.3.11
  4385. '@vue-macros/setup-sfc': registry.npmmirror.com/@vue-macros/setup-sfc/0.17.1_vue@3.3.11
  4386. '@vue-macros/short-bind': registry.npmmirror.com/@vue-macros/short-bind/0.2.1_vue@3.3.11
  4387. '@vue-macros/short-emits': registry.npmmirror.com/@vue-macros/short-emits/1.5.1_vue@3.3.11
  4388. '@vue-macros/short-vmodel': registry.npmmirror.com/@vue-macros/short-vmodel/1.4.1_vue@3.3.11
  4389. unplugin: registry.npmmirror.com/unplugin/1.5.1
  4390. unplugin-combine: registry.npmmirror.com/unplugin-combine/0.8.1_vite@5.0.8
  4391. unplugin-vue-define-options: registry.npmmirror.com/unplugin-vue-define-options/1.4.1_vue@3.3.11
  4392. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  4393. transitivePeerDependencies:
  4394. - '@vueuse/core'
  4395. - esbuild
  4396. - rollup
  4397. - typescript
  4398. - vite
  4399. - webpack
  4400. dev: true
  4401. registry.npmmirror.com/unplugin/1.5.1:
  4402. resolution: {integrity: sha512-0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unplugin/-/unplugin-1.5.1.tgz}
  4403. name: unplugin
  4404. version: 1.5.1
  4405. dependencies:
  4406. acorn: registry.npmmirror.com/acorn/8.11.2
  4407. chokidar: registry.npmmirror.com/chokidar/3.5.3
  4408. webpack-sources: registry.npmmirror.com/webpack-sources/3.2.3
  4409. webpack-virtual-modules: registry.npmmirror.com/webpack-virtual-modules/0.6.1
  4410. dev: true
  4411. registry.npmmirror.com/update-browserslist-db/1.0.13_browserslist@4.22.2:
  4412. 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}
  4413. id: registry.npmmirror.com/update-browserslist-db/1.0.13
  4414. name: update-browserslist-db
  4415. version: 1.0.13
  4416. hasBin: true
  4417. peerDependencies:
  4418. browserslist: '>= 4.21.0'
  4419. dependencies:
  4420. browserslist: registry.npmmirror.com/browserslist/4.22.2
  4421. escalade: registry.npmmirror.com/escalade/3.1.1
  4422. picocolors: registry.npmmirror.com/picocolors/1.0.0
  4423. registry.npmmirror.com/vant/4.8.0_vue@3.3.11:
  4424. 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}
  4425. id: registry.npmmirror.com/vant/4.8.0
  4426. name: vant
  4427. version: 4.8.0
  4428. peerDependencies:
  4429. vue: ^3.0.0
  4430. dependencies:
  4431. '@vant/popperjs': registry.npmmirror.com/@vant/popperjs/1.3.0
  4432. '@vant/use': registry.npmmirror.com/@vant/use/1.6.0_vue@3.3.11
  4433. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  4434. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  4435. dev: false
  4436. registry.npmmirror.com/vite-plugin-pages/0.32.0_vite@5.0.8:
  4437. 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}
  4438. id: registry.npmmirror.com/vite-plugin-pages/0.32.0
  4439. name: vite-plugin-pages
  4440. version: 0.32.0
  4441. peerDependencies:
  4442. '@vue/compiler-sfc': ^2.7.0 || ^3.0.0
  4443. vite: ^2.0.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0
  4444. peerDependenciesMeta:
  4445. '@vue/compiler-sfc':
  4446. optional: true
  4447. dependencies:
  4448. '@types/debug': registry.npmmirror.com/@types/debug/4.1.12
  4449. debug: registry.npmmirror.com/debug/4.3.4
  4450. deep-equal: registry.npmmirror.com/deep-equal/2.2.3
  4451. extract-comments: registry.npmmirror.com/extract-comments/1.1.0
  4452. fast-glob: registry.npmmirror.com/fast-glob/3.3.2
  4453. json5: registry.npmmirror.com/json5/2.2.3
  4454. local-pkg: registry.npmmirror.com/local-pkg/0.5.0
  4455. picocolors: registry.npmmirror.com/picocolors/1.0.0
  4456. vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
  4457. yaml: registry.npmmirror.com/yaml/2.3.4
  4458. transitivePeerDependencies:
  4459. - supports-color
  4460. dev: false
  4461. registry.npmmirror.com/vite-plugin-windicss/1.9.2_vite@5.0.8:
  4462. 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}
  4463. id: registry.npmmirror.com/vite-plugin-windicss/1.9.2
  4464. name: vite-plugin-windicss
  4465. version: 1.9.2
  4466. peerDependencies:
  4467. vite: ^2.0.1 || ^3.0.0 || ^4.0.0 || ^5.0.0
  4468. dependencies:
  4469. '@windicss/plugin-utils': registry.npmmirror.com/@windicss/plugin-utils/1.9.2
  4470. debug: registry.npmmirror.com/debug/4.3.4
  4471. kolorist: registry.npmmirror.com/kolorist/1.8.0
  4472. vite: registry.npmmirror.com/vite/5.0.8_sass@1.62.1
  4473. windicss: registry.npmmirror.com/windicss/3.5.6
  4474. transitivePeerDependencies:
  4475. - supports-color
  4476. dev: false
  4477. registry.npmmirror.com/vite/5.0.8_sass@1.62.1:
  4478. resolution: {integrity: sha512-jYMALd8aeqR3yS9xlHd0OzQJndS9fH5ylVgWdB+pxTwxLKdO1pgC5Dlb398BUxpfaBxa4M9oT7j1g503Gaj5IQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/-/vite-5.0.8.tgz}
  4479. id: registry.npmmirror.com/vite/5.0.8
  4480. name: vite
  4481. version: 5.0.8
  4482. engines: {node: ^18.0.0 || >=20.0.0}
  4483. hasBin: true
  4484. peerDependencies:
  4485. '@types/node': ^18.0.0 || >=20.0.0
  4486. less: '*'
  4487. lightningcss: ^1.21.0
  4488. sass: '*'
  4489. stylus: '*'
  4490. sugarss: '*'
  4491. terser: ^5.4.0
  4492. peerDependenciesMeta:
  4493. '@types/node':
  4494. optional: true
  4495. less:
  4496. optional: true
  4497. lightningcss:
  4498. optional: true
  4499. sass:
  4500. optional: true
  4501. stylus:
  4502. optional: true
  4503. sugarss:
  4504. optional: true
  4505. terser:
  4506. optional: true
  4507. dependencies:
  4508. esbuild: registry.npmmirror.com/esbuild/0.19.9
  4509. postcss: registry.npmmirror.com/postcss/8.4.32
  4510. rollup: registry.npmmirror.com/rollup/4.8.0
  4511. sass: registry.npmmirror.com/sass/1.62.1
  4512. optionalDependencies:
  4513. fsevents: registry.npmmirror.com/fsevents/2.3.3
  4514. registry.npmmirror.com/vue-demi/0.14.6_vue@3.3.11:
  4515. 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}
  4516. id: registry.npmmirror.com/vue-demi/0.14.6
  4517. name: vue-demi
  4518. version: 0.14.6
  4519. engines: {node: '>=12'}
  4520. hasBin: true
  4521. requiresBuild: true
  4522. peerDependencies:
  4523. '@vue/composition-api': ^1.0.0-rc.1
  4524. vue: ^3.0.0-0 || ^2.6.0
  4525. peerDependenciesMeta:
  4526. '@vue/composition-api':
  4527. optional: true
  4528. dependencies:
  4529. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  4530. registry.npmmirror.com/vue-router/4.2.5_vue@3.3.11:
  4531. 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}
  4532. id: registry.npmmirror.com/vue-router/4.2.5
  4533. name: vue-router
  4534. version: 4.2.5
  4535. peerDependencies:
  4536. vue: ^3.2.0
  4537. dependencies:
  4538. '@vue/devtools-api': registry.npmmirror.com/@vue/devtools-api/6.5.1
  4539. vue: registry.npmmirror.com/vue/3.3.11_typescript@5.3.3
  4540. dev: false
  4541. registry.npmmirror.com/vue-template-compiler/2.7.15:
  4542. 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}
  4543. name: vue-template-compiler
  4544. version: 2.7.15
  4545. dependencies:
  4546. de-indent: registry.npmmirror.com/de-indent/1.0.2
  4547. he: registry.npmmirror.com/he/1.2.0
  4548. dev: true
  4549. registry.npmmirror.com/vue-tsc/1.8.25_typescript@5.3.3:
  4550. 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}
  4551. id: registry.npmmirror.com/vue-tsc/1.8.25
  4552. name: vue-tsc
  4553. version: 1.8.25
  4554. hasBin: true
  4555. peerDependencies:
  4556. typescript: '*'
  4557. dependencies:
  4558. '@volar/typescript': registry.npmmirror.com/@volar/typescript/1.11.1
  4559. '@vue/language-core': registry.npmmirror.com/@vue/language-core/1.8.25_typescript@5.3.3
  4560. semver: registry.npmmirror.com/semver/7.5.4
  4561. typescript: registry.npmmirror.com/typescript/5.3.3
  4562. dev: true
  4563. registry.npmmirror.com/vue/3.3.11_typescript@5.3.3:
  4564. resolution: {integrity: sha512-d4oBctG92CRO1cQfVBZp6WJAs0n8AK4Xf5fNjQCBeKCvMI1efGQ5E3Alt1slFJS9fZuPcFoiAiqFvQlv1X7t/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue/-/vue-3.3.11.tgz}
  4565. id: registry.npmmirror.com/vue/3.3.11
  4566. name: vue
  4567. version: 3.3.11
  4568. peerDependencies:
  4569. typescript: '*'
  4570. peerDependenciesMeta:
  4571. typescript:
  4572. optional: true
  4573. dependencies:
  4574. '@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.3.11
  4575. '@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.3.11
  4576. '@vue/runtime-dom': registry.npmmirror.com/@vue/runtime-dom/3.3.11
  4577. '@vue/server-renderer': registry.npmmirror.com/@vue/server-renderer/3.3.11_vue@3.3.11
  4578. '@vue/shared': registry.npmmirror.com/@vue/shared/3.3.11
  4579. typescript: registry.npmmirror.com/typescript/5.3.3
  4580. registry.npmmirror.com/webpack-sources/3.2.3:
  4581. 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}
  4582. name: webpack-sources
  4583. version: 3.2.3
  4584. engines: {node: '>=10.13.0'}
  4585. dev: true
  4586. registry.npmmirror.com/webpack-virtual-modules/0.6.1:
  4587. 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}
  4588. name: webpack-virtual-modules
  4589. version: 0.6.1
  4590. dev: true
  4591. registry.npmmirror.com/which-boxed-primitive/1.0.2:
  4592. 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}
  4593. name: which-boxed-primitive
  4594. version: 1.0.2
  4595. dependencies:
  4596. is-bigint: registry.npmmirror.com/is-bigint/1.0.4
  4597. is-boolean-object: registry.npmmirror.com/is-boolean-object/1.1.2
  4598. is-number-object: registry.npmmirror.com/is-number-object/1.0.7
  4599. is-string: registry.npmmirror.com/is-string/1.0.7
  4600. is-symbol: registry.npmmirror.com/is-symbol/1.0.4
  4601. dev: false
  4602. registry.npmmirror.com/which-collection/1.0.1:
  4603. 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}
  4604. name: which-collection
  4605. version: 1.0.1
  4606. dependencies:
  4607. is-map: registry.npmmirror.com/is-map/2.0.2
  4608. is-set: registry.npmmirror.com/is-set/2.0.2
  4609. is-weakmap: registry.npmmirror.com/is-weakmap/2.0.1
  4610. is-weakset: registry.npmmirror.com/is-weakset/2.0.2
  4611. dev: false
  4612. registry.npmmirror.com/which-typed-array/1.1.13:
  4613. 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}
  4614. name: which-typed-array
  4615. version: 1.1.13
  4616. engines: {node: '>= 0.4'}
  4617. dependencies:
  4618. available-typed-arrays: registry.npmmirror.com/available-typed-arrays/1.0.5
  4619. call-bind: registry.npmmirror.com/call-bind/1.0.5
  4620. for-each: registry.npmmirror.com/for-each/0.3.3
  4621. gopd: registry.npmmirror.com/gopd/1.0.1
  4622. has-tostringtag: registry.npmmirror.com/has-tostringtag/1.0.0
  4623. dev: false
  4624. registry.npmmirror.com/which/2.0.2:
  4625. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which/-/which-2.0.2.tgz}
  4626. name: which
  4627. version: 2.0.2
  4628. engines: {node: '>= 8'}
  4629. hasBin: true
  4630. dependencies:
  4631. isexe: registry.npmmirror.com/isexe/2.0.0
  4632. dev: false
  4633. registry.npmmirror.com/windicss/3.5.6:
  4634. resolution: {integrity: sha512-P1mzPEjgFMZLX0ZqfFht4fhV/FX8DTG7ERG1fBLiWvd34pTLVReS5CVsewKn9PApSgXnVfPWwvq+qUsRwpnwFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/windicss/-/windicss-3.5.6.tgz}
  4635. name: windicss
  4636. version: 3.5.6
  4637. engines: {node: '>= 12'}
  4638. hasBin: true
  4639. dev: false
  4640. registry.npmmirror.com/yallist/3.1.1:
  4641. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz}
  4642. name: yallist
  4643. version: 3.1.1
  4644. registry.npmmirror.com/yallist/4.0.0:
  4645. resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz}
  4646. name: yallist
  4647. version: 4.0.0
  4648. dev: true
  4649. registry.npmmirror.com/yaml/2.3.4:
  4650. resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml/-/yaml-2.3.4.tgz}
  4651. name: yaml
  4652. version: 2.3.4
  4653. engines: {node: '>= 14'}
  4654. dev: false
  4655. registry.npmmirror.com/yocto-queue/0.1.0:
  4656. 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}
  4657. name: yocto-queue
  4658. version: 0.1.0
  4659. engines: {node: '>=10'}
  4660. dev: false