1 Star 0 Fork 0

无肉不欢/ck-plug

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pnpm-lock.yaml 186.96 KB
一键复制 编辑 原始数据 按行查看 历史
无肉不欢 提交于 2023-12-09 21:40 . tijaio
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192
lockfileVersion: 5.4
specifiers:
'@babel/core': ^7.23.5
'@babel/preset-env': ^7.23.5
axios: ^1.6.2
rollup: ^4.7.0
tsup: ^8.0.1
typescript: ^5.3.3
dependencies:
axios: registry.npmmirror.com/axios/1.6.2
typescript: registry.npmmirror.com/typescript/5.3.3
devDependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/preset-env': registry.npmmirror.com/@babel/preset-env/7.23.5_@babel+core@7.23.5
rollup: registry.npmmirror.com/rollup/4.7.0
tsup: registry.npmmirror.com/tsup/8.0.1_typescript@5.3.3
packages:
registry.npmmirror.com/@ampproject/remapping/2.2.1:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz}
name: '@ampproject/remapping'
version: 2.2.1
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.3
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20
dev: true
registry.npmmirror.com/@babel/code-frame/7.23.5:
resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.23.5.tgz}
name: '@babel/code-frame'
version: 7.23.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight/7.23.4
chalk: registry.npmmirror.com/chalk/2.4.2
dev: true
registry.npmmirror.com/@babel/compat-data/7.23.5:
resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.23.5.tgz}
name: '@babel/compat-data'
version: 7.23.5
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/core/7.23.5:
resolution: {integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.23.5.tgz}
name: '@babel/core'
version: 7.23.5
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.2.1
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.23.5
'@babel/generator': registry.npmmirror.com/@babel/generator/7.23.5
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.22.15
'@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.5
'@babel/helpers': registry.npmmirror.com/@babel/helpers/7.23.5
'@babel/parser': registry.npmmirror.com/@babel/parser/7.23.5
'@babel/template': registry.npmmirror.com/@babel/template/7.22.15
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.23.5
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
convert-source-map: registry.npmmirror.com/convert-source-map/2.0.0
debug: registry.npmmirror.com/debug/4.3.4
gensync: registry.npmmirror.com/gensync/1.0.0-beta.2
json5: registry.npmmirror.com/json5/2.2.3
semver: registry.npmmirror.com/semver/6.3.1
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/generator/7.23.5:
resolution: {integrity: sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.23.5.tgz}
name: '@babel/generator'
version: 7.23.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.3
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20
jsesc: registry.npmmirror.com/jsesc/2.5.2
dev: true
registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz}
name: '@babel/helper-annotate-as-pure'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/7.22.15:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz}
name: '@babel/helper-builder-binary-assignment-operator-visitor'
version: 7.22.15
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/helper-compilation-targets/7.22.15:
resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz}
name: '@babel/helper-compilation-targets'
version: 7.22.15
engines: {node: '>=6.9.0'}
dependencies:
'@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
'@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.23.5
browserslist: registry.npmmirror.com/browserslist/4.22.2
lru-cache: registry.npmmirror.com/lru-cache/5.1.1
semver: registry.npmmirror.com/semver/6.3.1
dev: true
registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.5_@babel+core@7.23.5:
resolution: {integrity: sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.5.tgz}
id: registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.5
name: '@babel/helper-create-class-features-plugin'
version: 7.23.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
'@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.23.0
'@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5
'@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.5
'@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
semver: registry.npmmirror.com/semver/6.3.1
dev: true
registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.5:
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz}
id: registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15
name: '@babel/helper-create-regexp-features-plugin'
version: 7.22.15
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
regexpu-core: registry.npmmirror.com/regexpu-core/5.3.2
semver: registry.npmmirror.com/semver/6.3.1
dev: true
registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.3_@babel+core@7.23.5:
resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz}
id: registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.3
name: '@babel/helper-define-polyfill-provider'
version: 0.4.3
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.22.15
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
debug: registry.npmmirror.com/debug/4.3.4
lodash.debounce: registry.npmmirror.com/lodash.debounce/4.0.8
resolve: registry.npmmirror.com/resolve/1.22.8
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20:
resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz}
name: '@babel/helper-environment-visitor'
version: 7.22.20
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-function-name/7.23.0:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz}
name: '@babel/helper-function-name'
version: 7.23.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.22.15
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/helper-hoist-variables/7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz}
name: '@babel/helper-hoist-variables'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.23.0:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz}
name: '@babel/helper-member-expression-to-functions'
version: 7.23.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/helper-module-imports/7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz}
name: '@babel/helper-module-imports'
version: 7.22.15
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz}
id: registry.npmmirror.com/@babel/helper-module-transforms/7.23.3
name: '@babel/helper-module-transforms'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.22.15
'@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.22.5
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
dev: true
registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz}
name: '@babel/helper-optimise-call-expression'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz}
name: '@babel/helper-plugin-utils'
version: 7.22.5
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.5:
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz}
id: registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20
name: '@babel/helper-remap-async-to-generator'
version: 7.22.20
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
'@babel/helper-wrap-function': registry.npmmirror.com/@babel/helper-wrap-function/7.22.20
dev: true
registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.5:
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz}
id: registry.npmmirror.com/@babel/helper-replace-supers/7.22.20
name: '@babel/helper-replace-supers'
version: 7.22.20
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
'@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.23.0
'@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5
dev: true
registry.npmmirror.com/@babel/helper-simple-access/7.22.5:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz}
name: '@babel/helper-simple-access'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz}
name: '@babel/helper-skip-transparent-expression-wrappers'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz}
name: '@babel/helper-split-export-declaration'
version: 7.22.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/helper-string-parser/7.23.4:
resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz}
name: '@babel/helper-string-parser'
version: 7.23.4
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20:
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz}
name: '@babel/helper-validator-identifier'
version: 7.22.20
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-validator-option/7.23.5:
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz}
name: '@babel/helper-validator-option'
version: 7.23.5
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-wrap-function/7.22.20:
resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz}
name: '@babel/helper-wrap-function'
version: 7.22.20
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
'@babel/template': registry.npmmirror.com/@babel/template/7.22.15
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/helpers/7.23.5:
resolution: {integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.23.5.tgz}
name: '@babel/helpers'
version: 7.23.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.22.15
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.23.5
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/highlight/7.23.4:
resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.23.4.tgz}
name: '@babel/highlight'
version: 7.23.4
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
chalk: registry.npmmirror.com/chalk/2.4.2
js-tokens: registry.npmmirror.com/js-tokens/4.0.0
dev: true
registry.npmmirror.com/@babel/parser/7.23.5:
resolution: {integrity: sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.23.5.tgz}
name: '@babel/parser'
version: 7.23.5
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.23.3
name: '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.23.3
name: '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
'@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/7.23.3
name: '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.23.5:
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz}
id: registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2
name: '@babel/plugin-proposal-private-property-in-object'
version: 7.21.0-placeholder-for-preset-env.2
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.5:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4
name: '@babel/plugin-syntax-async-generators'
version: 7.8.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.23.5:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13
name: '@babel/plugin-syntax-class-properties'
version: 7.12.13
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.5:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5
name: '@babel/plugin-syntax-class-static-block'
version: 7.14.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.5:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3
name: '@babel/plugin-syntax-dynamic-import'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.5:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3
name: '@babel/plugin-syntax-export-namespace-from'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-import-assertions/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-import-assertions/7.23.3
name: '@babel/plugin-syntax-import-assertions'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-import-attributes/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-import-attributes/7.23.3
name: '@babel/plugin-syntax-import-attributes'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.23.5:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4
name: '@babel/plugin-syntax-import-meta'
version: 7.10.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.5:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3
name: '@babel/plugin-syntax-json-strings'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.5:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4
name: '@babel/plugin-syntax-logical-assignment-operators'
version: 7.10.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.5:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3
name: '@babel/plugin-syntax-nullish-coalescing-operator'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.5:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4
name: '@babel/plugin-syntax-numeric-separator'
version: 7.10.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.5:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3
name: '@babel/plugin-syntax-object-rest-spread'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.5:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3
name: '@babel/plugin-syntax-optional-catch-binding'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.5:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3
name: '@babel/plugin-syntax-optional-chaining'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.23.5:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5
name: '@babel/plugin-syntax-private-property-in-object'
version: 7.14.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.23.5:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5
name: '@babel/plugin-syntax-top-level-await'
version: 7.14.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.23.5:
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/7.18.6
name: '@babel/plugin-syntax-unicode-sets-regex'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.23.3
name: '@babel/plugin-transform-arrow-functions'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/7.23.4
name: '@babel/plugin-transform-async-generator-functions'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.5
'@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.23.3
name: '@babel/plugin-transform-async-to-generator'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.22.15
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.23.3
name: '@babel/plugin-transform-block-scoped-functions'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.23.4
name: '@babel/plugin-transform-block-scoping'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-class-properties/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-class-properties/7.23.3
name: '@babel/plugin-transform-class-properties'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.5_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-class-static-block/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-class-static-block/7.23.4
name: '@babel/plugin-transform-class-static-block'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.5_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-classes/7.23.5_@babel+core@7.23.5:
resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-classes/7.23.5
name: '@babel/plugin-transform-classes'
version: 7.23.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.22.15
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
'@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.22.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.5
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
globals: registry.npmmirror.com/globals/11.12.0
dev: true
registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.23.3
name: '@babel/plugin-transform-computed-properties'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/template': registry.npmmirror.com/@babel/template/7.22.15
dev: true
registry.npmmirror.com/@babel/plugin-transform-destructuring/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-destructuring/7.23.3
name: '@babel/plugin-transform-destructuring'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.23.3
name: '@babel/plugin-transform-dotall-regex'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.23.3
name: '@babel/plugin-transform-duplicate-keys'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-dynamic-import/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-dynamic-import/7.23.4
name: '@babel/plugin-transform-dynamic-import'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.23.3
name: '@babel/plugin-transform-exponentiation-operator'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-builder-binary-assignment-operator-visitor': registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/7.22.15
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/7.23.4
name: '@babel/plugin-transform-export-namespace-from'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-for-of/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-for-of/7.23.3
name: '@babel/plugin-transform-for-of'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-function-name/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-function-name/7.23.3
name: '@babel/plugin-transform-function-name'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.22.15
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-json-strings/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-json-strings/7.23.4
name: '@babel/plugin-transform-json-strings'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-literals/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-literals/7.23.3
name: '@babel/plugin-transform-literals'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/7.23.4
name: '@babel/plugin-transform-logical-assignment-operators'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.23.3
name: '@babel/plugin-transform-member-expression-literals'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.23.3
name: '@babel/plugin-transform-modules-amd'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.23.3
name: '@babel/plugin-transform-modules-commonjs'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.23.3
name: '@babel/plugin-transform-modules-systemjs'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.22.5
'@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
dev: true
registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.23.3
name: '@babel/plugin-transform-modules-umd'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.23.3_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.23.5:
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.22.5
name: '@babel/plugin-transform-named-capturing-groups-regex'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-new-target/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-new-target/7.23.3
name: '@babel/plugin-transform-new-target'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/7.23.4
name: '@babel/plugin-transform-nullish-coalescing-operator'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-numeric-separator/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-numeric-separator/7.23.4
name: '@babel/plugin-transform-numeric-separator'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/7.23.4
name: '@babel/plugin-transform-object-rest-spread'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.22.15
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.5
'@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-object-super/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-object-super/7.23.3
name: '@babel/plugin-transform-object-super'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.22.20_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/7.23.4
name: '@babel/plugin-transform-optional-catch-binding'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4
name: '@babel/plugin-transform-optional-chaining'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
'@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3
name: '@babel/plugin-transform-parameters'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-private-methods/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-private-methods/7.23.3
name: '@babel/plugin-transform-private-methods'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.5_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/7.23.4_@babel+core@7.23.5:
resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/7.23.4
name: '@babel/plugin-transform-private-property-in-object'
version: 7.23.4
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.22.5
'@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.23.5_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.23.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-property-literals/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-property-literals/7.23.3
name: '@babel/plugin-transform-property-literals'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-regenerator/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-regenerator/7.23.3
name: '@babel/plugin-transform-regenerator'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
regenerator-transform: registry.npmmirror.com/regenerator-transform/0.15.2
dev: true
registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.23.3
name: '@babel/plugin-transform-reserved-words'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.23.3
name: '@babel/plugin-transform-shorthand-properties'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-spread/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-spread/7.23.3
name: '@babel/plugin-transform-spread'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.23.3
name: '@babel/plugin-transform-sticky-regex'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-template-literals/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-template-literals/7.23.3
name: '@babel/plugin-transform-template-literals'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.23.3
name: '@babel/plugin-transform-typeof-symbol'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.23.3
name: '@babel/plugin-transform-unicode-escapes'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/7.23.3
name: '@babel/plugin-transform-unicode-property-regex'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.23.3
name: '@babel/plugin-transform-unicode-regex'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/7.23.3_@babel+core@7.23.5:
resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/7.23.3
name: '@babel/plugin-transform-unicode-sets-regex'
version: 7.23.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
dev: true
registry.npmmirror.com/@babel/preset-env/7.23.5_@babel+core@7.23.5:
resolution: {integrity: sha512-0d/uxVD6tFGWXGDSfyMD1p2otoaKmu6+GD+NfAx0tMaH+dxORnp7T9TaVQ6mKyya7iBtCIVxHjWT7MuzzM9z+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-env/-/preset-env-7.23.5.tgz}
id: registry.npmmirror.com/@babel/preset-env/7.23.5
name: '@babel/preset-env'
version: 7.23.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.22.15
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.23.5
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.23.3_@babel+core@7.23.5
'@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.5
'@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.5
'@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.5
'@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.5
'@babel/plugin-syntax-class-properties': registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.23.5
'@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.5
'@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.5
'@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.5
'@babel/plugin-syntax-import-assertions': registry.npmmirror.com/@babel/plugin-syntax-import-assertions/7.23.3_@babel+core@7.23.5
'@babel/plugin-syntax-import-attributes': registry.npmmirror.com/@babel/plugin-syntax-import-attributes/7.23.3_@babel+core@7.23.5
'@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.23.5
'@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.5
'@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.5
'@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.5
'@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.5
'@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.5
'@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.5
'@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.5
'@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.23.5
'@babel/plugin-syntax-top-level-await': registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.23.5
'@babel/plugin-syntax-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.23.5
'@babel/plugin-transform-arrow-functions': registry.npmmirror.com/@babel/plugin-transform-arrow-functions/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-async-generator-functions': registry.npmmirror.com/@babel/plugin-transform-async-generator-functions/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-async-to-generator': registry.npmmirror.com/@babel/plugin-transform-async-to-generator/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-block-scoped-functions': registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-block-scoping': registry.npmmirror.com/@babel/plugin-transform-block-scoping/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-class-properties': registry.npmmirror.com/@babel/plugin-transform-class-properties/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-class-static-block': registry.npmmirror.com/@babel/plugin-transform-class-static-block/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-classes': registry.npmmirror.com/@babel/plugin-transform-classes/7.23.5_@babel+core@7.23.5
'@babel/plugin-transform-computed-properties': registry.npmmirror.com/@babel/plugin-transform-computed-properties/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-destructuring': registry.npmmirror.com/@babel/plugin-transform-destructuring/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-dotall-regex': registry.npmmirror.com/@babel/plugin-transform-dotall-regex/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-duplicate-keys': registry.npmmirror.com/@babel/plugin-transform-duplicate-keys/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-dynamic-import': registry.npmmirror.com/@babel/plugin-transform-dynamic-import/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-exponentiation-operator': registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-export-namespace-from': registry.npmmirror.com/@babel/plugin-transform-export-namespace-from/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-for-of': registry.npmmirror.com/@babel/plugin-transform-for-of/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-function-name': registry.npmmirror.com/@babel/plugin-transform-function-name/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-json-strings': registry.npmmirror.com/@babel/plugin-transform-json-strings/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-literals': registry.npmmirror.com/@babel/plugin-transform-literals/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-member-expression-literals': registry.npmmirror.com/@babel/plugin-transform-member-expression-literals/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-modules-amd': registry.npmmirror.com/@babel/plugin-transform-modules-amd/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-modules-systemjs': registry.npmmirror.com/@babel/plugin-transform-modules-systemjs/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-modules-umd': registry.npmmirror.com/@babel/plugin-transform-modules-umd/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-named-capturing-groups-regex': registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.23.5
'@babel/plugin-transform-new-target': registry.npmmirror.com/@babel/plugin-transform-new-target/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-numeric-separator': registry.npmmirror.com/@babel/plugin-transform-numeric-separator/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-object-rest-spread': registry.npmmirror.com/@babel/plugin-transform-object-rest-spread/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-object-super': registry.npmmirror.com/@babel/plugin-transform-object-super/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-optional-catch-binding': registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-private-methods': registry.npmmirror.com/@babel/plugin-transform-private-methods/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-private-property-in-object': registry.npmmirror.com/@babel/plugin-transform-private-property-in-object/7.23.4_@babel+core@7.23.5
'@babel/plugin-transform-property-literals': registry.npmmirror.com/@babel/plugin-transform-property-literals/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-regenerator': registry.npmmirror.com/@babel/plugin-transform-regenerator/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-reserved-words': registry.npmmirror.com/@babel/plugin-transform-reserved-words/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-shorthand-properties': registry.npmmirror.com/@babel/plugin-transform-shorthand-properties/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-spread': registry.npmmirror.com/@babel/plugin-transform-spread/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-sticky-regex': registry.npmmirror.com/@babel/plugin-transform-sticky-regex/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-template-literals': registry.npmmirror.com/@babel/plugin-transform-template-literals/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-typeof-symbol': registry.npmmirror.com/@babel/plugin-transform-typeof-symbol/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-unicode-escapes': registry.npmmirror.com/@babel/plugin-transform-unicode-escapes/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-unicode-property-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-unicode-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-regex/7.23.3_@babel+core@7.23.5
'@babel/plugin-transform-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex/7.23.3_@babel+core@7.23.5
'@babel/preset-modules': registry.npmmirror.com/@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.23.5
babel-plugin-polyfill-corejs2: registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.4.6_@babel+core@7.23.5
babel-plugin-polyfill-corejs3: registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.8.6_@babel+core@7.23.5
babel-plugin-polyfill-regenerator: registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.5.3_@babel+core@7.23.5
core-js-compat: registry.npmmirror.com/core-js-compat/3.34.0
semver: registry.npmmirror.com/semver/6.3.1
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.23.5:
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz}
id: registry.npmmirror.com/@babel/preset-modules/0.1.6-no-external-plugins
name: '@babel/preset-modules'
version: 0.1.6-no-external-plugins
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.22.5
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
esutils: registry.npmmirror.com/esutils/2.0.3
dev: true
registry.npmmirror.com/@babel/regjsgen/0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz}
name: '@babel/regjsgen'
version: 0.8.0
dev: true
registry.npmmirror.com/@babel/runtime/7.23.5:
resolution: {integrity: sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.23.5.tgz}
name: '@babel/runtime'
version: 7.23.5
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.14.0
dev: true
registry.npmmirror.com/@babel/template/7.22.15:
resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.22.15.tgz}
name: '@babel/template'
version: 7.22.15
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.23.5
'@babel/parser': registry.npmmirror.com/@babel/parser/7.23.5
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
dev: true
registry.npmmirror.com/@babel/traverse/7.23.5:
resolution: {integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.23.5.tgz}
name: '@babel/traverse'
version: 7.23.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.23.5
'@babel/generator': registry.npmmirror.com/@babel/generator/7.23.5
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.22.20
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.23.0
'@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.22.5
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.22.6
'@babel/parser': registry.npmmirror.com/@babel/parser/7.23.5
'@babel/types': registry.npmmirror.com/@babel/types/7.23.5
debug: registry.npmmirror.com/debug/4.3.4
globals: registry.npmmirror.com/globals/11.12.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/types/7.23.5:
resolution: {integrity: sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.23.5.tgz}
name: '@babel/types'
version: 7.23.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser/7.23.4
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.22.20
to-fast-properties: registry.npmmirror.com/to-fast-properties/2.0.0
dev: true
registry.npmmirror.com/@esbuild/android-arm/0.19.8:
resolution: {integrity: sha512-31E2lxlGM1KEfivQl8Yf5aYU/mflz9g06H6S15ITUFQueMFtFjESRMoDSkvMo8thYvLBax+VKTPlpnx+sPicOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.19.8.tgz}
name: '@esbuild/android-arm'
version: 0.19.8
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/android-arm64/0.19.8:
resolution: {integrity: sha512-B8JbS61bEunhfx8kasogFENgQfr/dIp+ggYXwTqdbMAgGDhRa3AaPpQMuQU0rNxDLECj6FhDzk1cF9WHMVwrtA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.19.8.tgz}
name: '@esbuild/android-arm64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/android-x64/0.19.8:
resolution: {integrity: sha512-rdqqYfRIn4jWOp+lzQttYMa2Xar3OK9Yt2fhOhzFXqg0rVWEfSclJvZq5fZslnz6ypHvVf3CT7qyf0A5pM682A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.19.8.tgz}
name: '@esbuild/android-x64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/darwin-arm64/0.19.8:
resolution: {integrity: sha512-RQw9DemMbIq35Bprbboyf8SmOr4UXsRVxJ97LgB55VKKeJOOdvsIPy0nFyF2l8U+h4PtBx/1kRf0BelOYCiQcw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.8.tgz}
name: '@esbuild/darwin-arm64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/darwin-x64/0.19.8:
resolution: {integrity: sha512-3sur80OT9YdeZwIVgERAysAbwncom7b4bCI2XKLjMfPymTud7e/oY4y+ci1XVp5TfQp/bppn7xLw1n/oSQY3/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.19.8.tgz}
name: '@esbuild/darwin-x64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/freebsd-arm64/0.19.8:
resolution: {integrity: sha512-WAnPJSDattvS/XtPCTj1tPoTxERjcTpH6HsMr6ujTT+X6rylVe8ggxk8pVxzf5U1wh5sPODpawNicF5ta/9Tmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.8.tgz}
name: '@esbuild/freebsd-arm64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/freebsd-x64/0.19.8:
resolution: {integrity: sha512-ICvZyOplIjmmhjd6mxi+zxSdpPTKFfyPPQMQTK/w+8eNK6WV01AjIztJALDtwNNfFhfZLux0tZLC+U9nSyA5Zg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.8.tgz}
name: '@esbuild/freebsd-x64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/linux-arm/0.19.8:
resolution: {integrity: sha512-H4vmI5PYqSvosPaTJuEppU9oz1dq2A7Mr2vyg5TF9Ga+3+MGgBdGzcyBP7qK9MrwFQZlvNyJrvz6GuCaj3OukQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.19.8.tgz}
name: '@esbuild/linux-arm'
version: 0.19.8
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/linux-arm64/0.19.8:
resolution: {integrity: sha512-z1zMZivxDLHWnyGOctT9JP70h0beY54xDDDJt4VpTX+iwA77IFsE1vCXWmprajJGa+ZYSqkSbRQ4eyLCpCmiCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.19.8.tgz}
name: '@esbuild/linux-arm64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/linux-ia32/0.19.8:
resolution: {integrity: sha512-1a8suQiFJmZz1khm/rDglOc8lavtzEMRo0v6WhPgxkrjcU0LkHj+TwBrALwoz/OtMExvsqbbMI0ChyelKabSvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.19.8.tgz}
name: '@esbuild/linux-ia32'
version: 0.19.8
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/linux-loong64/0.19.8:
resolution: {integrity: sha512-fHZWS2JJxnXt1uYJsDv9+b60WCc2RlvVAy1F76qOLtXRO+H4mjt3Tr6MJ5l7Q78X8KgCFudnTuiQRBhULUyBKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.19.8.tgz}
name: '@esbuild/linux-loong64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/linux-mips64el/0.19.8:
resolution: {integrity: sha512-Wy/z0EL5qZYLX66dVnEg9riiwls5IYnziwuju2oUiuxVc+/edvqXa04qNtbrs0Ukatg5HEzqT94Zs7J207dN5Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.8.tgz}
name: '@esbuild/linux-mips64el'
version: 0.19.8
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/linux-ppc64/0.19.8:
resolution: {integrity: sha512-ETaW6245wK23YIEufhMQ3HSeHO7NgsLx8gygBVldRHKhOlD1oNeNy/P67mIh1zPn2Hr2HLieQrt6tWrVwuqrxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.8.tgz}
name: '@esbuild/linux-ppc64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/linux-riscv64/0.19.8:
resolution: {integrity: sha512-T2DRQk55SgoleTP+DtPlMrxi/5r9AeFgkhkZ/B0ap99zmxtxdOixOMI570VjdRCs9pE4Wdkz7JYrsPvsl7eESg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.8.tgz}
name: '@esbuild/linux-riscv64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/linux-s390x/0.19.8:
resolution: {integrity: sha512-NPxbdmmo3Bk7mbNeHmcCd7R7fptJaczPYBaELk6NcXxy7HLNyWwCyDJ/Xx+/YcNH7Im5dHdx9gZ5xIwyliQCbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.19.8.tgz}
name: '@esbuild/linux-s390x'
version: 0.19.8
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/linux-x64/0.19.8:
resolution: {integrity: sha512-lytMAVOM3b1gPypL2TRmZ5rnXl7+6IIk8uB3eLsV1JwcizuolblXRrc5ShPrO9ls/b+RTp+E6gbsuLWHWi2zGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.19.8.tgz}
name: '@esbuild/linux-x64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/netbsd-x64/0.19.8:
resolution: {integrity: sha512-hvWVo2VsXz/8NVt1UhLzxwAfo5sioj92uo0bCfLibB0xlOmimU/DeAEsQILlBQvkhrGjamP0/el5HU76HAitGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.8.tgz}
name: '@esbuild/netbsd-x64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/openbsd-x64/0.19.8:
resolution: {integrity: sha512-/7Y7u77rdvmGTxR83PgaSvSBJCC2L3Kb1M/+dmSIvRvQPXXCuC97QAwMugBNG0yGcbEGfFBH7ojPzAOxfGNkwQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.8.tgz}
name: '@esbuild/openbsd-x64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/sunos-x64/0.19.8:
resolution: {integrity: sha512-9Lc4s7Oi98GqFA4HzA/W2JHIYfnXbUYgekUP/Sm4BG9sfLjyv6GKKHKKVs83SMicBF2JwAX6A1PuOLMqpD001w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.19.8.tgz}
name: '@esbuild/sunos-x64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/win32-arm64/0.19.8:
resolution: {integrity: sha512-rq6WzBGjSzihI9deW3fC2Gqiak68+b7qo5/3kmB6Gvbh/NYPA0sJhrnp7wgV4bNwjqM+R2AApXGxMO7ZoGhIJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.19.8.tgz}
name: '@esbuild/win32-arm64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/win32-ia32/0.19.8:
resolution: {integrity: sha512-AIAbverbg5jMvJznYiGhrd3sumfwWs8572mIJL5NQjJa06P8KfCPWZQ0NwZbPQnbQi9OWSZhFVSUWjjIrn4hSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.19.8.tgz}
name: '@esbuild/win32-ia32'
version: 0.19.8
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/win32-x64/0.19.8:
resolution: {integrity: sha512-bfZ0cQ1uZs2PqpulNL5j/3w+GDhP36k1K5c38QdQg+Swy51jFZWWeIkteNsufkQxp986wnqRRsb/bHbY1WQ7TA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.19.8.tgz}
name: '@esbuild/win32-x64'
version: 0.19.8
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@jridgewell/gen-mapping/0.3.3:
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz}
name: '@jridgewell/gen-mapping'
version: 0.3.3
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array/1.1.2
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.15
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20
dev: true
registry.npmmirror.com/@jridgewell/resolve-uri/3.1.1:
resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz}
name: '@jridgewell/resolve-uri'
version: 3.1.1
engines: {node: '>=6.0.0'}
dev: true
registry.npmmirror.com/@jridgewell/set-array/1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz}
name: '@jridgewell/set-array'
version: 1.1.2
engines: {node: '>=6.0.0'}
dev: true
registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz}
name: '@jridgewell/sourcemap-codec'
version: 1.4.15
dev: true
registry.npmmirror.com/@jridgewell/trace-mapping/0.3.20:
resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz}
name: '@jridgewell/trace-mapping'
version: 0.3.20
dependencies:
'@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri/3.1.1
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.15
dev: true
registry.npmmirror.com/@nodelib/fs.scandir/2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz}
name: '@nodelib/fs.scandir'
version: 2.1.5
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
run-parallel: registry.npmmirror.com/run-parallel/1.2.0
dev: true
registry.npmmirror.com/@nodelib/fs.stat/2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz}
name: '@nodelib/fs.stat'
version: 2.0.5
engines: {node: '>= 8'}
dev: true
registry.npmmirror.com/@nodelib/fs.walk/1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz}
name: '@nodelib/fs.walk'
version: 1.2.8
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir/2.1.5
fastq: registry.npmmirror.com/fastq/1.15.0
dev: true
registry.npmmirror.com/@rollup/rollup-android-arm-eabi/4.7.0:
resolution: {integrity: sha512-rGku10pL1StFlFvXX5pEv88KdGW6DHUghsxyP/aRYb9eH+74jTGJ3U0S/rtlsQ4yYq1Hcc7AMkoJOb1xu29Fxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.7.0.tgz}
name: '@rollup/rollup-android-arm-eabi'
version: 4.7.0
cpu: [arm]
os: [android]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-android-arm64/4.7.0:
resolution: {integrity: sha512-/EBw0cuJ/KVHiU2qyVYUhogXz7W2vXxBzeE9xtVIMC+RyitlY2vvaoysMUqASpkUtoNIHlnKTu/l7mXOPgnKOA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.7.0.tgz}
name: '@rollup/rollup-android-arm64'
version: 4.7.0
cpu: [arm64]
os: [android]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-darwin-arm64/4.7.0:
resolution: {integrity: sha512-4VXG1bgvClJdbEYYjQ85RkOtwN8sqI3uCxH0HC5w9fKdqzRzgG39K7GAehATGS8jghA7zNoS5CjSKkDEqWmNZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.7.0.tgz}
name: '@rollup/rollup-darwin-arm64'
version: 4.7.0
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-darwin-x64/4.7.0:
resolution: {integrity: sha512-/ImhO+T/RWJ96hUbxiCn2yWI0/MeQZV/aeukQQfhxiSXuZJfyqtdHPUPrc84jxCfXTxbJLmg4q+GBETeb61aNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.7.0.tgz}
name: '@rollup/rollup-darwin-x64'
version: 4.7.0
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/4.7.0:
resolution: {integrity: sha512-zhye8POvTyUXlKbfPBVqoHy3t43gIgffY+7qBFqFxNqVtltQLtWeHNAbrMnXiLIfYmxcoL/feuLDote2tx+Qbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.7.0.tgz}
name: '@rollup/rollup-linux-arm-gnueabihf'
version: 4.7.0
cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/4.7.0:
resolution: {integrity: sha512-RAdr3OJnUum6Vs83cQmKjxdTg31zJnLLTkjhcFt0auxM6jw00GD6IPFF42uasYPr/wGC6TRm7FsQiJyk0qIEfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.7.0.tgz}
name: '@rollup/rollup-linux-arm64-gnu'
version: 4.7.0
cpu: [arm64]
os: [linux]
libc: [glibc]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/4.7.0:
resolution: {integrity: sha512-nhWwYsiJwZGq7SyR3afS3EekEOsEAlrNMpPC4ZDKn5ooYSEjDLe9W/xGvoIV8/F/+HNIY6jY8lIdXjjxfxopXw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.7.0.tgz}
name: '@rollup/rollup-linux-arm64-musl'
version: 4.7.0
cpu: [arm64]
os: [linux]
libc: [musl]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/4.7.0:
resolution: {integrity: sha512-rlfy5RnQG1aop1BL/gjdH42M2geMUyVQqd52GJVirqYc787A/XVvl3kQ5NG/43KXgOgE9HXgCaEH05kzQ+hLoA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.7.0.tgz}
name: '@rollup/rollup-linux-riscv64-gnu'
version: 4.7.0
cpu: [riscv64]
os: [linux]
libc: [glibc]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/4.7.0:
resolution: {integrity: sha512-cCkoGlGWfBobdDtiiypxf79q6k3/iRVGu1HVLbD92gWV5WZbmuWJCgRM4x2N6i7ljGn1cGytPn9ZAfS8UwF6vg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.7.0.tgz}
name: '@rollup/rollup-linux-x64-gnu'
version: 4.7.0
cpu: [x64]
os: [linux]
libc: [glibc]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-linux-x64-musl/4.7.0:
resolution: {integrity: sha512-R2oBf2p/Arc1m+tWmiWbpHBjEcJnHVnv6bsypu4tcKdrYTpDfl1UT9qTyfkIL1iiii5D4WHxUHCg5X0pzqmxFg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.7.0.tgz}
name: '@rollup/rollup-linux-x64-musl'
version: 4.7.0
cpu: [x64]
os: [linux]
libc: [musl]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/4.7.0:
resolution: {integrity: sha512-CPtgaQL1aaPc80m8SCVEoxFGHxKYIt3zQYC3AccL/SqqiWXblo3pgToHuBwR8eCP2Toa+X1WmTR/QKFMykws7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.7.0.tgz}
name: '@rollup/rollup-win32-arm64-msvc'
version: 4.7.0
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/4.7.0:
resolution: {integrity: sha512-pmioUlttNh9GXF5x2CzNa7Z8kmRTyhEzzAC+2WOOapjewMbl+3tGuAnxbwc5JyG8Jsz2+hf/QD/n5VjimOZ63g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.7.0.tgz}
name: '@rollup/rollup-win32-ia32-msvc'
version: 4.7.0
cpu: [ia32]
os: [win32]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/4.7.0:
resolution: {integrity: sha512-SeZzC2QhhdBQUm3U0c8+c/P6UlRyBcLL2Xp5KX7z46WXZxzR8RJSIWL9wSUeBTgxog5LTPJuPj0WOT9lvrtP7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.7.0.tgz}
name: '@rollup/rollup-win32-x64-msvc'
version: 4.7.0
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/ansi-styles/3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz}
name: ansi-styles
version: 3.2.1
engines: {node: '>=4'}
dependencies:
color-convert: registry.npmmirror.com/color-convert/1.9.3
dev: true
registry.npmmirror.com/any-promise/1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/any-promise/-/any-promise-1.3.0.tgz}
name: any-promise
version: 1.3.0
dev: true
registry.npmmirror.com/anymatch/3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz}
name: anymatch
version: 3.1.3
engines: {node: '>= 8'}
dependencies:
normalize-path: registry.npmmirror.com/normalize-path/3.0.0
picomatch: registry.npmmirror.com/picomatch/2.3.1
dev: true
registry.npmmirror.com/array-union/2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz}
name: array-union
version: 2.1.0
engines: {node: '>=8'}
dev: true
registry.npmmirror.com/asynckit/0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz}
name: asynckit
version: 0.4.0
dev: false
registry.npmmirror.com/axios/1.6.2:
resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/axios/-/axios-1.6.2.tgz}
name: axios
version: 1.6.2
dependencies:
follow-redirects: registry.npmmirror.com/follow-redirects/1.15.3
form-data: registry.npmmirror.com/form-data/4.0.0
proxy-from-env: registry.npmmirror.com/proxy-from-env/1.1.0
transitivePeerDependencies:
- debug
dev: false
registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.4.6_@babel+core@7.23.5:
resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz}
id: registry.npmmirror.com/babel-plugin-polyfill-corejs2/0.4.6
name: babel-plugin-polyfill-corejs2
version: 0.4.6
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.23.5
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.3_@babel+core@7.23.5
semver: registry.npmmirror.com/semver/6.3.1
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.8.6_@babel+core@7.23.5:
resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz}
id: registry.npmmirror.com/babel-plugin-polyfill-corejs3/0.8.6
name: babel-plugin-polyfill-corejs3
version: 0.8.6
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.3_@babel+core@7.23.5
core-js-compat: registry.npmmirror.com/core-js-compat/3.34.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.5.3_@babel+core@7.23.5:
resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz}
id: registry.npmmirror.com/babel-plugin-polyfill-regenerator/0.5.3
name: babel-plugin-polyfill-regenerator
version: 0.5.3
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.23.5
'@babel/helper-define-polyfill-provider': registry.npmmirror.com/@babel/helper-define-polyfill-provider/0.4.3_@babel+core@7.23.5
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/balanced-match/1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz}
name: balanced-match
version: 1.0.2
dev: true
registry.npmmirror.com/binary-extensions/2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz}
name: binary-extensions
version: 2.2.0
engines: {node: '>=8'}
dev: true
registry.npmmirror.com/brace-expansion/1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz}
name: brace-expansion
version: 1.1.11
dependencies:
balanced-match: registry.npmmirror.com/balanced-match/1.0.2
concat-map: registry.npmmirror.com/concat-map/0.0.1
dev: true
registry.npmmirror.com/braces/3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz}
name: braces
version: 3.0.2
engines: {node: '>=8'}
dependencies:
fill-range: registry.npmmirror.com/fill-range/7.0.1
dev: true
registry.npmmirror.com/browserslist/4.22.2:
resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browserslist/-/browserslist-4.22.2.tgz}
name: browserslist
version: 4.22.2
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001566
electron-to-chromium: registry.npmmirror.com/electron-to-chromium/1.4.609
node-releases: registry.npmmirror.com/node-releases/2.0.14
update-browserslist-db: registry.npmmirror.com/update-browserslist-db/1.0.13_browserslist@4.22.2
dev: true
registry.npmmirror.com/bundle-require/4.0.2_esbuild@0.19.8:
resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bundle-require/-/bundle-require-4.0.2.tgz}
id: registry.npmmirror.com/bundle-require/4.0.2
name: bundle-require
version: 4.0.2
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
esbuild: '>=0.17'
dependencies:
esbuild: registry.npmmirror.com/esbuild/0.19.8
load-tsconfig: registry.npmmirror.com/load-tsconfig/0.2.5
dev: true
registry.npmmirror.com/cac/6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cac/-/cac-6.7.14.tgz}
name: cac
version: 6.7.14
engines: {node: '>=8'}
dev: true
registry.npmmirror.com/caniuse-lite/1.0.30001566:
resolution: {integrity: sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001566.tgz}
name: caniuse-lite
version: 1.0.30001566
dev: true
registry.npmmirror.com/chalk/2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz}
name: chalk
version: 2.4.2
engines: {node: '>=4'}
dependencies:
ansi-styles: registry.npmmirror.com/ansi-styles/3.2.1
escape-string-regexp: registry.npmmirror.com/escape-string-regexp/1.0.5
supports-color: registry.npmmirror.com/supports-color/5.5.0
dev: true
registry.npmmirror.com/chokidar/3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz}
name: chokidar
version: 3.5.3
engines: {node: '>= 8.10.0'}
dependencies:
anymatch: registry.npmmirror.com/anymatch/3.1.3
braces: registry.npmmirror.com/braces/3.0.2
glob-parent: registry.npmmirror.com/glob-parent/5.1.2
is-binary-path: registry.npmmirror.com/is-binary-path/2.1.0
is-glob: registry.npmmirror.com/is-glob/4.0.3
normalize-path: registry.npmmirror.com/normalize-path/3.0.0
readdirp: registry.npmmirror.com/readdirp/3.6.0
optionalDependencies:
fsevents: registry.npmmirror.com/fsevents/2.3.3
dev: true
registry.npmmirror.com/color-convert/1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz}
name: color-convert
version: 1.9.3
dependencies:
color-name: registry.npmmirror.com/color-name/1.1.3
dev: true
registry.npmmirror.com/color-name/1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz}
name: color-name
version: 1.1.3
dev: true
registry.npmmirror.com/combined-stream/1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz}
name: combined-stream
version: 1.0.8
engines: {node: '>= 0.8'}
dependencies:
delayed-stream: registry.npmmirror.com/delayed-stream/1.0.0
dev: false
registry.npmmirror.com/commander/4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/-/commander-4.1.1.tgz}
name: commander
version: 4.1.1
engines: {node: '>= 6'}
dev: true
registry.npmmirror.com/concat-map/0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz}
name: concat-map
version: 0.0.1
dev: true
registry.npmmirror.com/convert-source-map/2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz}
name: convert-source-map
version: 2.0.0
dev: true
registry.npmmirror.com/core-js-compat/3.34.0:
resolution: {integrity: sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-js-compat/-/core-js-compat-3.34.0.tgz}
name: core-js-compat
version: 3.34.0
dependencies:
browserslist: registry.npmmirror.com/browserslist/4.22.2
dev: true
registry.npmmirror.com/cross-spawn/7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz}
name: cross-spawn
version: 7.0.3
engines: {node: '>= 8'}
dependencies:
path-key: registry.npmmirror.com/path-key/3.1.1
shebang-command: registry.npmmirror.com/shebang-command/2.0.0
which: registry.npmmirror.com/which/2.0.2
dev: true
registry.npmmirror.com/debug/4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz}
name: debug
version: 4.3.4
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
dependencies:
ms: registry.npmmirror.com/ms/2.1.2
dev: true
registry.npmmirror.com/delayed-stream/1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz}
name: delayed-stream
version: 1.0.0
engines: {node: '>=0.4.0'}
dev: false
registry.npmmirror.com/dir-glob/3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz}
name: dir-glob
version: 3.0.1
engines: {node: '>=8'}
dependencies:
path-type: registry.npmmirror.com/path-type/4.0.0
dev: true
registry.npmmirror.com/electron-to-chromium/1.4.609:
resolution: {integrity: sha512-ihiCP7PJmjoGNuLpl7TjNA8pCQWu09vGyjlPYw1Rqww4gvNuCcmvl+44G+2QyJ6S2K4o+wbTS++Xz0YN8Q9ERw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.609.tgz}
name: electron-to-chromium
version: 1.4.609
dev: true
registry.npmmirror.com/esbuild/0.19.8:
resolution: {integrity: sha512-l7iffQpT2OrZfH2rXIp7/FkmaeZM0vxbxN9KfiCwGYuZqzMg/JdvX26R31Zxn/Pxvsrg3Y9N6XTcnknqDyyv4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.19.8.tgz}
name: esbuild
version: 0.19.8
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
'@esbuild/android-arm': registry.npmmirror.com/@esbuild/android-arm/0.19.8
'@esbuild/android-arm64': registry.npmmirror.com/@esbuild/android-arm64/0.19.8
'@esbuild/android-x64': registry.npmmirror.com/@esbuild/android-x64/0.19.8
'@esbuild/darwin-arm64': registry.npmmirror.com/@esbuild/darwin-arm64/0.19.8
'@esbuild/darwin-x64': registry.npmmirror.com/@esbuild/darwin-x64/0.19.8
'@esbuild/freebsd-arm64': registry.npmmirror.com/@esbuild/freebsd-arm64/0.19.8
'@esbuild/freebsd-x64': registry.npmmirror.com/@esbuild/freebsd-x64/0.19.8
'@esbuild/linux-arm': registry.npmmirror.com/@esbuild/linux-arm/0.19.8
'@esbuild/linux-arm64': registry.npmmirror.com/@esbuild/linux-arm64/0.19.8
'@esbuild/linux-ia32': registry.npmmirror.com/@esbuild/linux-ia32/0.19.8
'@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64/0.19.8
'@esbuild/linux-mips64el': registry.npmmirror.com/@esbuild/linux-mips64el/0.19.8
'@esbuild/linux-ppc64': registry.npmmirror.com/@esbuild/linux-ppc64/0.19.8
'@esbuild/linux-riscv64': registry.npmmirror.com/@esbuild/linux-riscv64/0.19.8
'@esbuild/linux-s390x': registry.npmmirror.com/@esbuild/linux-s390x/0.19.8
'@esbuild/linux-x64': registry.npmmirror.com/@esbuild/linux-x64/0.19.8
'@esbuild/netbsd-x64': registry.npmmirror.com/@esbuild/netbsd-x64/0.19.8
'@esbuild/openbsd-x64': registry.npmmirror.com/@esbuild/openbsd-x64/0.19.8
'@esbuild/sunos-x64': registry.npmmirror.com/@esbuild/sunos-x64/0.19.8
'@esbuild/win32-arm64': registry.npmmirror.com/@esbuild/win32-arm64/0.19.8
'@esbuild/win32-ia32': registry.npmmirror.com/@esbuild/win32-ia32/0.19.8
'@esbuild/win32-x64': registry.npmmirror.com/@esbuild/win32-x64/0.19.8
dev: true
registry.npmmirror.com/escalade/3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz}
name: escalade
version: 3.1.1
engines: {node: '>=6'}
dev: true
registry.npmmirror.com/escape-string-regexp/1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz}
name: escape-string-regexp
version: 1.0.5
engines: {node: '>=0.8.0'}
dev: true
registry.npmmirror.com/esutils/2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz}
name: esutils
version: 2.0.3
engines: {node: '>=0.10.0'}
dev: true
registry.npmmirror.com/execa/5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz}
name: execa
version: 5.1.1
engines: {node: '>=10'}
dependencies:
cross-spawn: registry.npmmirror.com/cross-spawn/7.0.3
get-stream: registry.npmmirror.com/get-stream/6.0.1
human-signals: registry.npmmirror.com/human-signals/2.1.0
is-stream: registry.npmmirror.com/is-stream/2.0.1
merge-stream: registry.npmmirror.com/merge-stream/2.0.0
npm-run-path: registry.npmmirror.com/npm-run-path/4.0.1
onetime: registry.npmmirror.com/onetime/5.1.2
signal-exit: registry.npmmirror.com/signal-exit/3.0.7
strip-final-newline: registry.npmmirror.com/strip-final-newline/2.0.0
dev: true
registry.npmmirror.com/fast-glob/3.3.2:
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.2.tgz}
name: fast-glob
version: 3.3.2
engines: {node: '>=8.6.0'}
dependencies:
'@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
'@nodelib/fs.walk': registry.npmmirror.com/@nodelib/fs.walk/1.2.8
glob-parent: registry.npmmirror.com/glob-parent/5.1.2
merge2: registry.npmmirror.com/merge2/1.4.1
micromatch: registry.npmmirror.com/micromatch/4.0.5
dev: true
registry.npmmirror.com/fastq/1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz}
name: fastq
version: 1.15.0
dependencies:
reusify: registry.npmmirror.com/reusify/1.0.4
dev: true
registry.npmmirror.com/fill-range/7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz}
name: fill-range
version: 7.0.1
engines: {node: '>=8'}
dependencies:
to-regex-range: registry.npmmirror.com/to-regex-range/5.0.1
dev: true
registry.npmmirror.com/follow-redirects/1.15.3:
resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.3.tgz}
name: follow-redirects
version: 1.15.3
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
peerDependenciesMeta:
debug:
optional: true
dev: false
registry.npmmirror.com/form-data/4.0.0:
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz}
name: form-data
version: 4.0.0
engines: {node: '>= 6'}
dependencies:
asynckit: registry.npmmirror.com/asynckit/0.4.0
combined-stream: registry.npmmirror.com/combined-stream/1.0.8
mime-types: registry.npmmirror.com/mime-types/2.1.35
dev: false
registry.npmmirror.com/fs.realpath/1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz}
name: fs.realpath
version: 1.0.0
dev: true
registry.npmmirror.com/fsevents/2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz}
name: fsevents
version: 2.3.3
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/function-bind/1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz}
name: function-bind
version: 1.1.2
dev: true
registry.npmmirror.com/gensync/1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz}
name: gensync
version: 1.0.0-beta.2
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/get-stream/6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz}
name: get-stream
version: 6.0.1
engines: {node: '>=10'}
dev: true
registry.npmmirror.com/glob-parent/5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz}
name: glob-parent
version: 5.1.2
engines: {node: '>= 6'}
dependencies:
is-glob: registry.npmmirror.com/is-glob/4.0.3
dev: true
registry.npmmirror.com/glob/7.1.6:
resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob/-/glob-7.1.6.tgz}
name: glob
version: 7.1.6
dependencies:
fs.realpath: registry.npmmirror.com/fs.realpath/1.0.0
inflight: registry.npmmirror.com/inflight/1.0.6
inherits: registry.npmmirror.com/inherits/2.0.4
minimatch: registry.npmmirror.com/minimatch/3.1.2
once: registry.npmmirror.com/once/1.4.0
path-is-absolute: registry.npmmirror.com/path-is-absolute/1.0.1
dev: true
registry.npmmirror.com/globals/11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz}
name: globals
version: 11.12.0
engines: {node: '>=4'}
dev: true
registry.npmmirror.com/globby/11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz}
name: globby
version: 11.1.0
engines: {node: '>=10'}
dependencies:
array-union: registry.npmmirror.com/array-union/2.1.0
dir-glob: registry.npmmirror.com/dir-glob/3.0.1
fast-glob: registry.npmmirror.com/fast-glob/3.3.2
ignore: registry.npmmirror.com/ignore/5.3.0
merge2: registry.npmmirror.com/merge2/1.4.1
slash: registry.npmmirror.com/slash/3.0.0
dev: true
registry.npmmirror.com/has-flag/3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz}
name: has-flag
version: 3.0.0
engines: {node: '>=4'}
dev: true
registry.npmmirror.com/hasown/2.0.0:
resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/hasown/-/hasown-2.0.0.tgz}
name: hasown
version: 2.0.0
engines: {node: '>= 0.4'}
dependencies:
function-bind: registry.npmmirror.com/function-bind/1.1.2
dev: true
registry.npmmirror.com/human-signals/2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz}
name: human-signals
version: 2.1.0
engines: {node: '>=10.17.0'}
dev: true
registry.npmmirror.com/ignore/5.3.0:
resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ignore/-/ignore-5.3.0.tgz}
name: ignore
version: 5.3.0
engines: {node: '>= 4'}
dev: true
registry.npmmirror.com/inflight/1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz}
name: inflight
version: 1.0.6
dependencies:
once: registry.npmmirror.com/once/1.4.0
wrappy: registry.npmmirror.com/wrappy/1.0.2
dev: true
registry.npmmirror.com/inherits/2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz}
name: inherits
version: 2.0.4
dev: true
registry.npmmirror.com/is-binary-path/2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz}
name: is-binary-path
version: 2.1.0
engines: {node: '>=8'}
dependencies:
binary-extensions: registry.npmmirror.com/binary-extensions/2.2.0
dev: true
registry.npmmirror.com/is-core-module/2.13.1:
resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.1.tgz}
name: is-core-module
version: 2.13.1
dependencies:
hasown: registry.npmmirror.com/hasown/2.0.0
dev: true
registry.npmmirror.com/is-extglob/2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz}
name: is-extglob
version: 2.1.1
engines: {node: '>=0.10.0'}
dev: true
registry.npmmirror.com/is-glob/4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz}
name: is-glob
version: 4.0.3
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: registry.npmmirror.com/is-extglob/2.1.1
dev: true
registry.npmmirror.com/is-number/7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz}
name: is-number
version: 7.0.0
engines: {node: '>=0.12.0'}
dev: true
registry.npmmirror.com/is-stream/2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz}
name: is-stream
version: 2.0.1
engines: {node: '>=8'}
dev: true
registry.npmmirror.com/isexe/2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz}
name: isexe
version: 2.0.0
dev: true
registry.npmmirror.com/joycon/3.1.1:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/joycon/-/joycon-3.1.1.tgz}
name: joycon
version: 3.1.1
engines: {node: '>=10'}
dev: true
registry.npmmirror.com/js-tokens/4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz}
name: js-tokens
version: 4.0.0
dev: true
registry.npmmirror.com/jsesc/0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsesc/-/jsesc-0.5.0.tgz}
name: jsesc
version: 0.5.0
hasBin: true
dev: true
registry.npmmirror.com/jsesc/2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz}
name: jsesc
version: 2.5.2
engines: {node: '>=4'}
hasBin: true
dev: true
registry.npmmirror.com/json5/2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz}
name: json5
version: 2.2.3
engines: {node: '>=6'}
hasBin: true
dev: true
registry.npmmirror.com/lilconfig/3.0.0:
resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lilconfig/-/lilconfig-3.0.0.tgz}
name: lilconfig
version: 3.0.0
engines: {node: '>=14'}
dev: true
registry.npmmirror.com/lines-and-columns/1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz}
name: lines-and-columns
version: 1.2.4
dev: true
registry.npmmirror.com/load-tsconfig/0.2.5:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/load-tsconfig/-/load-tsconfig-0.2.5.tgz}
name: load-tsconfig
version: 0.2.5
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
registry.npmmirror.com/lodash.debounce/4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz}
name: lodash.debounce
version: 4.0.8
dev: true
registry.npmmirror.com/lodash.sortby/4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz}
name: lodash.sortby
version: 4.7.0
dev: true
registry.npmmirror.com/lru-cache/5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz}
name: lru-cache
version: 5.1.1
dependencies:
yallist: registry.npmmirror.com/yallist/3.1.1
dev: true
registry.npmmirror.com/merge-stream/2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz}
name: merge-stream
version: 2.0.0
dev: true
registry.npmmirror.com/merge2/1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz}
name: merge2
version: 1.4.1
engines: {node: '>= 8'}
dev: true
registry.npmmirror.com/micromatch/4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz}
name: micromatch
version: 4.0.5
engines: {node: '>=8.6'}
dependencies:
braces: registry.npmmirror.com/braces/3.0.2
picomatch: registry.npmmirror.com/picomatch/2.3.1
dev: true
registry.npmmirror.com/mime-db/1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz}
name: mime-db
version: 1.52.0
engines: {node: '>= 0.6'}
dev: false
registry.npmmirror.com/mime-types/2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz}
name: mime-types
version: 2.1.35
engines: {node: '>= 0.6'}
dependencies:
mime-db: registry.npmmirror.com/mime-db/1.52.0
dev: false
registry.npmmirror.com/mimic-fn/2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz}
name: mimic-fn
version: 2.1.0
engines: {node: '>=6'}
dev: true
registry.npmmirror.com/minimatch/3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz}
name: minimatch
version: 3.1.2
dependencies:
brace-expansion: registry.npmmirror.com/brace-expansion/1.1.11
dev: true
registry.npmmirror.com/ms/2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz}
name: ms
version: 2.1.2
dev: true
registry.npmmirror.com/mz/2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mz/-/mz-2.7.0.tgz}
name: mz
version: 2.7.0
dependencies:
any-promise: registry.npmmirror.com/any-promise/1.3.0
object-assign: registry.npmmirror.com/object-assign/4.1.1
thenify-all: registry.npmmirror.com/thenify-all/1.6.0
dev: true
registry.npmmirror.com/node-releases/2.0.14:
resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.14.tgz}
name: node-releases
version: 2.0.14
dev: true
registry.npmmirror.com/normalize-path/3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz}
name: normalize-path
version: 3.0.0
engines: {node: '>=0.10.0'}
dev: true
registry.npmmirror.com/npm-run-path/4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz}
name: npm-run-path
version: 4.0.1
engines: {node: '>=8'}
dependencies:
path-key: registry.npmmirror.com/path-key/3.1.1
dev: true
registry.npmmirror.com/object-assign/4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz}
name: object-assign
version: 4.1.1
engines: {node: '>=0.10.0'}
dev: true
registry.npmmirror.com/once/1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/once/-/once-1.4.0.tgz}
name: once
version: 1.4.0
dependencies:
wrappy: registry.npmmirror.com/wrappy/1.0.2
dev: true
registry.npmmirror.com/onetime/5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz}
name: onetime
version: 5.1.2
engines: {node: '>=6'}
dependencies:
mimic-fn: registry.npmmirror.com/mimic-fn/2.1.0
dev: true
registry.npmmirror.com/path-is-absolute/1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz}
name: path-is-absolute
version: 1.0.1
engines: {node: '>=0.10.0'}
dev: true
registry.npmmirror.com/path-key/3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz}
name: path-key
version: 3.1.1
engines: {node: '>=8'}
dev: true
registry.npmmirror.com/path-parse/1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz}
name: path-parse
version: 1.0.7
dev: true
registry.npmmirror.com/path-type/4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz}
name: path-type
version: 4.0.0
engines: {node: '>=8'}
dev: true
registry.npmmirror.com/picocolors/1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz}
name: picocolors
version: 1.0.0
dev: true
registry.npmmirror.com/picomatch/2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz}
name: picomatch
version: 2.3.1
engines: {node: '>=8.6'}
dev: true
registry.npmmirror.com/pirates/4.0.6:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pirates/-/pirates-4.0.6.tgz}
name: pirates
version: 4.0.6
engines: {node: '>= 6'}
dev: true
registry.npmmirror.com/postcss-load-config/4.0.2:
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz}
name: postcss-load-config
version: 4.0.2
engines: {node: '>= 14'}
peerDependencies:
postcss: '>=8.0.9'
ts-node: '>=9.0.0'
peerDependenciesMeta:
postcss:
optional: true
ts-node:
optional: true
dependencies:
lilconfig: registry.npmmirror.com/lilconfig/3.0.0
yaml: registry.npmmirror.com/yaml/2.3.4
dev: true
registry.npmmirror.com/proxy-from-env/1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz}
name: proxy-from-env
version: 1.1.0
dev: false
registry.npmmirror.com/punycode/2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz}
name: punycode
version: 2.3.1
engines: {node: '>=6'}
dev: true
registry.npmmirror.com/queue-microtask/1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz}
name: queue-microtask
version: 1.2.3
dev: true
registry.npmmirror.com/readdirp/3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz}
name: readdirp
version: 3.6.0
engines: {node: '>=8.10.0'}
dependencies:
picomatch: registry.npmmirror.com/picomatch/2.3.1
dev: true
registry.npmmirror.com/regenerate-unicode-properties/10.1.1:
resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz}
name: regenerate-unicode-properties
version: 10.1.1
engines: {node: '>=4'}
dependencies:
regenerate: registry.npmmirror.com/regenerate/1.4.2
dev: true
registry.npmmirror.com/regenerate/1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerate/-/regenerate-1.4.2.tgz}
name: regenerate
version: 1.4.2
dev: true
registry.npmmirror.com/regenerator-runtime/0.14.0:
resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz}
name: regenerator-runtime
version: 0.14.0
dev: true
registry.npmmirror.com/regenerator-transform/0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz}
name: regenerator-transform
version: 0.15.2
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.23.5
dev: true
registry.npmmirror.com/regexpu-core/5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regexpu-core/-/regexpu-core-5.3.2.tgz}
name: regexpu-core
version: 5.3.2
engines: {node: '>=4'}
dependencies:
'@babel/regjsgen': registry.npmmirror.com/@babel/regjsgen/0.8.0
regenerate: registry.npmmirror.com/regenerate/1.4.2
regenerate-unicode-properties: registry.npmmirror.com/regenerate-unicode-properties/10.1.1
regjsparser: registry.npmmirror.com/regjsparser/0.9.1
unicode-match-property-ecmascript: registry.npmmirror.com/unicode-match-property-ecmascript/2.0.0
unicode-match-property-value-ecmascript: registry.npmmirror.com/unicode-match-property-value-ecmascript/2.1.0
dev: true
registry.npmmirror.com/regjsparser/0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regjsparser/-/regjsparser-0.9.1.tgz}
name: regjsparser
version: 0.9.1
hasBin: true
dependencies:
jsesc: registry.npmmirror.com/jsesc/0.5.0
dev: true
registry.npmmirror.com/resolve-from/5.0.0:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz}
name: resolve-from
version: 5.0.0
engines: {node: '>=8'}
dev: true
registry.npmmirror.com/resolve/1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve/-/resolve-1.22.8.tgz}
name: resolve
version: 1.22.8
hasBin: true
dependencies:
is-core-module: registry.npmmirror.com/is-core-module/2.13.1
path-parse: registry.npmmirror.com/path-parse/1.0.7
supports-preserve-symlinks-flag: registry.npmmirror.com/supports-preserve-symlinks-flag/1.0.0
dev: true
registry.npmmirror.com/reusify/1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz}
name: reusify
version: 1.0.4
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
dev: true
registry.npmmirror.com/rollup/4.7.0:
resolution: {integrity: sha512-7Kw0dUP4BWH78zaZCqF1rPyQ8D5DSU6URG45v1dqS/faNsx9WXyess00uTOZxKr7oR/4TOjO1CPudT8L1UsEgw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-4.7.0.tgz}
name: rollup
version: 4.7.0
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
'@rollup/rollup-android-arm-eabi': registry.npmmirror.com/@rollup/rollup-android-arm-eabi/4.7.0
'@rollup/rollup-android-arm64': registry.npmmirror.com/@rollup/rollup-android-arm64/4.7.0
'@rollup/rollup-darwin-arm64': registry.npmmirror.com/@rollup/rollup-darwin-arm64/4.7.0
'@rollup/rollup-darwin-x64': registry.npmmirror.com/@rollup/rollup-darwin-x64/4.7.0
'@rollup/rollup-linux-arm-gnueabihf': registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/4.7.0
'@rollup/rollup-linux-arm64-gnu': registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/4.7.0
'@rollup/rollup-linux-arm64-musl': registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/4.7.0
'@rollup/rollup-linux-riscv64-gnu': registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/4.7.0
'@rollup/rollup-linux-x64-gnu': registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/4.7.0
'@rollup/rollup-linux-x64-musl': registry.npmmirror.com/@rollup/rollup-linux-x64-musl/4.7.0
'@rollup/rollup-win32-arm64-msvc': registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/4.7.0
'@rollup/rollup-win32-ia32-msvc': registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/4.7.0
'@rollup/rollup-win32-x64-msvc': registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/4.7.0
fsevents: registry.npmmirror.com/fsevents/2.3.3
dev: true
registry.npmmirror.com/run-parallel/1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz}
name: run-parallel
version: 1.2.0
dependencies:
queue-microtask: registry.npmmirror.com/queue-microtask/1.2.3
dev: true
registry.npmmirror.com/semver/6.3.1:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz}
name: semver
version: 6.3.1
hasBin: true
dev: true
registry.npmmirror.com/shebang-command/2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz}
name: shebang-command
version: 2.0.0
engines: {node: '>=8'}
dependencies:
shebang-regex: registry.npmmirror.com/shebang-regex/3.0.0
dev: true
registry.npmmirror.com/shebang-regex/3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz}
name: shebang-regex
version: 3.0.0
engines: {node: '>=8'}
dev: true
registry.npmmirror.com/signal-exit/3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz}
name: signal-exit
version: 3.0.7
dev: true
registry.npmmirror.com/slash/3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz}
name: slash
version: 3.0.0
engines: {node: '>=8'}
dev: true
registry.npmmirror.com/source-map/0.8.0-beta.0:
resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map/-/source-map-0.8.0-beta.0.tgz}
name: source-map
version: 0.8.0-beta.0
engines: {node: '>= 8'}
dependencies:
whatwg-url: registry.npmmirror.com/whatwg-url/7.1.0
dev: true
registry.npmmirror.com/strip-final-newline/2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz}
name: strip-final-newline
version: 2.0.0
engines: {node: '>=6'}
dev: true
registry.npmmirror.com/sucrase/3.34.0:
resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sucrase/-/sucrase-3.34.0.tgz}
name: sucrase
version: 3.34.0
engines: {node: '>=8'}
hasBin: true
dependencies:
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.3
commander: registry.npmmirror.com/commander/4.1.1
glob: registry.npmmirror.com/glob/7.1.6
lines-and-columns: registry.npmmirror.com/lines-and-columns/1.2.4
mz: registry.npmmirror.com/mz/2.7.0
pirates: registry.npmmirror.com/pirates/4.0.6
ts-interface-checker: registry.npmmirror.com/ts-interface-checker/0.1.13
dev: true
registry.npmmirror.com/supports-color/5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz}
name: supports-color
version: 5.5.0
engines: {node: '>=4'}
dependencies:
has-flag: registry.npmmirror.com/has-flag/3.0.0
dev: true
registry.npmmirror.com/supports-preserve-symlinks-flag/1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz}
name: supports-preserve-symlinks-flag
version: 1.0.0
engines: {node: '>= 0.4'}
dev: true
registry.npmmirror.com/thenify-all/1.6.0:
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/thenify-all/-/thenify-all-1.6.0.tgz}
name: thenify-all
version: 1.6.0
engines: {node: '>=0.8'}
dependencies:
thenify: registry.npmmirror.com/thenify/3.3.1
dev: true
registry.npmmirror.com/thenify/3.3.1:
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/thenify/-/thenify-3.3.1.tgz}
name: thenify
version: 3.3.1
dependencies:
any-promise: registry.npmmirror.com/any-promise/1.3.0
dev: true
registry.npmmirror.com/to-fast-properties/2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz}
name: to-fast-properties
version: 2.0.0
engines: {node: '>=4'}
dev: true
registry.npmmirror.com/to-regex-range/5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz}
name: to-regex-range
version: 5.0.1
engines: {node: '>=8.0'}
dependencies:
is-number: registry.npmmirror.com/is-number/7.0.0
dev: true
registry.npmmirror.com/tr46/1.0.1:
resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tr46/-/tr46-1.0.1.tgz}
name: tr46
version: 1.0.1
dependencies:
punycode: registry.npmmirror.com/punycode/2.3.1
dev: true
registry.npmmirror.com/tree-kill/1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tree-kill/-/tree-kill-1.2.2.tgz}
name: tree-kill
version: 1.2.2
hasBin: true
dev: true
registry.npmmirror.com/ts-interface-checker/0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz}
name: ts-interface-checker
version: 0.1.13
dev: true
registry.npmmirror.com/tsup/8.0.1_typescript@5.3.3:
resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tsup/-/tsup-8.0.1.tgz}
id: registry.npmmirror.com/tsup/8.0.1
name: tsup
version: 8.0.1
engines: {node: '>=18'}
hasBin: true
peerDependencies:
'@microsoft/api-extractor': ^7.36.0
'@swc/core': ^1
postcss: ^8.4.12
typescript: '>=4.5.0'
peerDependenciesMeta:
'@microsoft/api-extractor':
optional: true
'@swc/core':
optional: true
postcss:
optional: true
typescript:
optional: true
dependencies:
bundle-require: registry.npmmirror.com/bundle-require/4.0.2_esbuild@0.19.8
cac: registry.npmmirror.com/cac/6.7.14
chokidar: registry.npmmirror.com/chokidar/3.5.3
debug: registry.npmmirror.com/debug/4.3.4
esbuild: registry.npmmirror.com/esbuild/0.19.8
execa: registry.npmmirror.com/execa/5.1.1
globby: registry.npmmirror.com/globby/11.1.0
joycon: registry.npmmirror.com/joycon/3.1.1
postcss-load-config: registry.npmmirror.com/postcss-load-config/4.0.2
resolve-from: registry.npmmirror.com/resolve-from/5.0.0
rollup: registry.npmmirror.com/rollup/4.7.0
source-map: registry.npmmirror.com/source-map/0.8.0-beta.0
sucrase: registry.npmmirror.com/sucrase/3.34.0
tree-kill: registry.npmmirror.com/tree-kill/1.2.2
typescript: registry.npmmirror.com/typescript/5.3.3
transitivePeerDependencies:
- supports-color
- ts-node
dev: true
registry.npmmirror.com/typescript/5.3.3:
resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/-/typescript-5.3.3.tgz}
name: typescript
version: 5.3.3
engines: {node: '>=14.17'}
hasBin: true
registry.npmmirror.com/unicode-canonical-property-names-ecmascript/2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz}
name: unicode-canonical-property-names-ecmascript
version: 2.0.0
engines: {node: '>=4'}
dev: true
registry.npmmirror.com/unicode-match-property-ecmascript/2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz}
name: unicode-match-property-ecmascript
version: 2.0.0
engines: {node: '>=4'}
dependencies:
unicode-canonical-property-names-ecmascript: registry.npmmirror.com/unicode-canonical-property-names-ecmascript/2.0.0
unicode-property-aliases-ecmascript: registry.npmmirror.com/unicode-property-aliases-ecmascript/2.1.0
dev: true
registry.npmmirror.com/unicode-match-property-value-ecmascript/2.1.0:
resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz}
name: unicode-match-property-value-ecmascript
version: 2.1.0
engines: {node: '>=4'}
dev: true
registry.npmmirror.com/unicode-property-aliases-ecmascript/2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz}
name: unicode-property-aliases-ecmascript
version: 2.1.0
engines: {node: '>=4'}
dev: true
registry.npmmirror.com/update-browserslist-db/1.0.13_browserslist@4.22.2:
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz}
id: registry.npmmirror.com/update-browserslist-db/1.0.13
name: update-browserslist-db
version: 1.0.13
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
browserslist: registry.npmmirror.com/browserslist/4.22.2
escalade: registry.npmmirror.com/escalade/3.1.1
picocolors: registry.npmmirror.com/picocolors/1.0.0
dev: true
registry.npmmirror.com/webidl-conversions/4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz}
name: webidl-conversions
version: 4.0.2
dev: true
registry.npmmirror.com/whatwg-url/7.1.0:
resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/whatwg-url/-/whatwg-url-7.1.0.tgz}
name: whatwg-url
version: 7.1.0
dependencies:
lodash.sortby: registry.npmmirror.com/lodash.sortby/4.7.0
tr46: registry.npmmirror.com/tr46/1.0.1
webidl-conversions: registry.npmmirror.com/webidl-conversions/4.0.2
dev: true
registry.npmmirror.com/which/2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which/-/which-2.0.2.tgz}
name: which
version: 2.0.2
engines: {node: '>= 8'}
hasBin: true
dependencies:
isexe: registry.npmmirror.com/isexe/2.0.0
dev: true
registry.npmmirror.com/wrappy/1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz}
name: wrappy
version: 1.0.2
dev: true
registry.npmmirror.com/yallist/3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz}
name: yallist
version: 3.1.1
dev: true
registry.npmmirror.com/yaml/2.3.4:
resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml/-/yaml-2.3.4.tgz}
name: yaml
version: 2.3.4
engines: {node: '>= 14'}
dev: true
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wurangkun520/ck-plug.git
git@gitee.com:wurangkun520/ck-plug.git
wurangkun520
ck-plug
ck-plug
master

搜索帮助