加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pnpm-lock.yaml 152.48 KB
一键复制 编辑 原始数据 按行查看 历史
xiaosi 提交于 2022-12-15 23:54 . 修复条件组件
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961
lockfileVersion: 5.4
importers:
.:
specifiers:
'@vuld/utils': workspace:^1.0.0
'@vuld/vulture': workspace:^1.0.0
typescript: ^4.9.3
dependencies:
'@vuld/utils': link:packages/utils
'@vuld/vulture': link:packages/vulture
devDependencies:
typescript: registry.npmmirror.com/typescript/4.9.3
example:
specifiers:
'@vitejs/plugin-vue': ^3.2.0
vite: ^3.2.4
vue: ^3.2.36
devDependencies:
'@vitejs/plugin-vue': registry.npmmirror.com/@vitejs/plugin-vue/3.2.0_vite@3.2.4+vue@3.2.36
vite: registry.npmmirror.com/vite/3.2.4
vue: registry.npmmirror.com/vue/3.2.36
packages/utils:
specifiers: {}
packages/vulture:
specifiers:
3d-force-graph: ^1.70.17
'@preact/preset-vite': ^2.4.0
antd: ^5.0.4
babel-plugin-module-resolver: ^4.1.0
babel-preset-react: ^6.24.1
immer: ^9.0.16
preact: ^10.11.2
preact-custom-element: ^4.2.1
react-force-graph-3d: ^1.21.16
sass: ^1.56.2
three: ^0.147.0
three-spritetext: ^1.6.5
vite: ^3.2.3
dependencies:
antd: registry.npmmirror.com/antd/5.0.4
immer: registry.npmmirror.com/immer/9.0.16
preact: registry.npmmirror.com/preact/10.11.3
devDependencies:
3d-force-graph: registry.npmmirror.com/3d-force-graph/1.70.17
'@preact/preset-vite': registry.npmmirror.com/@preact/preset-vite/2.4.0_preact@10.11.3+vite@3.2.4
babel-plugin-module-resolver: registry.npmmirror.com/babel-plugin-module-resolver/4.1.0
babel-preset-react: registry.npmmirror.com/babel-preset-react/6.24.1
preact-custom-element: registry.npmmirror.com/preact-custom-element/4.2.1_preact@10.11.3
react-force-graph-3d: registry.npmmirror.com/react-force-graph-3d/1.21.16
sass: registry.npmmirror.com/sass/1.56.2
three: registry.npmmirror.com/three/0.147.0
three-spritetext: registry.npmmirror.com/three-spritetext/1.6.5_three@0.147.0
vite: registry.npmmirror.com/vite/3.2.4_sass@1.56.2
packages:
registry.npmmirror.com/3d-force-graph/1.70.17:
resolution: {integrity: sha512-6wCaRi3uAVDnvl3c+hz1hwXHoNqLRJcwzh0Y/YPCxPAQ76TCOah/qAtJdGk/Cnup37v5Q2hgmxSbxN65PTBJ+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/3d-force-graph/-/3d-force-graph-1.70.17.tgz}
name: 3d-force-graph
version: 1.70.17
dependencies:
accessor-fn: registry.npmmirror.com/accessor-fn/1.3.2
kapsule: registry.npmmirror.com/kapsule/1.13.8
three: registry.npmmirror.com/three/0.147.0
three-forcegraph: registry.npmmirror.com/three-forcegraph/1.39.8_three@0.147.0
three-render-objects: registry.npmmirror.com/three-render-objects/1.27.6_three@0.147.0
dev: true
registry.npmmirror.com/@ampproject/remapping/2.2.0:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.0.tgz}
name: '@ampproject/remapping'
version: 2.2.0
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.1.1
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.17
dev: true
registry.npmmirror.com/@ant-design/colors/6.0.0:
resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ant-design/colors/-/colors-6.0.0.tgz}
name: '@ant-design/colors'
version: 6.0.0
dependencies:
'@ctrl/tinycolor': registry.npmmirror.com/@ctrl/tinycolor/3.5.0
dev: false
registry.npmmirror.com/@ant-design/cssinjs/1.1.0:
resolution: {integrity: sha512-9kfWCnlcWZLMc184HL7zGUU3odKo/5HBMNxDxhSds2DoIzi/ojmmOU1A1butWVDSPcAbLyNQ85vxUI8mkkHrlA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ant-design/cssinjs/-/cssinjs-1.1.0.tgz}
name: '@ant-design/cssinjs'
version: 1.1.0
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
'@emotion/hash': registry.npmmirror.com/@emotion/hash/0.8.0
'@emotion/unitless': registry.npmmirror.com/@emotion/unitless/0.7.5
classnames: registry.npmmirror.com/classnames/2.3.2
csstype: registry.npmmirror.com/csstype/3.1.1
rc-util: registry.npmmirror.com/rc-util/5.25.2
stylis: registry.npmmirror.com/stylis/4.1.3
dev: false
registry.npmmirror.com/@ant-design/icons-svg/4.2.1:
resolution: {integrity: sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ant-design/icons-svg/-/icons-svg-4.2.1.tgz}
name: '@ant-design/icons-svg'
version: 4.2.1
dev: false
registry.npmmirror.com/@ant-design/icons/4.8.0:
resolution: {integrity: sha512-T89P2jG2vM7OJ0IfGx2+9FC5sQjtTzRSz+mCHTXkFn/ELZc2YpfStmYHmqzq2Jx55J0F7+O6i5/ZKFSVNWCKNg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ant-design/icons/-/icons-4.8.0.tgz}
name: '@ant-design/icons'
version: 4.8.0
engines: {node: '>=8'}
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
'@ant-design/colors': registry.npmmirror.com/@ant-design/colors/6.0.0
'@ant-design/icons-svg': registry.npmmirror.com/@ant-design/icons-svg/4.2.1
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/@ant-design/react-slick/0.29.2:
resolution: {integrity: sha512-kgjtKmkGHa19FW21lHnAfyyH9AAoh35pBdcJ53rHmQ3O+cfFHGHnUbj/HFrRNJ5vIts09FKJVAD8RpaC+RaWfA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ant-design/react-slick/-/react-slick-0.29.2.tgz}
name: '@ant-design/react-slick'
version: 0.29.2
peerDependencies:
react: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
json2mq: registry.npmmirror.com/json2mq/0.2.0
lodash: registry.npmmirror.com/lodash/4.17.21
resize-observer-polyfill: registry.npmmirror.com/resize-observer-polyfill/1.5.1
dev: false
registry.npmmirror.com/@babel/code-frame/7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.18.6.tgz}
name: '@babel/code-frame'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight/7.18.6
dev: true
registry.npmmirror.com/@babel/compat-data/7.20.5:
resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.20.5.tgz}
name: '@babel/compat-data'
version: 7.20.5
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/core/7.20.5:
resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.20.5.tgz}
name: '@babel/core'
version: 7.20.5
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.2.0
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.18.6
'@babel/generator': registry.npmmirror.com/@babel/generator/7.20.5
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.5
'@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.20.2
'@babel/helpers': registry.npmmirror.com/@babel/helpers/7.20.6
'@babel/parser': registry.npmmirror.com/@babel/parser/7.20.5
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.20.5
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
convert-source-map: registry.npmmirror.com/convert-source-map/1.9.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.1
semver: registry.npmmirror.com/semver/6.3.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/generator/7.20.5:
resolution: {integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.20.5.tgz}
name: '@babel/generator'
version: 7.20.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.2
jsesc: registry.npmmirror.com/jsesc/2.5.2
dev: true
registry.npmmirror.com/@babel/helper-annotate-as-pure/7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz}
name: '@babel/helper-annotate-as-pure'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
dev: true
registry.npmmirror.com/@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.5:
resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz}
id: registry.npmmirror.com/@babel/helper-compilation-targets/7.20.0
name: '@babel/helper-compilation-targets'
version: 7.20.0
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.20.5
'@babel/core': registry.npmmirror.com/@babel/core/7.20.5
'@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.18.6
browserslist: registry.npmmirror.com/browserslist/4.21.4
semver: registry.npmmirror.com/semver/6.3.0
dev: true
registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz}
name: '@babel/helper-environment-visitor'
version: 7.18.9
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-function-name/7.19.0:
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz}
name: '@babel/helper-function-name'
version: 7.19.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
dev: true
registry.npmmirror.com/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz}
name: '@babel/helper-hoist-variables'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
dev: true
registry.npmmirror.com/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz}
name: '@babel/helper-module-imports'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
dev: true
registry.npmmirror.com/@babel/helper-module-transforms/7.20.2:
resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz}
name: '@babel/helper-module-transforms'
version: 7.20.2
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.18.6
'@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.20.2
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.19.1
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.20.5
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/helper-plugin-utils/7.20.2:
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz}
name: '@babel/helper-plugin-utils'
version: 7.20.2
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-simple-access/7.20.2:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz}
name: '@babel/helper-simple-access'
version: 7.20.2
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
dev: true
registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz}
name: '@babel/helper-split-export-declaration'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
dev: true
registry.npmmirror.com/@babel/helper-string-parser/7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz}
name: '@babel/helper-string-parser'
version: 7.19.4
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-validator-identifier/7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz}
name: '@babel/helper-validator-identifier'
version: 7.19.1
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-validator-option/7.18.6:
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz}
name: '@babel/helper-validator-option'
version: 7.18.6
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helpers/7.20.6:
resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.20.6.tgz}
name: '@babel/helpers'
version: 7.20.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.20.5
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/highlight/7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.18.6.tgz}
name: '@babel/highlight'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.19.1
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.20.5:
resolution: {integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.20.5.tgz}
name: '@babel/parser'
version: 7.20.5
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
dev: true
registry.npmmirror.com/@babel/plugin-syntax-jsx/7.18.6:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz}
name: '@babel/plugin-syntax-jsx'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.20.2
dev: true
registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/7.18.6:
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz}
name: '@babel/plugin-transform-react-jsx-development'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.19.0
dev: true
registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.19.0:
resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz}
name: '@babel/plugin-transform-react-jsx'
version: 7.19.0
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.18.6
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.18.6
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.20.2
'@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.18.6
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
dev: true
registry.npmmirror.com/@babel/runtime/7.20.6:
resolution: {integrity: sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.20.6.tgz}
name: '@babel/runtime'
version: 7.20.6
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.13.11
registry.npmmirror.com/@babel/template/7.18.10:
resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.18.10.tgz}
name: '@babel/template'
version: 7.18.10
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.18.6
'@babel/parser': registry.npmmirror.com/@babel/parser/7.20.5
'@babel/types': registry.npmmirror.com/@babel/types/7.20.5
dev: true
registry.npmmirror.com/@babel/traverse/7.20.5:
resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.20.5.tgz}
name: '@babel/traverse'
version: 7.20.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.18.6
'@babel/generator': registry.npmmirror.com/@babel/generator/7.20.5
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.19.0
'@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.18.6
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6
'@babel/parser': registry.npmmirror.com/@babel/parser/7.20.5
'@babel/types': registry.npmmirror.com/@babel/types/7.20.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.20.5:
resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.20.5.tgz}
name: '@babel/types'
version: 7.20.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser/7.19.4
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.19.1
to-fast-properties: registry.npmmirror.com/to-fast-properties/2.0.0
dev: true
registry.npmmirror.com/@ctrl/tinycolor/3.5.0:
resolution: {integrity: sha512-tlJpwF40DEQcfR/QF+wNMVyGMaO9FQp6Z1Wahj4Gk3CJQYHwA2xVG7iKDFdW6zuxZY9XWOpGcfNCTsX4McOsOg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.5.0.tgz}
name: '@ctrl/tinycolor'
version: 3.5.0
engines: {node: '>=10'}
dev: false
registry.npmmirror.com/@emotion/hash/0.8.0:
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/hash/-/hash-0.8.0.tgz}
name: '@emotion/hash'
version: 0.8.0
dev: false
registry.npmmirror.com/@emotion/unitless/0.7.5:
resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/unitless/-/unitless-0.7.5.tgz}
name: '@emotion/unitless'
version: 0.7.5
dev: false
registry.npmmirror.com/@esbuild/android-arm/0.15.17:
resolution: {integrity: sha512-ay6Ken4u+JStjYmqIgh71jMT0bs/rXpCCDKaMfl78B20QYWJglT5P6Ejfm4hWf6Zi+uUWNe7ZmqakRs2BQYIeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.15.17.tgz}
name: '@esbuild/android-arm'
version: 0.15.17
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@esbuild/linux-loong64/0.15.17:
resolution: {integrity: sha512-IA1O7f7qxw2DX8oqTpugHElr926phs7Rq8ULXleBMk4go5K05BU0mI8BfCkWcYAvcmVaMc13bv5W3LIUlU6Y9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.15.17.tgz}
name: '@esbuild/linux-loong64'
version: 0.15.17
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/@jridgewell/gen-mapping/0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz}
name: '@jridgewell/gen-mapping'
version: 0.1.1
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.14
dev: true
registry.npmmirror.com/@jridgewell/gen-mapping/0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz}
name: '@jridgewell/gen-mapping'
version: 0.3.2
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.14
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.17
dev: true
registry.npmmirror.com/@jridgewell/resolve-uri/3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz}
name: '@jridgewell/resolve-uri'
version: 3.1.0
engines: {node: '>=6.0.0'}
dev: true
registry.npmmirror.com/@jridgewell/set-array/1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, registry: http://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.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz}
name: '@jridgewell/sourcemap-codec'
version: 1.4.14
dev: true
registry.npmmirror.com/@jridgewell/trace-mapping/0.3.17:
resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz}
name: '@jridgewell/trace-mapping'
version: 0.3.17
dependencies:
'@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri/3.1.0
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.14
dev: true
registry.npmmirror.com/@preact/preset-vite/2.4.0_preact@10.11.3+vite@3.2.4:
resolution: {integrity: sha512-EiUMHuiCThuTuK+eH2r5uDg+CJbbt4aWJGePuszrHuXUpRv6WAeO4S+/DTJsEHtPtGmPRR3cLQ68N5097eOSRA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@preact/preset-vite/-/preset-vite-2.4.0.tgz}
id: registry.npmmirror.com/@preact/preset-vite/2.4.0
name: '@preact/preset-vite'
version: 2.4.0
peerDependencies:
'@babel/core': 7.x
vite: 2.x || 3.x
dependencies:
'@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.19.0
'@babel/plugin-transform-react-jsx-development': registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/7.18.6
'@prefresh/vite': registry.npmmirror.com/@prefresh/vite/2.2.9_preact@10.11.3+vite@3.2.4
'@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/4.2.1
babel-plugin-transform-hook-names: registry.npmmirror.com/babel-plugin-transform-hook-names/1.0.2
debug: registry.npmmirror.com/debug/4.3.4
kolorist: registry.npmmirror.com/kolorist/1.6.0
resolve: registry.npmmirror.com/resolve/1.22.1
vite: registry.npmmirror.com/vite/3.2.4_sass@1.56.2
transitivePeerDependencies:
- preact
- supports-color
dev: true
registry.npmmirror.com/@prefresh/babel-plugin/0.4.4:
resolution: {integrity: sha512-/EvgIFMDL+nd20WNvMO0JQnzIl1EJPgmSaSYrZUww7A+aSdKsi37aL07TljrZR1cBMuzFxcr4xvqsUQLFJEukw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@prefresh/babel-plugin/-/babel-plugin-0.4.4.tgz}
name: '@prefresh/babel-plugin'
version: 0.4.4
dev: true
registry.npmmirror.com/@prefresh/core/1.4.1_preact@10.11.3:
resolution: {integrity: sha512-og1vaBj3LMJagVncNrDb37Gqc0cWaUcDbpVt5hZtsN4i2Iwzd/5hyTsDHvlMirhSym3wL9ihU0Xa2VhSaOue7g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@prefresh/core/-/core-1.4.1.tgz}
id: registry.npmmirror.com/@prefresh/core/1.4.1
name: '@prefresh/core'
version: 1.4.1
peerDependencies:
preact: ^10.0.0
dependencies:
preact: registry.npmmirror.com/preact/10.11.3
dev: true
registry.npmmirror.com/@prefresh/utils/1.1.3:
resolution: {integrity: sha512-Mb9abhJTOV4yCfkXrMrcgFiFT7MfNOw8sDa+XyZBdq/Ai2p4Zyxqsb3EgHLOEdHpMj6J9aiZ54W8H6FTam1u+A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@prefresh/utils/-/utils-1.1.3.tgz}
name: '@prefresh/utils'
version: 1.1.3
dev: true
registry.npmmirror.com/@prefresh/vite/2.2.9_preact@10.11.3+vite@3.2.4:
resolution: {integrity: sha512-1ERBF85Ja9/lkrfaltmo4Gca7R2ClQPSHHDDysFgfvPzHmLUeyB0x9WHwhwov/AA1DnyPhsfYT54z3yQd8XrgA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@prefresh/vite/-/vite-2.2.9.tgz}
id: registry.npmmirror.com/@prefresh/vite/2.2.9
name: '@prefresh/vite'
version: 2.2.9
peerDependencies:
preact: ^10.4.0
vite: '>=2.0.0-beta.3'
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.20.5
'@prefresh/babel-plugin': registry.npmmirror.com/@prefresh/babel-plugin/0.4.4
'@prefresh/core': registry.npmmirror.com/@prefresh/core/1.4.1_preact@10.11.3
'@prefresh/utils': registry.npmmirror.com/@prefresh/utils/1.1.3
'@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/4.2.1
preact: registry.npmmirror.com/preact/10.11.3
vite: registry.npmmirror.com/vite/3.2.4_sass@1.56.2
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@rc-component/mini-decimal/1.0.1:
resolution: {integrity: sha512-9N8nRk0oKj1qJzANKl+n9eNSMUGsZtjwNuDCiZ/KA+dt1fE3zq5x2XxclRcAbOIXnZcJ53ozP2Pa60gyELXagA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rc-component/mini-decimal/-/mini-decimal-1.0.1.tgz}
name: '@rc-component/mini-decimal'
version: 1.0.1
engines: {node: '>=8.x'}
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
dev: false
registry.npmmirror.com/@rc-component/portal/1.0.3:
resolution: {integrity: sha512-rG9j7OMiI9eLFLF6G0B4OcfLac9W8Z7Vjeizbjt/A6R+zzw7vhHbJ4GIkrDpUqXDvFdEEzdxfICpb8/noLwG+w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rc-component/portal/-/portal-1.0.3.tgz}
name: '@rc-component/portal'
version: 1.0.3
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/@rc-component/tour/1.0.1:
resolution: {integrity: sha512-azbiWP0UwGDeWfGS7oCR0gHhbWJW7O6g4wFUaC19oY+eCjmY0RPY0u0p93BJ89D8NoxP9LhSSBuU/YQA5H5kbA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rc-component/tour/-/tour-1.0.1.tgz}
name: '@rc-component/tour'
version: 1.0.1
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
'@rc-component/portal': registry.npmmirror.com/@rc-component/portal/1.0.3
classnames: registry.npmmirror.com/classnames/2.3.2
rc-trigger: registry.npmmirror.com/rc-trigger/5.3.4
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/@rollup/pluginutils/4.2.1:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz}
name: '@rollup/pluginutils'
version: 4.2.1
engines: {node: '>= 8.0.0'}
dependencies:
estree-walker: registry.npmmirror.com/estree-walker/2.0.2
picomatch: registry.npmmirror.com/picomatch/2.3.1
dev: true
registry.npmmirror.com/@tweenjs/tween.js/18.6.4:
resolution: {integrity: sha512-lB9lMjuqjtuJrx7/kOkqQBtllspPIN+96OvTCeJ2j5FEzinoAXTdAMFnDAQT1KVPRlnYfBrqxtqP66vDM40xxQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@tweenjs/tween.js/-/tween.js-18.6.4.tgz}
name: '@tweenjs/tween.js'
version: 18.6.4
dev: true
registry.npmmirror.com/@vitejs/plugin-vue/3.2.0_vite@3.2.4+vue@3.2.36:
resolution: {integrity: sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-3.2.0.tgz}
id: registry.npmmirror.com/@vitejs/plugin-vue/3.2.0
name: '@vitejs/plugin-vue'
version: 3.2.0
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^3.0.0
vue: ^3.2.25
dependencies:
vite: registry.npmmirror.com/vite/3.2.4
vue: registry.npmmirror.com/vue/3.2.36
dev: true
registry.npmmirror.com/@vue/compiler-core/3.2.36:
resolution: {integrity: sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.36.tgz}
name: '@vue/compiler-core'
version: 3.2.36
dependencies:
'@babel/parser': registry.npmmirror.com/@babel/parser/7.20.5
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
estree-walker: registry.npmmirror.com/estree-walker/2.0.2
source-map: registry.npmmirror.com/source-map/0.6.1
dev: true
registry.npmmirror.com/@vue/compiler-dom/3.2.36:
resolution: {integrity: sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.36.tgz}
name: '@vue/compiler-dom'
version: 3.2.36
dependencies:
'@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.36
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
dev: true
registry.npmmirror.com/@vue/compiler-sfc/3.2.36:
resolution: {integrity: sha512-AvGb4bTj4W8uQ4BqaSxo7UwTEqX5utdRSMyHy58OragWlt8nEACQ9mIeQh3K4di4/SX+41+pJrLIY01lHAOFOA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.36.tgz}
name: '@vue/compiler-sfc'
version: 3.2.36
dependencies:
'@babel/parser': registry.npmmirror.com/@babel/parser/7.20.5
'@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.36
'@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.36
'@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.2.36
'@vue/reactivity-transform': registry.npmmirror.com/@vue/reactivity-transform/3.2.36
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
estree-walker: registry.npmmirror.com/estree-walker/2.0.2
magic-string: registry.npmmirror.com/magic-string/0.25.9
postcss: registry.npmmirror.com/postcss/8.4.19
source-map: registry.npmmirror.com/source-map/0.6.1
dev: true
registry.npmmirror.com/@vue/compiler-ssr/3.2.36:
resolution: {integrity: sha512-+KugInUFRvOxEdLkZwE+W43BqHyhBh0jpYXhmqw1xGq2dmE6J9eZ8UUSOKNhdHtQ/iNLWWeK/wPZkVLUf3YGaw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.36.tgz}
name: '@vue/compiler-ssr'
version: 3.2.36
dependencies:
'@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.36
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
dev: true
registry.npmmirror.com/@vue/reactivity-transform/3.2.36:
resolution: {integrity: sha512-Jk5o2BhpODC9XTA7o4EL8hSJ4JyrFWErLtClG3NH8wDS7ri9jBDWxI7/549T7JY9uilKsaNM+4pJASLj5dtRwA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.2.36.tgz}
name: '@vue/reactivity-transform'
version: 3.2.36
dependencies:
'@babel/parser': registry.npmmirror.com/@babel/parser/7.20.5
'@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.36
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
estree-walker: registry.npmmirror.com/estree-walker/2.0.2
magic-string: registry.npmmirror.com/magic-string/0.25.9
dev: true
registry.npmmirror.com/@vue/reactivity/3.2.36:
resolution: {integrity: sha512-c2qvopo0crh9A4GXi2/2kfGYMxsJW4tVILrqRPydVGZHhq0fnzy6qmclWOhBFckEhmyxmpHpdJtIRYGeKcuhnA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.2.36.tgz}
name: '@vue/reactivity'
version: 3.2.36
dependencies:
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
dev: true
registry.npmmirror.com/@vue/runtime-core/3.2.36:
resolution: {integrity: sha512-PTWBD+Lub+1U3/KhbCExrfxyS14hstLX+cBboxVHaz+kXoiDLNDEYAovPtxeTutbqtClIXtft+wcGdC+FUQ9qQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.36.tgz}
name: '@vue/runtime-core'
version: 3.2.36
dependencies:
'@vue/reactivity': registry.npmmirror.com/@vue/reactivity/3.2.36
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
dev: true
registry.npmmirror.com/@vue/runtime-dom/3.2.36:
resolution: {integrity: sha512-gYPYblm7QXHVuBohqNRRT7Wez0f2Mx2D40rb4fleehrJU9CnkjG0phhcGEZFfGwCmHZRqBCRgbFWE98bPULqkg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.2.36.tgz}
name: '@vue/runtime-dom'
version: 3.2.36
dependencies:
'@vue/runtime-core': registry.npmmirror.com/@vue/runtime-core/3.2.36
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
csstype: registry.npmmirror.com/csstype/2.6.21
dev: true
registry.npmmirror.com/@vue/server-renderer/3.2.36_vue@3.2.36:
resolution: {integrity: sha512-uZE0+jfye6yYXWvAQYeHZv+f50sRryvy16uiqzk3jn8hEY8zTjI+rzlmZSGoE915k+W/Ol9XSw6vxOUD8dGkUg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.2.36.tgz}
id: registry.npmmirror.com/@vue/server-renderer/3.2.36
name: '@vue/server-renderer'
version: 3.2.36
peerDependencies:
vue: 3.2.36
dependencies:
'@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.2.36
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
vue: registry.npmmirror.com/vue/3.2.36
dev: true
registry.npmmirror.com/@vue/shared/3.2.36:
resolution: {integrity: sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.2.36.tgz}
name: '@vue/shared'
version: 3.2.36
dev: true
registry.npmmirror.com/accessor-fn/1.3.2:
resolution: {integrity: sha512-W4/Lj/gry8AHy+IC7Havr7fNbphHDzVAiZd5h10g8LRRz6ZKla3A1/lkFqoV1jh13R0eJLGWjDBlRGK36fcWiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/accessor-fn/-/accessor-fn-1.3.2.tgz}
name: accessor-fn
version: 1.3.2
dev: true
registry.npmmirror.com/ansi-styles/3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, registry: http://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/antd/5.0.4:
resolution: {integrity: sha512-SbMmMTpenY8OfNABJl9/xEGhLP+2mQBbFxelT8ySFb7BR6KwsaVbz6BJOaBWmHBwNq86gXQWJtouQ9Znb6p0RA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/antd/-/antd-5.0.4.tgz}
name: antd
version: 5.0.4
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@ant-design/colors': registry.npmmirror.com/@ant-design/colors/6.0.0
'@ant-design/cssinjs': registry.npmmirror.com/@ant-design/cssinjs/1.1.0
'@ant-design/icons': registry.npmmirror.com/@ant-design/icons/4.8.0
'@ant-design/react-slick': registry.npmmirror.com/@ant-design/react-slick/0.29.2
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
'@ctrl/tinycolor': registry.npmmirror.com/@ctrl/tinycolor/3.5.0
'@rc-component/tour': registry.npmmirror.com/@rc-component/tour/1.0.1
classnames: registry.npmmirror.com/classnames/2.3.2
copy-to-clipboard: registry.npmmirror.com/copy-to-clipboard/3.3.3
dayjs: registry.npmmirror.com/dayjs/1.11.6
lodash: registry.npmmirror.com/lodash/4.17.21
rc-cascader: registry.npmmirror.com/rc-cascader/3.7.0
rc-checkbox: registry.npmmirror.com/rc-checkbox/2.3.2
rc-collapse: registry.npmmirror.com/rc-collapse/3.4.2
rc-dialog: registry.npmmirror.com/rc-dialog/9.0.2
rc-drawer: registry.npmmirror.com/rc-drawer/6.0.1
rc-dropdown: registry.npmmirror.com/rc-dropdown/4.0.1
rc-field-form: registry.npmmirror.com/rc-field-form/1.27.3
rc-image: registry.npmmirror.com/rc-image/5.12.1
rc-input: registry.npmmirror.com/rc-input/0.1.4
rc-input-number: registry.npmmirror.com/rc-input-number/7.4.0
rc-mentions: registry.npmmirror.com/rc-mentions/1.13.1
rc-menu: registry.npmmirror.com/rc-menu/9.8.1
rc-motion: registry.npmmirror.com/rc-motion/2.6.2
rc-notification: registry.npmmirror.com/rc-notification/5.0.0-alpha.9
rc-pagination: registry.npmmirror.com/rc-pagination/3.2.0
rc-picker: registry.npmmirror.com/rc-picker/3.1.2_dayjs@1.11.6
rc-progress: registry.npmmirror.com/rc-progress/3.4.1
rc-rate: registry.npmmirror.com/rc-rate/2.9.2
rc-resize-observer: registry.npmmirror.com/rc-resize-observer/1.2.0
rc-segmented: registry.npmmirror.com/rc-segmented/2.1.0
rc-select: registry.npmmirror.com/rc-select/14.1.16
rc-slider: registry.npmmirror.com/rc-slider/10.0.1
rc-steps: registry.npmmirror.com/rc-steps/6.0.0-alpha.2
rc-switch: registry.npmmirror.com/rc-switch/4.0.0
rc-table: registry.npmmirror.com/rc-table/7.26.0
rc-tabs: registry.npmmirror.com/rc-tabs/12.4.1
rc-textarea: registry.npmmirror.com/rc-textarea/0.4.7
rc-tooltip: registry.npmmirror.com/rc-tooltip/5.2.2
rc-tree: registry.npmmirror.com/rc-tree/5.7.2
rc-tree-select: registry.npmmirror.com/rc-tree-select/5.5.5
rc-trigger: registry.npmmirror.com/rc-trigger/5.3.4
rc-upload: registry.npmmirror.com/rc-upload/4.3.4
rc-util: registry.npmmirror.com/rc-util/5.25.2
scroll-into-view-if-needed: registry.npmmirror.com/scroll-into-view-if-needed/2.2.31
shallowequal: registry.npmmirror.com/shallowequal/1.1.0
transitivePeerDependencies:
- date-fns
- moment
dev: false
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-tree-filter/2.1.0:
resolution: {integrity: sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/array-tree-filter/-/array-tree-filter-2.1.0.tgz}
name: array-tree-filter
version: 2.1.0
dev: false
registry.npmmirror.com/async-validator/4.2.5:
resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz}
name: async-validator
version: 4.2.5
dev: false
registry.npmmirror.com/babel-helper-builder-react-jsx/6.26.0:
resolution: {integrity: sha512-02I9jDjnVEuGy2BR3LRm9nPRb/+Ja0pvZVLr1eI5TYAA/dB0Xoc+WBo50+aDfhGDLhlBY1+QURjn9uvcFd8gzg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz}
name: babel-helper-builder-react-jsx
version: 6.26.0
dependencies:
babel-runtime: registry.npmmirror.com/babel-runtime/6.26.0
babel-types: registry.npmmirror.com/babel-types/6.26.0
esutils: registry.npmmirror.com/esutils/2.0.3
dev: true
registry.npmmirror.com/babel-plugin-module-resolver/4.1.0:
resolution: {integrity: sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-module-resolver/-/babel-plugin-module-resolver-4.1.0.tgz}
name: babel-plugin-module-resolver
version: 4.1.0
engines: {node: '>= 8.0.0'}
dependencies:
find-babel-config: registry.npmmirror.com/find-babel-config/1.2.0
glob: registry.npmmirror.com/glob/7.2.3
pkg-up: registry.npmmirror.com/pkg-up/3.1.0
reselect: registry.npmmirror.com/reselect/4.1.7
resolve: registry.npmmirror.com/resolve/1.22.1
dev: true
registry.npmmirror.com/babel-plugin-syntax-flow/6.18.0:
resolution: {integrity: sha512-HbTDIoG1A1op7Tl/wIFQPULIBA61tsJ8Ntq2FAhLwuijrzosM/92kAfgU1Q3Kc7DH/cprJg5vDfuTY4QUL4rDA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz}
name: babel-plugin-syntax-flow
version: 6.18.0
dev: true
registry.npmmirror.com/babel-plugin-syntax-jsx/6.18.0:
resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz}
name: babel-plugin-syntax-jsx
version: 6.18.0
dev: true
registry.npmmirror.com/babel-plugin-transform-flow-strip-types/6.22.0:
resolution: {integrity: sha512-TxIM0ZWNw9oYsoTthL3lvAK3+eTujzktoXJg4ubGvICGbVuXVYv5hHv0XXpz8fbqlJaGYY4q5SVzaSmsg3t4Fg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz}
name: babel-plugin-transform-flow-strip-types
version: 6.22.0
dependencies:
babel-plugin-syntax-flow: registry.npmmirror.com/babel-plugin-syntax-flow/6.18.0
babel-runtime: registry.npmmirror.com/babel-runtime/6.26.0
dev: true
registry.npmmirror.com/babel-plugin-transform-hook-names/1.0.2:
resolution: {integrity: sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-transform-hook-names/-/babel-plugin-transform-hook-names-1.0.2.tgz}
name: babel-plugin-transform-hook-names
version: 1.0.2
peerDependencies:
'@babel/core': ^7.12.10
dev: true
registry.npmmirror.com/babel-plugin-transform-react-display-name/6.25.0:
resolution: {integrity: sha512-QLYkLiZeeED2PKd4LuXGg5y9fCgPB5ohF8olWUuETE2ryHNRqqnXlEVP7RPuef89+HTfd3syptMGVHeoAu0Wig==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz}
name: babel-plugin-transform-react-display-name
version: 6.25.0
dependencies:
babel-runtime: registry.npmmirror.com/babel-runtime/6.26.0
dev: true
registry.npmmirror.com/babel-plugin-transform-react-jsx-self/6.22.0:
resolution: {integrity: sha512-Y3ZHP1nunv0U1+ysTNwLK39pabHj6cPVsfN4TRC7BDBfbgbyF4RifP5kd6LnbuMV9wcfedQMe7hn1fyKc7IzTQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz}
name: babel-plugin-transform-react-jsx-self
version: 6.22.0
dependencies:
babel-plugin-syntax-jsx: registry.npmmirror.com/babel-plugin-syntax-jsx/6.18.0
babel-runtime: registry.npmmirror.com/babel-runtime/6.26.0
dev: true
registry.npmmirror.com/babel-plugin-transform-react-jsx-source/6.22.0:
resolution: {integrity: sha512-pcDNDsZ9q/6LJmujQ/OhjeoIlp5Nl546HJ2yiFIJK3mYpgNXhI5/S9mXfVxu5yqWAi7HdI7e/q6a9xtzwL69Vw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz}
name: babel-plugin-transform-react-jsx-source
version: 6.22.0
dependencies:
babel-plugin-syntax-jsx: registry.npmmirror.com/babel-plugin-syntax-jsx/6.18.0
babel-runtime: registry.npmmirror.com/babel-runtime/6.26.0
dev: true
registry.npmmirror.com/babel-plugin-transform-react-jsx/6.24.1:
resolution: {integrity: sha512-s+q/Y2u2OgDPHRuod3t6zyLoV8pUHc64i/O7ZNgIOEdYTq+ChPeybcKBi/xk9VI60VriILzFPW+dUxAEbTxh2w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz}
name: babel-plugin-transform-react-jsx
version: 6.24.1
dependencies:
babel-helper-builder-react-jsx: registry.npmmirror.com/babel-helper-builder-react-jsx/6.26.0
babel-plugin-syntax-jsx: registry.npmmirror.com/babel-plugin-syntax-jsx/6.18.0
babel-runtime: registry.npmmirror.com/babel-runtime/6.26.0
dev: true
registry.npmmirror.com/babel-preset-flow/6.23.0:
resolution: {integrity: sha512-PQZFJXnM3d80Vq4O67OE6EMVKIw2Vmzy8UXovqulNogCtblWU8rzP7Sm5YgHiCg4uejUxzCkHfNXQ4Z6GI+Dhw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz}
name: babel-preset-flow
version: 6.23.0
dependencies:
babel-plugin-transform-flow-strip-types: registry.npmmirror.com/babel-plugin-transform-flow-strip-types/6.22.0
dev: true
registry.npmmirror.com/babel-preset-react/6.24.1:
resolution: {integrity: sha512-phQe3bElbgF887UM0Dhz55d22ob8czTL1kbhZFwpCE6+R/X9kHktfwmx9JZb+bBSVRGphP5tZ9oWhVhlgjrX3Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz}
name: babel-preset-react
version: 6.24.1
dependencies:
babel-plugin-syntax-jsx: registry.npmmirror.com/babel-plugin-syntax-jsx/6.18.0
babel-plugin-transform-react-display-name: registry.npmmirror.com/babel-plugin-transform-react-display-name/6.25.0
babel-plugin-transform-react-jsx: registry.npmmirror.com/babel-plugin-transform-react-jsx/6.24.1
babel-plugin-transform-react-jsx-self: registry.npmmirror.com/babel-plugin-transform-react-jsx-self/6.22.0
babel-plugin-transform-react-jsx-source: registry.npmmirror.com/babel-plugin-transform-react-jsx-source/6.22.0
babel-preset-flow: registry.npmmirror.com/babel-preset-flow/6.23.0
dev: true
registry.npmmirror.com/babel-runtime/6.26.0:
resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-runtime/-/babel-runtime-6.26.0.tgz}
name: babel-runtime
version: 6.26.0
dependencies:
core-js: registry.npmmirror.com/core-js/2.6.12
regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.11.1
dev: true
registry.npmmirror.com/babel-types/6.26.0:
resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-types/-/babel-types-6.26.0.tgz}
name: babel-types
version: 6.26.0
dependencies:
babel-runtime: registry.npmmirror.com/babel-runtime/6.26.0
esutils: registry.npmmirror.com/esutils/2.0.3
lodash: registry.npmmirror.com/lodash/4.17.21
to-fast-properties: registry.npmmirror.com/to-fast-properties/1.0.3
dev: true
registry.npmmirror.com/balanced-match/1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, registry: http://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: http://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.21.4:
resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browserslist/-/browserslist-4.21.4.tgz}
name: browserslist
version: 4.21.4
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
caniuse-lite: registry.npmmirror.com/caniuse-lite/1.0.30001436
electron-to-chromium: registry.npmmirror.com/electron-to-chromium/1.4.284
node-releases: registry.npmmirror.com/node-releases/2.0.6
update-browserslist-db: registry.npmmirror.com/update-browserslist-db/1.0.10_browserslist@4.21.4
dev: true
registry.npmmirror.com/caniuse-lite/1.0.30001436:
resolution: {integrity: sha512-ZmWkKsnC2ifEPoWUvSAIGyOYwT+keAaaWPHiQ9DfMqS1t6tfuyFYoWR78TeZtznkEQ64+vGXH9cZrElwR2Mrxg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001436.tgz}
name: caniuse-lite
version: 1.0.30001436
dev: true
registry.npmmirror.com/chalk/2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, registry: http://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.2
dev: true
registry.npmmirror.com/classnames/2.3.2:
resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/classnames/-/classnames-2.3.2.tgz}
name: classnames
version: 2.3.2
dev: false
registry.npmmirror.com/color-convert/1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, registry: http://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: http://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/compute-scroll-into-view/1.0.20:
resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz}
name: compute-scroll-into-view
version: 1.0.20
dev: false
registry.npmmirror.com/concat-map/0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, registry: http://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/1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz}
name: convert-source-map
version: 1.9.0
dev: true
registry.npmmirror.com/copy-to-clipboard/3.3.3:
resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz}
name: copy-to-clipboard
version: 3.3.3
dependencies:
toggle-selection: registry.npmmirror.com/toggle-selection/1.0.6
dev: false
registry.npmmirror.com/core-js/2.6.12:
resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/core-js/-/core-js-2.6.12.tgz}
name: core-js
version: 2.6.12
deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
requiresBuild: true
dev: true
registry.npmmirror.com/csstype/2.6.21:
resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/csstype/-/csstype-2.6.21.tgz}
name: csstype
version: 2.6.21
dev: true
registry.npmmirror.com/csstype/3.1.1:
resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/csstype/-/csstype-3.1.1.tgz}
name: csstype
version: 3.1.1
dev: false
registry.npmmirror.com/d3-array/3.2.1:
resolution: {integrity: sha512-gUY/qeHq/yNqqoCKNq4vtpFLdoCdvyNpWoC/KNjhGbhDuQpAM9sIQQKkXSNpXa9h5KySs/gzm7R88WkUutgwWQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-array/-/d3-array-3.2.1.tgz}
name: d3-array
version: 3.2.1
engines: {node: '>=12'}
dependencies:
internmap: registry.npmmirror.com/internmap/2.0.3
dev: true
registry.npmmirror.com/d3-binarytree/0.2.2:
resolution: {integrity: sha512-TmgSEKWO4lSjX26Rk77hbTdiF3TQ1v5LqL+cmSz6/5RiSxmq6+e6qHE6X/KwrsIESekhEReH63X5yM8dvXaT7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-binarytree/-/d3-binarytree-0.2.2.tgz}
name: d3-binarytree
version: 0.2.2
dev: true
registry.npmmirror.com/d3-color/3.1.0:
resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-color/-/d3-color-3.1.0.tgz}
name: d3-color
version: 3.1.0
engines: {node: '>=12'}
dev: true
registry.npmmirror.com/d3-dispatch/3.0.1:
resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz}
name: d3-dispatch
version: 3.0.1
engines: {node: '>=12'}
dev: true
registry.npmmirror.com/d3-force-3d/3.0.3:
resolution: {integrity: sha512-8HGTbw6y35UYManGCPU4+b9/PGgnyjzRq80DRsp7zFsRl0leVz2pzwx18dwkPe4rDxTOEpM4BuWQ2krbVaGQQA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-force-3d/-/d3-force-3d-3.0.3.tgz}
name: d3-force-3d
version: 3.0.3
engines: {node: '>=12'}
dependencies:
d3-binarytree: registry.npmmirror.com/d3-binarytree/0.2.2
d3-dispatch: registry.npmmirror.com/d3-dispatch/3.0.1
d3-octree: registry.npmmirror.com/d3-octree/0.2.2
d3-quadtree: registry.npmmirror.com/d3-quadtree/3.0.1
d3-timer: registry.npmmirror.com/d3-timer/3.0.1
dev: true
registry.npmmirror.com/d3-format/3.1.0:
resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-format/-/d3-format-3.1.0.tgz}
name: d3-format
version: 3.1.0
engines: {node: '>=12'}
dev: true
registry.npmmirror.com/d3-interpolate/3.0.1:
resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz}
name: d3-interpolate
version: 3.0.1
engines: {node: '>=12'}
dependencies:
d3-color: registry.npmmirror.com/d3-color/3.1.0
dev: true
registry.npmmirror.com/d3-octree/0.2.2:
resolution: {integrity: sha512-ysk9uSPAhZVb0Gq4GXzghl/Yqxu80dHrq55I53qaIMdGB65+0UfO84sr4Fci2JHumcgh6H4WE0r8LwxPagkE+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-octree/-/d3-octree-0.2.2.tgz}
name: d3-octree
version: 0.2.2
dev: true
registry.npmmirror.com/d3-quadtree/3.0.1:
resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz}
name: d3-quadtree
version: 3.0.1
engines: {node: '>=12'}
dev: true
registry.npmmirror.com/d3-scale-chromatic/3.0.0:
resolution: {integrity: sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz}
name: d3-scale-chromatic
version: 3.0.0
engines: {node: '>=12'}
dependencies:
d3-color: registry.npmmirror.com/d3-color/3.1.0
d3-interpolate: registry.npmmirror.com/d3-interpolate/3.0.1
dev: true
registry.npmmirror.com/d3-scale/4.0.2:
resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-scale/-/d3-scale-4.0.2.tgz}
name: d3-scale
version: 4.0.2
engines: {node: '>=12'}
dependencies:
d3-array: registry.npmmirror.com/d3-array/3.2.1
d3-format: registry.npmmirror.com/d3-format/3.1.0
d3-interpolate: registry.npmmirror.com/d3-interpolate/3.0.1
d3-time: registry.npmmirror.com/d3-time/3.1.0
d3-time-format: registry.npmmirror.com/d3-time-format/4.1.0
dev: true
registry.npmmirror.com/d3-time-format/4.1.0:
resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-time-format/-/d3-time-format-4.1.0.tgz}
name: d3-time-format
version: 4.1.0
engines: {node: '>=12'}
dependencies:
d3-time: registry.npmmirror.com/d3-time/3.1.0
dev: true
registry.npmmirror.com/d3-time/3.1.0:
resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-time/-/d3-time-3.1.0.tgz}
name: d3-time
version: 3.1.0
engines: {node: '>=12'}
dependencies:
d3-array: registry.npmmirror.com/d3-array/3.2.1
dev: true
registry.npmmirror.com/d3-timer/3.0.1:
resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/d3-timer/-/d3-timer-3.0.1.tgz}
name: d3-timer
version: 3.0.1
engines: {node: '>=12'}
dev: true
registry.npmmirror.com/data-joint/1.2.6:
resolution: {integrity: sha512-xuKyhQcD7vlO451VwKoK0RS8owh+iAZoQM2Up0ooTxrpLXh6XMUNPQW9vEOqv1+BT3c185FCLyWjUcCsEXC0/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/data-joint/-/data-joint-1.2.6.tgz}
name: data-joint
version: 1.2.6
dependencies:
index-array-by: registry.npmmirror.com/index-array-by/1.3.3
dev: true
registry.npmmirror.com/dayjs/1.11.6:
resolution: {integrity: sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dayjs/-/dayjs-1.11.6.tgz}
name: dayjs
version: 1.11.6
dev: false
registry.npmmirror.com/debounce/1.2.1:
resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debounce/-/debounce-1.2.1.tgz}
name: debounce
version: 1.2.1
dev: true
registry.npmmirror.com/debug/4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, registry: http://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/dom-align/1.12.4:
resolution: {integrity: sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/dom-align/-/dom-align-1.12.4.tgz}
name: dom-align
version: 1.12.4
dev: false
registry.npmmirror.com/electron-to-chromium/1.4.284:
resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz}
name: electron-to-chromium
version: 1.4.284
dev: true
registry.npmmirror.com/esbuild-android-64/0.15.17:
resolution: {integrity: sha512-sUs6cKMAuAyWnJ/66ezWVr9SMRGFSwoMagxzdhXYggSA12zF7krXSuc1Y9JwxHq56wtv/gFAVo97TFm7RBc1Ig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-64/-/esbuild-android-64-0.15.17.tgz}
name: esbuild-android-64
version: 0.15.17
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-android-arm64/0.15.17:
resolution: {integrity: sha512-RLZuCgIx1rexwxwsXTEW40ZiZzdBI1MBphwDRFyms/iiJGwLxqCH7v75iSJk5s6AF6oa80KC6r/RmzyaX/uJNg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-arm64/-/esbuild-android-arm64-0.15.17.tgz}
name: esbuild-android-arm64
version: 0.15.17
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-darwin-64/0.15.17:
resolution: {integrity: sha512-+6RTCZ0hfAb+RqTNq1uVsBcP441yZOSi6CyV9BIBryGGVg8RM3Bc6L45e5b68jdRloddN92ekS50e4ElI+cHQA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.17.tgz}
name: esbuild-darwin-64
version: 0.15.17
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-darwin-arm64/0.15.17:
resolution: {integrity: sha512-ne4UWUHEKWLgYSE5SLr0/TBcID3k9LPnrzzRXzFLTfD+ygjnW1pMEgdMfmOKIe8jYBUYv8x/YoksriTdQb9r/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.17.tgz}
name: esbuild-darwin-arm64
version: 0.15.17
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-freebsd-64/0.15.17:
resolution: {integrity: sha512-6my3DrwLOe1zhR8UzVRKeo9AFM9XkApJBcx0IE+qKaEbKKBxYAiDBtd2ZMtRA2agqIwRP0kuHofTiDEzpfA+ZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.17.tgz}
name: esbuild-freebsd-64
version: 0.15.17
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-freebsd-arm64/0.15.17:
resolution: {integrity: sha512-LQL7+f+bz+xmAu1FcDBB304Wm2CjONUcOeF4f3TqG7wYXMxjjYQZBFv+0OVapNXyYrM2vy9JMDbps+SheuOnHg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.17.tgz}
name: esbuild-freebsd-arm64
version: 0.15.17
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-linux-32/0.15.17:
resolution: {integrity: sha512-7E9vZXMZhINQ4/KcxBxioJ2ao5gbXJ6Pa4/LEUd102g3gadSalpg0LrityFgw7ao6qmjcNWwdEYrXaDnOzyyYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-32/-/esbuild-linux-32-0.15.17.tgz}
name: esbuild-linux-32
version: 0.15.17
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-linux-64/0.15.17:
resolution: {integrity: sha512-TnedHtFQSUVlc0J0D4ZMMalYaQ0Zbt7HSwGy4sav7BlXVqDVc/rchJ/a9dathK51apzLgRyXQMseLf6bkloaSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.15.17.tgz}
name: esbuild-linux-64
version: 0.15.17
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-linux-arm/0.15.17:
resolution: {integrity: sha512-+ugCmBTTDIlh+UuC7E/GvyJqjGTX2pNOA+g3isG78aYcfgswrHjvstTtIfljaU95AS30qrVNLgI5h/8TsRWTrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm/-/esbuild-linux-arm-0.15.17.tgz}
name: esbuild-linux-arm
version: 0.15.17
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-linux-arm64/0.15.17:
resolution: {integrity: sha512-oupYfh0lTHg+F/2ZoTNrioB+KLd6x0Zlhjz2Oa1jhl8wCGkNvwe25RytR2/SGPYpoNVcvCeoayWQRwwRuWGgfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.17.tgz}
name: esbuild-linux-arm64
version: 0.15.17
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-linux-mips64le/0.15.17:
resolution: {integrity: sha512-aUVyHwUXJF1hi9jsAT+At+cBxZh2yGICi/e757N6d/zzOD+eVK3PKQj68tAvIflx6/ZpnuCTKol1GpgGYrzERg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.17.tgz}
name: esbuild-linux-mips64le
version: 0.15.17
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-linux-ppc64le/0.15.17:
resolution: {integrity: sha512-i7789iFTLfLccHPNADCbaZPx9CuQblsBqv2j4XqIBN1jKIJbpQ8iqCkWoHep4PLqqKLtBLtTWh919GsrFGdeJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.17.tgz}
name: esbuild-linux-ppc64le
version: 0.15.17
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-linux-riscv64/0.15.17:
resolution: {integrity: sha512-fEQ/8tnZ2sDniBlPfTXEdg+0OP1olps96HvYdwl8ywJdAlD7AK761EL3lRbRdfMHNOId2N6+CVca43/Fiu/0AQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.17.tgz}
name: esbuild-linux-riscv64
version: 0.15.17
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-linux-s390x/0.15.17:
resolution: {integrity: sha512-ZBQekST4gYgTKHAvUJtR1kFFulHTDlRZSE8T0wRQCmQqydNkC1teWxlR31xS6MZevjZGfa7OMVJD24bBhei/2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.17.tgz}
name: esbuild-linux-s390x
version: 0.15.17
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-netbsd-64/0.15.17:
resolution: {integrity: sha512-onNBFaZVN9GzGJMm3aZJJv74n/Q8FjW20G9OfSDhHjvamqJ5vbd42hNk6igQX4lgBCHTZvvBlWDJAMy+tbJAAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.17.tgz}
name: esbuild-netbsd-64
version: 0.15.17
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-openbsd-64/0.15.17:
resolution: {integrity: sha512-QFxHmvjaRrmTCvH/A3EmzqKUSZHRQ7/pbrJeATsb/Q6qckCeL9e7zg/1A3HiZqDXeBUV3yNeBeV1GJBjY6yVyA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.17.tgz}
name: esbuild-openbsd-64
version: 0.15.17
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-sunos-64/0.15.17:
resolution: {integrity: sha512-7dHZA8Kc6U8rBTKojJatXtzHTUKJ3CRYimvOGIQQ1yUDOqGx/zZkCH/HkEi3Zg5SWyDj/57E5e1YJPo4ySSw/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-sunos-64/-/esbuild-sunos-64-0.15.17.tgz}
name: esbuild-sunos-64
version: 0.15.17
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-windows-32/0.15.17:
resolution: {integrity: sha512-yDrNrwQ/0k4N3OZItZ6k6YnBUch8+of06YRYc3hFI8VDm7X1rkNZwhttZNAzF6+TtbnK4cIz7H2/EwdSoaGZ3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-32/-/esbuild-windows-32-0.15.17.tgz}
name: esbuild-windows-32
version: 0.15.17
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-windows-64/0.15.17:
resolution: {integrity: sha512-jPnXvB4zMMToNPpCBdt+OEQiYFVs9wlQ5G8vMoJkrYJBp1aEt070MRpBFa6pfBFrgXquqgUiNAohMcTdy+JVFg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-64/-/esbuild-windows-64-0.15.17.tgz}
name: esbuild-windows-64
version: 0.15.17
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild-windows-arm64/0.15.17:
resolution: {integrity: sha512-I5QeSsz0X66V8rxVhmw03Wzn8Tz63H3L9GrsA7C5wvBXMk3qahLWuEL+l7SZ2DleKkFeZZMu1dPxOak9f1TZ4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.17.tgz}
name: esbuild-windows-arm64
version: 0.15.17
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
registry.npmmirror.com/esbuild/0.15.17:
resolution: {integrity: sha512-8MbkDX+kh0kaeYGd6klMbn1uTOXHoDw7UYMd1dQYA5cqBZivf5+pzfaXZSL1RNamJfXW/uWC5+9wX5ejDgpSqg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.15.17.tgz}
name: esbuild
version: 0.15.17
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
'@esbuild/android-arm': registry.npmmirror.com/@esbuild/android-arm/0.15.17
'@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64/0.15.17
esbuild-android-64: registry.npmmirror.com/esbuild-android-64/0.15.17
esbuild-android-arm64: registry.npmmirror.com/esbuild-android-arm64/0.15.17
esbuild-darwin-64: registry.npmmirror.com/esbuild-darwin-64/0.15.17
esbuild-darwin-arm64: registry.npmmirror.com/esbuild-darwin-arm64/0.15.17
esbuild-freebsd-64: registry.npmmirror.com/esbuild-freebsd-64/0.15.17
esbuild-freebsd-arm64: registry.npmmirror.com/esbuild-freebsd-arm64/0.15.17
esbuild-linux-32: registry.npmmirror.com/esbuild-linux-32/0.15.17
esbuild-linux-64: registry.npmmirror.com/esbuild-linux-64/0.15.17
esbuild-linux-arm: registry.npmmirror.com/esbuild-linux-arm/0.15.17
esbuild-linux-arm64: registry.npmmirror.com/esbuild-linux-arm64/0.15.17
esbuild-linux-mips64le: registry.npmmirror.com/esbuild-linux-mips64le/0.15.17
esbuild-linux-ppc64le: registry.npmmirror.com/esbuild-linux-ppc64le/0.15.17
esbuild-linux-riscv64: registry.npmmirror.com/esbuild-linux-riscv64/0.15.17
esbuild-linux-s390x: registry.npmmirror.com/esbuild-linux-s390x/0.15.17
esbuild-netbsd-64: registry.npmmirror.com/esbuild-netbsd-64/0.15.17
esbuild-openbsd-64: registry.npmmirror.com/esbuild-openbsd-64/0.15.17
esbuild-sunos-64: registry.npmmirror.com/esbuild-sunos-64/0.15.17
esbuild-windows-32: registry.npmmirror.com/esbuild-windows-32/0.15.17
esbuild-windows-64: registry.npmmirror.com/esbuild-windows-64/0.15.17
esbuild-windows-arm64: registry.npmmirror.com/esbuild-windows-arm64/0.15.17
dev: true
registry.npmmirror.com/escalade/3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, registry: http://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: http://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/estree-walker/2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz}
name: estree-walker
version: 2.0.2
dev: true
registry.npmmirror.com/esutils/2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, registry: http://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/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/find-babel-config/1.2.0:
resolution: {integrity: sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-babel-config/-/find-babel-config-1.2.0.tgz}
name: find-babel-config
version: 1.2.0
engines: {node: '>=4.0.0'}
dependencies:
json5: registry.npmmirror.com/json5/0.5.1
path-exists: registry.npmmirror.com/path-exists/3.0.0
dev: true
registry.npmmirror.com/find-up/3.0.0:
resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/find-up/-/find-up-3.0.0.tgz}
name: find-up
version: 3.0.0
engines: {node: '>=6'}
dependencies:
locate-path: registry.npmmirror.com/locate-path/3.0.0
dev: true
registry.npmmirror.com/fromentries/1.3.2:
resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fromentries/-/fromentries-1.3.2.tgz}
name: fromentries
version: 1.3.2
dev: true
registry.npmmirror.com/fs.realpath/1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, registry: http://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.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz}
name: fsevents
version: 2.3.2
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.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz}
name: function-bind
version: 1.1.1
dev: true
registry.npmmirror.com/gensync/1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, registry: http://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/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.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz}
name: glob
version: 7.2.3
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: http://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/has-flag/3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, registry: http://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/has/1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has/-/has-1.0.3.tgz}
name: has
version: 1.0.3
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: registry.npmmirror.com/function-bind/1.1.1
dev: true
registry.npmmirror.com/immer/9.0.16:
resolution: {integrity: sha512-qenGE7CstVm1NrHQbMh8YaSzTZTFNP3zPqr3YU0S0UY441j4bJTg4A2Hh5KAhwgaiU6ZZ1Ar6y/2f4TblnMReQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/immer/-/immer-9.0.16.tgz}
name: immer
version: 9.0.16
dev: false
registry.npmmirror.com/immutable/4.1.0:
resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/immutable/-/immutable-4.1.0.tgz}
name: immutable
version: 4.1.0
dev: true
registry.npmmirror.com/index-array-by/1.3.3:
resolution: {integrity: sha512-dpqV1sX+hx4s0RqAT97ypk9xzcAXJ0XK27p3bTgPy8bjbJAX6Kf7RU3pPXgmg9hhO7f5/WxO354v2f/A0/fz3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/index-array-by/-/index-array-by-1.3.3.tgz}
name: index-array-by
version: 1.3.3
dev: true
registry.npmmirror.com/inflight/1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, registry: http://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: http://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/internmap/2.0.3:
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/internmap/-/internmap-2.0.3.tgz}
name: internmap
version: 2.0.3
engines: {node: '>=12'}
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.11.0:
resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-core-module/-/is-core-module-2.11.0.tgz}
name: is-core-module
version: 2.11.0
dependencies:
has: registry.npmmirror.com/has/1.0.3
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/jerrypick/1.0.5:
resolution: {integrity: sha512-95dIyL2QXqevDDJ70rmiqKLsTi+riZftLQo708tSFR/O5pQOf6VscDhjnN8mkNQwqnQmGhw+6dfZ5d4bmH/yww==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jerrypick/-/jerrypick-1.0.5.tgz}
name: jerrypick
version: 1.0.5
dev: true
registry.npmmirror.com/js-tokens/4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, registry: http://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/2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, registry: http://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/json2mq/0.2.0:
resolution: {integrity: sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json2mq/-/json2mq-0.2.0.tgz}
name: json2mq
version: 0.2.0
dependencies:
string-convert: registry.npmmirror.com/string-convert/0.2.1
dev: false
registry.npmmirror.com/json5/0.5.1:
resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json5/-/json5-0.5.1.tgz}
name: json5
version: 0.5.1
hasBin: true
dev: true
registry.npmmirror.com/json5/2.2.1:
resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json5/-/json5-2.2.1.tgz}
name: json5
version: 2.2.1
engines: {node: '>=6'}
hasBin: true
dev: true
registry.npmmirror.com/kapsule/1.13.8:
resolution: {integrity: sha512-Y1lLt1htHNofIM5kxS5OdEqDm7WFqHF4hm6DrrvNEKIJugfQrxDBycV41QI5FpnBGHqyBD99VpTB5ARnlufP6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/kapsule/-/kapsule-1.13.8.tgz}
name: kapsule
version: 1.13.8
dependencies:
debounce: registry.npmmirror.com/debounce/1.2.1
dev: true
registry.npmmirror.com/kolorist/1.6.0:
resolution: {integrity: sha512-dLkz37Ab97HWMx9KTes3Tbi3D1ln9fCAy2zr2YVExJasDRPGRaKcoE4fycWNtnCAJfjFqe0cnY+f8KT2JePEXQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/kolorist/-/kolorist-1.6.0.tgz}
name: kolorist
version: 1.6.0
dev: true
registry.npmmirror.com/locate-path/3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/locate-path/-/locate-path-3.0.0.tgz}
name: locate-path
version: 3.0.0
engines: {node: '>=6'}
dependencies:
p-locate: registry.npmmirror.com/p-locate/3.0.0
path-exists: registry.npmmirror.com/path-exists/3.0.0
dev: true
registry.npmmirror.com/lodash/4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz}
name: lodash
version: 4.17.21
registry.npmmirror.com/loose-envify/1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz}
name: loose-envify
version: 1.4.0
hasBin: true
dependencies:
js-tokens: registry.npmmirror.com/js-tokens/4.0.0
dev: true
registry.npmmirror.com/magic-string/0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz}
name: magic-string
version: 0.25.9
dependencies:
sourcemap-codec: registry.npmmirror.com/sourcemap-codec/1.4.8
dev: true
registry.npmmirror.com/minimatch/3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, registry: http://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: http://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/nanoid/3.3.4:
resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.4.tgz}
name: nanoid
version: 3.3.4
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
dev: true
registry.npmmirror.com/ngraph.events/1.2.2:
resolution: {integrity: sha512-JsUbEOzANskax+WSYiAPETemLWYXmixuPAlmZmhIbIj6FH/WDgEGCGnRwUQBK0GjOnVm8Ui+e5IJ+5VZ4e32eQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ngraph.events/-/ngraph.events-1.2.2.tgz}
name: ngraph.events
version: 1.2.2
dev: true
registry.npmmirror.com/ngraph.forcelayout/3.3.1:
resolution: {integrity: sha512-MKBuEh1wujyQHFTW57y5vd/uuEOK0XfXYxm3lC7kktjJLRdt/KEKEknyOlc6tjXflqBKEuYBBcu7Ax5VY+S6aw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ngraph.forcelayout/-/ngraph.forcelayout-3.3.1.tgz}
name: ngraph.forcelayout
version: 3.3.1
dependencies:
ngraph.events: registry.npmmirror.com/ngraph.events/1.2.2
ngraph.merge: registry.npmmirror.com/ngraph.merge/1.0.0
ngraph.random: registry.npmmirror.com/ngraph.random/1.1.0
dev: true
registry.npmmirror.com/ngraph.graph/20.0.0:
resolution: {integrity: sha512-tJqmik6U5geNDSbmTSwm4R6coTMDbkfFFHD8wdeSJtKU/cxIWFsKtXuwMva/wTk6tQQl1C2//lrzmwfPJXAXHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ngraph.graph/-/ngraph.graph-20.0.0.tgz}
name: ngraph.graph
version: 20.0.0
dependencies:
ngraph.events: registry.npmmirror.com/ngraph.events/1.2.2
dev: true
registry.npmmirror.com/ngraph.merge/1.0.0:
resolution: {integrity: sha512-5J8YjGITUJeapsomtTALYsw7rFveYkM+lBj3QiYZ79EymQcuri65Nw3knQtFxQBU1r5iOaVRXrSwMENUPK62Vg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ngraph.merge/-/ngraph.merge-1.0.0.tgz}
name: ngraph.merge
version: 1.0.0
dev: true
registry.npmmirror.com/ngraph.random/1.1.0:
resolution: {integrity: sha512-h25UdUN/g8U7y29TzQtRm/GvGr70lK37yQPvPKXXuVfs7gCm82WipYFZcksQfeKumtOemAzBIcT7lzzyK/edLw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ngraph.random/-/ngraph.random-1.1.0.tgz}
name: ngraph.random
version: 1.1.0
dev: true
registry.npmmirror.com/node-releases/2.0.6:
resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.6.tgz}
name: node-releases
version: 2.0.6
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/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: http://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/p-limit/2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz}
name: p-limit
version: 2.3.0
engines: {node: '>=6'}
dependencies:
p-try: registry.npmmirror.com/p-try/2.2.0
dev: true
registry.npmmirror.com/p-locate/3.0.0:
resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-locate/-/p-locate-3.0.0.tgz}
name: p-locate
version: 3.0.0
engines: {node: '>=6'}
dependencies:
p-limit: registry.npmmirror.com/p-limit/2.3.0
dev: true
registry.npmmirror.com/p-try/2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz}
name: p-try
version: 2.2.0
engines: {node: '>=6'}
dev: true
registry.npmmirror.com/path-exists/3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-exists/-/path-exists-3.0.0.tgz}
name: path-exists
version: 3.0.0
engines: {node: '>=4'}
dev: true
registry.npmmirror.com/path-is-absolute/1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, registry: http://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-parse/1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, registry: http://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/picocolors/1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, registry: http://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: http://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/pkg-up/3.1.0:
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pkg-up/-/pkg-up-3.1.0.tgz}
name: pkg-up
version: 3.1.0
engines: {node: '>=8'}
dependencies:
find-up: registry.npmmirror.com/find-up/3.0.0
dev: true
registry.npmmirror.com/polished/4.2.2:
resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/polished/-/polished-4.2.2.tgz}
name: polished
version: 4.2.2
engines: {node: '>=10'}
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
dev: true
registry.npmmirror.com/postcss/8.4.19:
resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.19.tgz}
name: postcss
version: 8.4.19
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: registry.npmmirror.com/nanoid/3.3.4
picocolors: registry.npmmirror.com/picocolors/1.0.0
source-map-js: registry.npmmirror.com/source-map-js/1.0.2
dev: true
registry.npmmirror.com/preact-custom-element/4.2.1_preact@10.11.3:
resolution: {integrity: sha512-/fiEEAyC+MXRlCBRmv/owoN5BLpO2nF/MF3YBHLtp4C2lNqlhV+a4he74A5DhfDoRmxDHm0sYVgQzWFEyzTDsw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/preact-custom-element/-/preact-custom-element-4.2.1.tgz}
id: registry.npmmirror.com/preact-custom-element/4.2.1
name: preact-custom-element
version: 4.2.1
peerDependencies:
preact: 10.x
dependencies:
preact: registry.npmmirror.com/preact/10.11.3
dev: true
registry.npmmirror.com/preact/10.11.3:
resolution: {integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/preact/-/preact-10.11.3.tgz}
name: preact
version: 10.11.3
registry.npmmirror.com/prop-types/15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prop-types/-/prop-types-15.8.1.tgz}
name: prop-types
version: 15.8.1
dependencies:
loose-envify: registry.npmmirror.com/loose-envify/1.4.0
object-assign: registry.npmmirror.com/object-assign/4.1.1
react-is: registry.npmmirror.com/react-is/16.13.1
dev: true
registry.npmmirror.com/rc-align/4.0.12:
resolution: {integrity: sha512-3DuwSJp8iC/dgHzwreOQl52soj40LchlfUHtgACOUtwGuoFIOVh6n/sCpfqCU8kO5+iz6qR0YKvjgB8iPdE3aQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-align/-/rc-align-4.0.12.tgz}
name: rc-align
version: 4.0.12
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
dom-align: registry.npmmirror.com/dom-align/1.12.4
lodash: registry.npmmirror.com/lodash/4.17.21
rc-util: registry.npmmirror.com/rc-util/5.25.2
resize-observer-polyfill: registry.npmmirror.com/resize-observer-polyfill/1.5.1
dev: false
registry.npmmirror.com/rc-cascader/3.7.0:
resolution: {integrity: sha512-SFtGpwmYN7RaWEAGTS4Rkc62ZV/qmQGg/tajr/7mfIkleuu8ro9Hlk6J+aA0x1YS4zlaZBtTcSaXM01QMiEV/A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-cascader/-/rc-cascader-3.7.0.tgz}
name: rc-cascader
version: 3.7.0
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
array-tree-filter: registry.npmmirror.com/array-tree-filter/2.1.0
classnames: registry.npmmirror.com/classnames/2.3.2
rc-select: registry.npmmirror.com/rc-select/14.1.16
rc-tree: registry.npmmirror.com/rc-tree/5.7.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-checkbox/2.3.2:
resolution: {integrity: sha512-afVi1FYiGv1U0JlpNH/UaEXdh6WUJjcWokj/nUN2TgG80bfG+MDdbfHKlLcNNba94mbjy2/SXJ1HDgrOkXGAjg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-checkbox/-/rc-checkbox-2.3.2.tgz}
name: rc-checkbox
version: 2.3.2
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
dev: false
registry.npmmirror.com/rc-collapse/3.4.2:
resolution: {integrity: sha512-jpTwLgJzkhAgp2Wpi3xmbTbbYExg6fkptL67Uu5LCRVEj6wqmy0DHTjjeynsjOLsppHGHu41t1ELntZ0lEvS/Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-collapse/-/rc-collapse-3.4.2.tgz}
name: rc-collapse
version: 3.4.2
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-motion: registry.npmmirror.com/rc-motion/2.6.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
shallowequal: registry.npmmirror.com/shallowequal/1.1.0
dev: false
registry.npmmirror.com/rc-dialog/9.0.2:
resolution: {integrity: sha512-s3U+24xWUuB6Bn2Lk/Qt6rufy+uT+QvWkiFhNBcO9APLxcFFczWamaq7x9h8SCuhfc1nHcW4y8NbMsnAjNnWyg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-dialog/-/rc-dialog-9.0.2.tgz}
name: rc-dialog
version: 9.0.2
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
'@rc-component/portal': registry.npmmirror.com/@rc-component/portal/1.0.3
classnames: registry.npmmirror.com/classnames/2.3.2
rc-motion: registry.npmmirror.com/rc-motion/2.6.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-drawer/6.0.1:
resolution: {integrity: sha512-ibWXGf8I+KRPXE03X4s0/xXzQI37YWXUV+oPy+R29GKxkjr98UTMgwvoQDKlZTm5AiaRuVFqhTKm0kNHqJh+TQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-drawer/-/rc-drawer-6.0.1.tgz}
name: rc-drawer
version: 6.0.1
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
'@rc-component/portal': registry.npmmirror.com/@rc-component/portal/1.0.3
classnames: registry.npmmirror.com/classnames/2.3.2
rc-motion: registry.npmmirror.com/rc-motion/2.6.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-dropdown/4.0.1:
resolution: {integrity: sha512-OdpXuOcme1rm45cR0Jzgfl1otzmU4vuBVb+etXM8vcaULGokAKVpKlw8p6xzspG7jGd/XxShvq+N3VNEfk/l5g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-dropdown/-/rc-dropdown-4.0.1.tgz}
name: rc-dropdown
version: 4.0.1
peerDependencies:
react: '>=16.11.0'
react-dom: '>=16.11.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-trigger: registry.npmmirror.com/rc-trigger/5.3.4
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-field-form/1.27.3:
resolution: {integrity: sha512-HGqxHnmGQgkPApEcikV4qTg3BLPC82uB/cwBDftDt1pYaqitJfSl5TFTTUMKVEJVT5RqJ2Zi68ME1HmIMX2HAw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-field-form/-/rc-field-form-1.27.3.tgz}
name: rc-field-form
version: 1.27.3
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
async-validator: registry.npmmirror.com/async-validator/4.2.5
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-image/5.12.1:
resolution: {integrity: sha512-FMldR/ODwQmlFlhjR4c6hsOHmnn4s9CxmW7PR/9XCYE1XHlGJ5OkSWOtJruoaLjVwt2tQYDRnLANf/mKZ9ReUg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-image/-/rc-image-5.12.1.tgz}
name: rc-image
version: 5.12.1
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
'@rc-component/portal': registry.npmmirror.com/@rc-component/portal/1.0.3
classnames: registry.npmmirror.com/classnames/2.3.2
rc-dialog: registry.npmmirror.com/rc-dialog/9.0.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-input-number/7.4.0:
resolution: {integrity: sha512-r/Oub/sPYbzqLNUOHnnc9sbCu78a81KX+RCbRwmpvB4W6nptUySbdWS5KHV4Hak5CAE1LAd+wWm5JjvZizG1FA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-input-number/-/rc-input-number-7.4.0.tgz}
name: rc-input-number
version: 7.4.0
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
'@rc-component/mini-decimal': registry.npmmirror.com/@rc-component/mini-decimal/1.0.1
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-input/0.1.4:
resolution: {integrity: sha512-FqDdNz+fV2dKNgfXzcSLKvC+jEs1709t7nD+WdfjrdSaOcefpgc7BUJYadc3usaING+b7ediMTfKxuJBsEFbXA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-input/-/rc-input-0.1.4.tgz}
name: rc-input
version: 0.1.4
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-mentions/1.13.1:
resolution: {integrity: sha512-FCkaWw6JQygtOz0+Vxz/M/NWqrWHB9LwqlY2RtcuFqWJNFK9njijOOzTSsBGANliGufVUzx/xuPHmZPBV0+Hgw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-mentions/-/rc-mentions-1.13.1.tgz}
name: rc-mentions
version: 1.13.1
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-menu: registry.npmmirror.com/rc-menu/9.8.1
rc-textarea: registry.npmmirror.com/rc-textarea/0.4.7
rc-trigger: registry.npmmirror.com/rc-trigger/5.3.4
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-menu/9.8.1:
resolution: {integrity: sha512-179weouypfjWJSRvvoo/vPy+StojsMzK2XC5jRNhL1ryt/N/8wAFESte8K6jZJkNp9DHDLFTe+dCGmikKpiFuA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-menu/-/rc-menu-9.8.1.tgz}
name: rc-menu
version: 9.8.1
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-motion: registry.npmmirror.com/rc-motion/2.6.2
rc-overflow: registry.npmmirror.com/rc-overflow/1.2.8
rc-trigger: registry.npmmirror.com/rc-trigger/5.3.4
rc-util: registry.npmmirror.com/rc-util/5.25.2
shallowequal: registry.npmmirror.com/shallowequal/1.1.0
dev: false
registry.npmmirror.com/rc-motion/2.6.2:
resolution: {integrity: sha512-4w1FaX3dtV749P8GwfS4fYnFG4Rb9pxvCYPc/b2fw1cmlHJWNNgOFIz7ysiD+eOrzJSvnLJWlNQQncpNMXwwpg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-motion/-/rc-motion-2.6.2.tgz}
name: rc-motion
version: 2.6.2
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-notification/5.0.0-alpha.9:
resolution: {integrity: sha512-QPvq8VHe2M0SE5DHJf7ADWlvfWKnTsj5FVxcu39gdjX98kKmi+BHY1eTPAQkkdGqd6ZXv6xXHl8qKHyWhQcFPA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-notification/-/rc-notification-5.0.0-alpha.9.tgz}
name: rc-notification
version: 5.0.0-alpha.9
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-motion: registry.npmmirror.com/rc-motion/2.6.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-overflow/1.2.8:
resolution: {integrity: sha512-QJ0UItckWPQ37ZL1dMEBAdY1dhfTXFL9k6oTTcyydVwoUNMnMqCGqnRNA98axSr/OeDKqR6DVFyi8eA5RQI/uQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-overflow/-/rc-overflow-1.2.8.tgz}
name: rc-overflow
version: 1.2.8
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-resize-observer: registry.npmmirror.com/rc-resize-observer/1.2.0
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-pagination/3.2.0:
resolution: {integrity: sha512-5tIXjB670WwwcAJzAqp2J+cOBS9W3cH/WU1EiYwXljuZ4vtZXKlY2Idq8FZrnYBz8KhN3vwPo9CoV/SJS6SL1w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-pagination/-/rc-pagination-3.2.0.tgz}
name: rc-pagination
version: 3.2.0
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
dev: false
registry.npmmirror.com/rc-picker/3.1.2_dayjs@1.11.6:
resolution: {integrity: sha512-PHf4E91JANMBVjovqhRcZw0fDZYWlDW9APhMD8VxBSs2QeKbnf+vE5BdA3YmHq227woSptbkm9rfhR4dgSn4+g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-picker/-/rc-picker-3.1.2.tgz}
id: registry.npmmirror.com/rc-picker/3.1.2
name: rc-picker
version: 3.1.2
engines: {node: '>=8.x'}
peerDependencies:
date-fns: '>= 2.x'
dayjs: '>= 1.x'
moment: '>= 2.x'
react: '>=16.9.0'
react-dom: '>=16.9.0'
peerDependenciesMeta:
date-fns:
optional: true
dayjs:
optional: true
moment:
optional: true
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
dayjs: registry.npmmirror.com/dayjs/1.11.6
rc-trigger: registry.npmmirror.com/rc-trigger/5.3.4
rc-util: registry.npmmirror.com/rc-util/5.25.2
shallowequal: registry.npmmirror.com/shallowequal/1.1.0
dev: false
registry.npmmirror.com/rc-progress/3.4.1:
resolution: {integrity: sha512-eAFDHXlk8aWpoXl0llrenPMt9qKHQXphxcVsnKs0FHC6eCSk1ebJtyaVjJUzKe0233ogiLDeEFK1Uihz3s67hw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-progress/-/rc-progress-3.4.1.tgz}
name: rc-progress
version: 3.4.1
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-rate/2.9.2:
resolution: {integrity: sha512-SaiZFyN8pe0Fgphv8t3+kidlej+cq/EALkAJAc3A0w0XcPaH2L1aggM8bhe1u6GAGuQNAoFvTLjw4qLPGRKV5g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-rate/-/rc-rate-2.9.2.tgz}
name: rc-rate
version: 2.9.2
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-resize-observer/1.2.0:
resolution: {integrity: sha512-6W+UzT3PyDM0wVCEHfoW3qTHPTvbdSgiA43buiy8PzmeMnfgnDeb9NjdimMXMl3/TcrvvWl5RRVdp+NqcR47pQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-resize-observer/-/rc-resize-observer-1.2.0.tgz}
name: rc-resize-observer
version: 1.2.0
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
resize-observer-polyfill: registry.npmmirror.com/resize-observer-polyfill/1.5.1
dev: false
registry.npmmirror.com/rc-segmented/2.1.0:
resolution: {integrity: sha512-hUlonro+pYoZcwrH6Vm56B2ftLfQh046hrwif/VwLIw1j3zGt52p5mREBwmeVzXnSwgnagpOpfafspzs1asjGw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-segmented/-/rc-segmented-2.1.0.tgz}
name: rc-segmented
version: 2.1.0
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-motion: registry.npmmirror.com/rc-motion/2.6.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-select/14.1.16:
resolution: {integrity: sha512-71XLHleuZmufpdV2vis5oituRkhg2WNvLpVMJBGWRar6WGAVOHXaY9DR5HvwWry3EGTn19BqnL6Xbybje6f8YA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-select/-/rc-select-14.1.16.tgz}
name: rc-select
version: 14.1.16
engines: {node: '>=8.x'}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-motion: registry.npmmirror.com/rc-motion/2.6.2
rc-overflow: registry.npmmirror.com/rc-overflow/1.2.8
rc-trigger: registry.npmmirror.com/rc-trigger/5.3.4
rc-util: registry.npmmirror.com/rc-util/5.25.2
rc-virtual-list: registry.npmmirror.com/rc-virtual-list/3.4.11
dev: false
registry.npmmirror.com/rc-slider/10.0.1:
resolution: {integrity: sha512-igTKF3zBet7oS/3yNiIlmU8KnZ45npmrmHlUUio8PNbIhzMcsh+oE/r2UD42Y6YD2D/s+kzCQkzQrPD6RY435Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-slider/-/rc-slider-10.0.1.tgz}
name: rc-slider
version: 10.0.1
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
shallowequal: registry.npmmirror.com/shallowequal/1.1.0
dev: false
registry.npmmirror.com/rc-steps/6.0.0-alpha.2:
resolution: {integrity: sha512-d/GPx7ATlPbtFeOVt5FB19W11OBCmRd7lLknt4aSoCI6ukwJqpEhWu2INN4pDOQqN04y3PDsWl1q9hnw+ZC5AA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-steps/-/rc-steps-6.0.0-alpha.2.tgz}
name: rc-steps
version: 6.0.0-alpha.2
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-switch/4.0.0:
resolution: {integrity: sha512-IfrYC99vN0gKaTyjQdqYuADU0eH00SAFHg3jOp8HrmUpJruhV1SohJzrCbPqPraZeX/6X/QKkdLfkdnUub05WA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-switch/-/rc-switch-4.0.0.tgz}
name: rc-switch
version: 4.0.0
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-table/7.26.0:
resolution: {integrity: sha512-0cD8e6S+DTGAt5nBZQIPFYEaIukn17sfa5uFL98faHlH/whZzD8ii3dbFL4wmUDEL4BLybhYop+QUfZJ4CPvNQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-table/-/rc-table-7.26.0.tgz}
name: rc-table
version: 7.26.0
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-resize-observer: registry.npmmirror.com/rc-resize-observer/1.2.0
rc-util: registry.npmmirror.com/rc-util/5.25.2
shallowequal: registry.npmmirror.com/shallowequal/1.1.0
dev: false
registry.npmmirror.com/rc-tabs/12.4.1:
resolution: {integrity: sha512-yViBZypldDnPffk3IPTarplF1RAv8VQDDnOt9sHDU7pjCnqE72csCU+7kjbLPtPpYniIMQJYyWxh/lsBUcagSA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-tabs/-/rc-tabs-12.4.1.tgz}
name: rc-tabs
version: 12.4.1
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-dropdown: registry.npmmirror.com/rc-dropdown/4.0.1
rc-menu: registry.npmmirror.com/rc-menu/9.8.1
rc-motion: registry.npmmirror.com/rc-motion/2.6.2
rc-resize-observer: registry.npmmirror.com/rc-resize-observer/1.2.0
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-textarea/0.4.7:
resolution: {integrity: sha512-IQPd1CDI3mnMlkFyzt2O4gQ2lxUsnBAeJEoZGJnkkXgORNqyM9qovdrCj9NzcRfpHgLdzaEbU3AmobNFGUznwQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-textarea/-/rc-textarea-0.4.7.tgz}
name: rc-textarea
version: 0.4.7
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-resize-observer: registry.npmmirror.com/rc-resize-observer/1.2.0
rc-util: registry.npmmirror.com/rc-util/5.25.2
shallowequal: registry.npmmirror.com/shallowequal/1.1.0
dev: false
registry.npmmirror.com/rc-tooltip/5.2.2:
resolution: {integrity: sha512-jtQzU/18S6EI3lhSGoDYhPqNpWajMtS5VV/ld1LwyfrDByQpYmw/LW6U7oFXXLukjfDHQ7Ju705A82PRNFWYhg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-tooltip/-/rc-tooltip-5.2.2.tgz}
name: rc-tooltip
version: 5.2.2
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-trigger: registry.npmmirror.com/rc-trigger/5.3.4
dev: false
registry.npmmirror.com/rc-tree-select/5.5.5:
resolution: {integrity: sha512-k2av7jF6tW9bIO4mQhaVdV4kJ1c54oxV3/hHVU+oD251Gb5JN+m1RbJFTMf1o0rAFqkvto33rxMdpafaGKQRJw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-tree-select/-/rc-tree-select-5.5.5.tgz}
name: rc-tree-select
version: 5.5.5
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-select: registry.npmmirror.com/rc-select/14.1.16
rc-tree: registry.npmmirror.com/rc-tree/5.7.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-tree/5.7.2:
resolution: {integrity: sha512-nmnL6qLnfwVckO5zoqKL2I9UhwDqzyCtjITQCkwhimyz1zfuFkG5ZPIXpzD/Guzso94qQA/QrMsvzic5W6QDjg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-tree/-/rc-tree-5.7.2.tgz}
name: rc-tree
version: 5.7.2
engines: {node: '>=10.x'}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-motion: registry.npmmirror.com/rc-motion/2.6.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
rc-virtual-list: registry.npmmirror.com/rc-virtual-list/3.4.11
dev: false
registry.npmmirror.com/rc-trigger/5.3.4:
resolution: {integrity: sha512-mQv+vas0TwKcjAO2izNPkqR4j86OemLRmvL2nOzdP9OWNWA1ivoTt5hzFqYNW9zACwmTezRiN8bttrC7cZzYSw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-trigger/-/rc-trigger-5.3.4.tgz}
name: rc-trigger
version: 5.3.4
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-align: registry.npmmirror.com/rc-align/4.0.12
rc-motion: registry.npmmirror.com/rc-motion/2.6.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-upload/4.3.4:
resolution: {integrity: sha512-uVbtHFGNjHG/RyAfm9fluXB6pvArAGyAx8z7XzXXyorEgVIWj6mOlriuDm0XowDHYz4ycNK0nE0oP3cbFnzxiQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-upload/-/rc-upload-4.3.4.tgz}
name: rc-upload
version: 4.3.4
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/rc-util/5.25.2:
resolution: {integrity: sha512-OyCO675K/rh4zG3e+LYaHw54WQFEYGV9ibkGawQxqCvf0G0PzUrLQjgZ6SfoHORdbEKN7eQMFn3hHQyA/P8Y5Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-util/-/rc-util-5.25.2.tgz}
name: rc-util
version: 5.25.2
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
react-is: registry.npmmirror.com/react-is/16.13.1
shallowequal: registry.npmmirror.com/shallowequal/1.1.0
dev: false
registry.npmmirror.com/rc-virtual-list/3.4.11:
resolution: {integrity: sha512-BvUUH60kkeTBPigN5F89HtGaA5jSP4y2aM6cJ4dk9Y42I9yY+h6i08wF6UKeDcxdfOU8j3I5HxkSS/xA77J3wA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rc-virtual-list/-/rc-virtual-list-3.4.11.tgz}
name: rc-virtual-list
version: 3.4.11
engines: {node: '>=8.x'}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
'@babel/runtime': registry.npmmirror.com/@babel/runtime/7.20.6
classnames: registry.npmmirror.com/classnames/2.3.2
rc-resize-observer: registry.npmmirror.com/rc-resize-observer/1.2.0
rc-util: registry.npmmirror.com/rc-util/5.25.2
dev: false
registry.npmmirror.com/react-force-graph-3d/1.21.16:
resolution: {integrity: sha512-+KFIvIKPvZoeEnRaJlaZO5U4oMPRhyJhfvc4vSNqFH3VtQUCREWSOE97kwPdMjwKZI1jmQZ9CHV5Z/EEs2dBSA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/react-force-graph-3d/-/react-force-graph-3d-1.21.16.tgz}
name: react-force-graph-3d
version: 1.21.16
peerDependencies:
react: '*'
dependencies:
3d-force-graph: registry.npmmirror.com/3d-force-graph/1.70.17
prop-types: registry.npmmirror.com/prop-types/15.8.1
react-kapsule: registry.npmmirror.com/react-kapsule/2.2.6
dev: true
registry.npmmirror.com/react-is/16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/react-is/-/react-is-16.13.1.tgz}
name: react-is
version: 16.13.1
registry.npmmirror.com/react-kapsule/2.2.6:
resolution: {integrity: sha512-OUfvKeXSwpwVcGhyUWK6XaStEAA/KWFvlRAo/maS+GWhp7X0mSMbuZ/5jBACXhTFNGqWHf5yyt+LURiWA77HfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/react-kapsule/-/react-kapsule-2.2.6.tgz}
name: react-kapsule
version: 2.2.6
peerDependencies:
react: '>=16.13.1'
dependencies:
fromentries: registry.npmmirror.com/fromentries/1.3.2
jerrypick: registry.npmmirror.com/jerrypick/1.0.5
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/regenerator-runtime/0.11.1:
resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz}
name: regenerator-runtime
version: 0.11.1
dev: true
registry.npmmirror.com/regenerator-runtime/0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz}
name: regenerator-runtime
version: 0.13.11
registry.npmmirror.com/reselect/4.1.7:
resolution: {integrity: sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/reselect/-/reselect-4.1.7.tgz}
name: reselect
version: 4.1.7
dev: true
registry.npmmirror.com/resize-observer-polyfill/1.5.1:
resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz}
name: resize-observer-polyfill
version: 1.5.1
dev: false
registry.npmmirror.com/resolve/1.22.1:
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/resolve/-/resolve-1.22.1.tgz}
name: resolve
version: 1.22.1
hasBin: true
dependencies:
is-core-module: registry.npmmirror.com/is-core-module/2.11.0
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/rollup/2.79.1:
resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-2.79.1.tgz}
name: rollup
version: 2.79.1
engines: {node: '>=10.0.0'}
hasBin: true
optionalDependencies:
fsevents: registry.npmmirror.com/fsevents/2.3.2
dev: true
registry.npmmirror.com/sass/1.56.2:
resolution: {integrity: sha512-ciEJhnyCRwzlBCB+h5cCPM6ie/6f8HrhZMQOf5vlU60Y1bI1rx5Zb0vlDZvaycHsg/MqFfF1Eq2eokAa32iw8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sass/-/sass-1.56.2.tgz}
name: sass
version: 1.56.2
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
chokidar: registry.npmmirror.com/chokidar/3.5.3
immutable: registry.npmmirror.com/immutable/4.1.0
source-map-js: registry.npmmirror.com/source-map-js/1.0.2
dev: true
registry.npmmirror.com/scroll-into-view-if-needed/2.2.31:
resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.31.tgz}
name: scroll-into-view-if-needed
version: 2.2.31
dependencies:
compute-scroll-into-view: registry.npmmirror.com/compute-scroll-into-view/1.0.20
dev: false
registry.npmmirror.com/semver/6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz}
name: semver
version: 6.3.0
hasBin: true
dev: true
registry.npmmirror.com/shallowequal/1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shallowequal/-/shallowequal-1.1.0.tgz}
name: shallowequal
version: 1.1.0
dev: false
registry.npmmirror.com/source-map-js/1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz}
name: source-map-js
version: 1.0.2
engines: {node: '>=0.10.0'}
dev: true
registry.npmmirror.com/source-map/0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz}
name: source-map
version: 0.6.1
engines: {node: '>=0.10.0'}
dev: true
registry.npmmirror.com/sourcemap-codec/1.4.8:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz}
name: sourcemap-codec
version: 1.4.8
deprecated: Please use @jridgewell/sourcemap-codec instead
dev: true
registry.npmmirror.com/string-convert/0.2.1:
resolution: {integrity: sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-convert/-/string-convert-0.2.1.tgz}
name: string-convert
version: 0.2.1
dev: false
registry.npmmirror.com/stylis/4.1.3:
resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/stylis/-/stylis-4.1.3.tgz}
name: stylis
version: 4.1.3
dev: false
registry.npmmirror.com/supports-color/5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, registry: http://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: http://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/three-forcegraph/1.39.8_three@0.147.0:
resolution: {integrity: sha512-lmOirKeM+qo12mju1MVFMNk5nrbS2+V0CUIyrJeTXz9hym4sjoIbUBM5FI7IQiu140nfSgxjLnetk1fi78qWuw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/three-forcegraph/-/three-forcegraph-1.39.8.tgz}
id: registry.npmmirror.com/three-forcegraph/1.39.8
name: three-forcegraph
version: 1.39.8
peerDependencies:
three: '>=0.118.3'
dependencies:
accessor-fn: registry.npmmirror.com/accessor-fn/1.3.2
d3-array: registry.npmmirror.com/d3-array/3.2.1
d3-force-3d: registry.npmmirror.com/d3-force-3d/3.0.3
d3-scale: registry.npmmirror.com/d3-scale/4.0.2
d3-scale-chromatic: registry.npmmirror.com/d3-scale-chromatic/3.0.0
data-joint: registry.npmmirror.com/data-joint/1.2.6
kapsule: registry.npmmirror.com/kapsule/1.13.8
ngraph.forcelayout: registry.npmmirror.com/ngraph.forcelayout/3.3.1
ngraph.graph: registry.npmmirror.com/ngraph.graph/20.0.0
three: registry.npmmirror.com/three/0.147.0
tinycolor2: registry.npmmirror.com/tinycolor2/1.4.2
dev: true
registry.npmmirror.com/three-render-objects/1.27.6_three@0.147.0:
resolution: {integrity: sha512-mvNHk3oujVuajW0U+/UxQ7RBNmCLXgOIqdtThPXJCPimInwdPCw6lWVETgp6WAA1TebZLdpvKPfXpG5hgOJRvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/three-render-objects/-/three-render-objects-1.27.6.tgz}
id: registry.npmmirror.com/three-render-objects/1.27.6
name: three-render-objects
version: 1.27.6
peerDependencies:
three: '*'
dependencies:
'@tweenjs/tween.js': registry.npmmirror.com/@tweenjs/tween.js/18.6.4
accessor-fn: registry.npmmirror.com/accessor-fn/1.3.2
kapsule: registry.npmmirror.com/kapsule/1.13.8
polished: registry.npmmirror.com/polished/4.2.2
three: registry.npmmirror.com/three/0.147.0
dev: true
registry.npmmirror.com/three-spritetext/1.6.5_three@0.147.0:
resolution: {integrity: sha512-ttA1ce3tJz6OFojLGY3VjtqF9johetq50TztYcPFWqdEUrwPmej5XXcHahVyQGd88FHRDzJmW2rW3zSifUsdYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/three-spritetext/-/three-spritetext-1.6.5.tgz}
id: registry.npmmirror.com/three-spritetext/1.6.5
name: three-spritetext
version: 1.6.5
peerDependencies:
three: '>=0.86.0'
dependencies:
three: registry.npmmirror.com/three/0.147.0
dev: true
registry.npmmirror.com/three/0.147.0:
resolution: {integrity: sha512-LPTOslYQXFkmvceQjFTNnVVli2LaVF6C99Pv34fJypp8NbQLbTlu3KinZ0zURghS5zEehK+VQyvWuPZ/Sm8fzw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/three/-/three-0.147.0.tgz}
name: three
version: 0.147.0
dev: true
registry.npmmirror.com/tinycolor2/1.4.2:
resolution: {integrity: sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.4.2.tgz}
name: tinycolor2
version: 1.4.2
dev: true
registry.npmmirror.com/to-fast-properties/1.0.3:
resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz}
name: to-fast-properties
version: 1.0.3
engines: {node: '>=0.10.0'}
dev: true
registry.npmmirror.com/to-fast-properties/2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, registry: http://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/toggle-selection/1.0.6:
resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/toggle-selection/-/toggle-selection-1.0.6.tgz}
name: toggle-selection
version: 1.0.6
dev: false
registry.npmmirror.com/typescript/4.9.3:
resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/-/typescript-4.9.3.tgz}
name: typescript
version: 4.9.3
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
registry.npmmirror.com/update-browserslist-db/1.0.10_browserslist@4.21.4:
resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz}
id: registry.npmmirror.com/update-browserslist-db/1.0.10
name: update-browserslist-db
version: 1.0.10
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
browserslist: registry.npmmirror.com/browserslist/4.21.4
escalade: registry.npmmirror.com/escalade/3.1.1
picocolors: registry.npmmirror.com/picocolors/1.0.0
dev: true
registry.npmmirror.com/vite/3.2.4:
resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/-/vite-3.2.4.tgz}
name: vite
version: 3.2.4
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
'@types/node': '>= 14'
less: '*'
sass: '*'
stylus: '*'
sugarss: '*'
terser: ^5.4.0
peerDependenciesMeta:
'@types/node':
optional: true
less:
optional: true
sass:
optional: true
stylus:
optional: true
sugarss:
optional: true
terser:
optional: true
dependencies:
esbuild: registry.npmmirror.com/esbuild/0.15.17
postcss: registry.npmmirror.com/postcss/8.4.19
resolve: registry.npmmirror.com/resolve/1.22.1
rollup: registry.npmmirror.com/rollup/2.79.1
optionalDependencies:
fsevents: registry.npmmirror.com/fsevents/2.3.2
dev: true
registry.npmmirror.com/vite/3.2.4_sass@1.56.2:
resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/-/vite-3.2.4.tgz}
id: registry.npmmirror.com/vite/3.2.4
name: vite
version: 3.2.4
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
'@types/node': '>= 14'
less: '*'
sass: '*'
stylus: '*'
sugarss: '*'
terser: ^5.4.0
peerDependenciesMeta:
'@types/node':
optional: true
less:
optional: true
sass:
optional: true
stylus:
optional: true
sugarss:
optional: true
terser:
optional: true
dependencies:
esbuild: registry.npmmirror.com/esbuild/0.15.17
postcss: registry.npmmirror.com/postcss/8.4.19
resolve: registry.npmmirror.com/resolve/1.22.1
rollup: registry.npmmirror.com/rollup/2.79.1
sass: registry.npmmirror.com/sass/1.56.2
optionalDependencies:
fsevents: registry.npmmirror.com/fsevents/2.3.2
dev: true
registry.npmmirror.com/vue/3.2.36:
resolution: {integrity: sha512-5yTXmrE6gW8IQgttzHW5bfBiFA6mx35ZXHjGLDmKYzW6MMmYvCwuKybANRepwkMYeXw2v1buGg3/lPICY5YlZw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue/-/vue-3.2.36.tgz}
name: vue
version: 3.2.36
dependencies:
'@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.36
'@vue/compiler-sfc': registry.npmmirror.com/@vue/compiler-sfc/3.2.36
'@vue/runtime-dom': registry.npmmirror.com/@vue/runtime-dom/3.2.36
'@vue/server-renderer': registry.npmmirror.com/@vue/server-renderer/3.2.36_vue@3.2.36
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.36
dev: true
registry.npmmirror.com/wrappy/1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz}
name: wrappy
version: 1.0.2
dev: true
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化