加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pnpm-lock.yaml 87.23 KB
一键复制 编辑 原始数据 按行查看 历史
GZ 提交于 2021-08-21 23:24 . auto deploy
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
lockfileVersion: 5.3
specifiers:
'@intlify/vite-plugin-vue-i18n': ^2.3.1
'@types/file-saver': ^2.0.2
'@types/node': ^15.14.0
'@types/nprogress': ^0.2.0
'@vicons/antd': ^0.10.0
'@vicons/ionicons5': ^0.10.0
'@vitejs/plugin-vue': ^1.2.4
'@vue/compiler-sfc': ^3.1.3
'@vueuse/core': ^5.0.3
element-plus: ^1.0.2-beta.54
file-saver: ^2.0.5
naive-ui: ^2.15.2
promise-file-reader: ^1.0.3
sass: ^1.35.1
vfonts: ^0.1.0
vite: ^2.3.8
vite-plugin-components: ^0.12.0
vite-plugin-pages: ^0.14.8
vite-plugin-vue-layouts: ^0.3.1
vite-plugin-windicss: ^1.2.4
vue: ^3.1.4
vue-i18n: ^9.1.6
vue-router: '4'
vuedraggable: ^4.0.3
vuex: 4.0.2
windicss: ^3.1.4
dependencies:
'@vicons/ionicons5': registry.nlark.com/@vicons/ionicons5/0.10.0
'@vueuse/core': registry.nlark.com/@vueuse/core/5.3.0_vue@3.2.4
element-plus: registry.nlark.com/element-plus/1.0.2-beta.71_vue@3.2.4
file-saver: 2.0.5
naive-ui: registry.nlark.com/naive-ui/2.16.5_vue@3.2.4
promise-file-reader: registry.nlark.com/promise-file-reader/1.0.3
vfonts: registry.nlark.com/vfonts/0.1.0
vue: registry.nlark.com/vue/3.2.4
vue-i18n: registry.nlark.com/vue-i18n/9.1.7_vue@3.2.4
vue-router: registry.nlark.com/vue-router/4.0.11_vue@3.2.4
vuedraggable: registry.nlark.com/vuedraggable/4.0.3_vue@3.2.4
vuex: registry.nlark.com/vuex/4.0.2_vue@3.2.4
devDependencies:
'@intlify/vite-plugin-vue-i18n': registry.nlark.com/@intlify/vite-plugin-vue-i18n/2.4.0_vite@2.5.0+vue-i18n@9.1.7
'@types/file-saver': registry.nlark.com/@types/file-saver/2.0.3
'@types/node': registry.nlark.com/@types/node/15.14.9
'@types/nprogress': registry.nlark.com/@types/nprogress/0.2.0
'@vicons/antd': registry.nlark.com/@vicons/antd/0.10.0
'@vitejs/plugin-vue': registry.nlark.com/@vitejs/plugin-vue/1.4.0_@vue+compiler-sfc@3.2.4
'@vue/compiler-sfc': registry.nlark.com/@vue/compiler-sfc/3.2.4
sass: registry.nlark.com/sass/1.38.0
vite: registry.nlark.com/vite/2.5.0
vite-plugin-components: registry.nlark.com/vite-plugin-components/0.12.2_vite@2.5.0
vite-plugin-pages: registry.nlark.com/vite-plugin-pages/0.14.9_vite@2.5.0
vite-plugin-vue-layouts: registry.nlark.com/vite-plugin-vue-layouts/0.3.1_vite@2.5.0
vite-plugin-windicss: registry.nlark.com/vite-plugin-windicss/1.2.7_vite@2.5.0
windicss: registry.nlark.com/windicss/3.1.7
packages:
/ansi-regex/5.0.0:
resolution: {integrity: sha1-OIU59VF5vzkznIGvMKZU1p+Hy3U=, tarball: ansi-regex/download/ansi-regex-5.0.0.tgz?cache=0&sync_timestamp=1618554239243&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-regex%2Fdownload%2Fansi-regex-5.0.0.tgz}
engines: {node: '>=8'}
dev: false
/anymatch/3.1.2:
resolution: {integrity: sha1-wFV8CWrzLxBhmPT04qODU343hxY=, tarball: anymatch/download/anymatch-3.1.2.tgz}
engines: {node: '>= 8'}
dependencies:
normalize-path: 3.0.0
picomatch: registry.nlark.com/picomatch/2.3.0
dev: true
/balanced-match/1.0.2:
resolution: {integrity: sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=, tarball: balanced-match/download/balanced-match-1.0.2.tgz}
dev: true
/binary-extensions/2.2.0:
resolution: {integrity: sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=, tarball: binary-extensions/download/binary-extensions-2.2.0.tgz}
engines: {node: '>=8'}
dev: true
/bluebird/3.7.2:
resolution: {integrity: sha1-nyKcFb4nJFT/qXOs4NvueaGww28=, tarball: bluebird/download/bluebird-3.7.2.tgz}
dev: true
/brace-expansion/1.1.11:
resolution: {integrity: sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=, tarball: brace-expansion/download/brace-expansion-1.1.11.tgz}
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
dev: true
/braces/3.0.2:
resolution: {integrity: sha1-NFThpGLujVmeI23zNs2epPiv4Qc=, tarball: braces/download/braces-3.0.2.tgz}
engines: {node: '>=8'}
dependencies:
fill-range: registry.nlark.com/fill-range/7.0.1
dev: true
/call-bind/1.0.2:
resolution: {integrity: sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=, tarball: call-bind/download/call-bind-1.0.2.tgz?cache=0&sync_timestamp=1610423417993&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcall-bind%2Fdownload%2Fcall-bind-1.0.2.tgz}
dependencies:
function-bind: 1.1.1
get-intrinsic: 1.1.1
dev: true
/color-convert/2.0.1:
resolution: {integrity: sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=, tarball: color-convert/download/color-convert-2.0.1.tgz}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
/color-name/1.1.4:
resolution: {integrity: sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=, tarball: color-name/download/color-name-1.1.4.tgz}
/concat-map/0.0.1:
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=, tarball: concat-map/download/concat-map-0.0.1.tgz}
dev: true
/cssesc/3.0.0:
resolution: {integrity: sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=, tarball: cssesc/download/cssesc-3.0.0.tgz}
engines: {node: '>=4'}
hasBin: true
dev: true
/deep-equal/2.0.5:
resolution: {integrity: sha1-Vc0v4ybYP5y/cmHvDgYLP3JMXLk=, tarball: deep-equal/download/deep-equal-2.0.5.tgz}
dependencies:
call-bind: 1.0.2
es-get-iterator: registry.nlark.com/es-get-iterator/1.1.2
get-intrinsic: 1.1.1
is-arguments: registry.nlark.com/is-arguments/1.1.1
is-date-object: registry.nlark.com/is-date-object/1.0.5
is-regex: registry.nlark.com/is-regex/1.1.4
isarray: 2.0.5
object-is: registry.nlark.com/object-is/1.1.5
object-keys: 1.1.1
object.assign: 4.1.2
regexp.prototype.flags: 1.3.1
side-channel: 1.0.4
which-boxed-primitive: registry.nlark.com/which-boxed-primitive/1.0.2
which-collection: registry.nlark.com/which-collection/1.0.1
which-typed-array: registry.nlark.com/which-typed-array/1.1.6
dev: true
/define-properties/1.1.3:
resolution: {integrity: sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=, tarball: define-properties/download/define-properties-1.1.3.tgz}
engines: {node: '>= 0.4'}
dependencies:
object-keys: 1.1.1
dev: true
/emojis-list/3.0.0:
resolution: {integrity: sha1-VXBmIEatKeLpFucariYKvf9Pang=, tarball: emojis-list/download/emojis-list-3.0.0.tgz}
engines: {node: '>= 4'}
dev: true
/es-to-primitive/1.2.1:
resolution: {integrity: sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=, tarball: es-to-primitive/download/es-to-primitive-1.2.1.tgz}
engines: {node: '>= 0.4'}
dependencies:
is-callable: registry.nlark.com/is-callable/1.2.4
is-date-object: registry.nlark.com/is-date-object/1.0.5
is-symbol: registry.nlark.com/is-symbol/1.0.4
dev: true
/estree-walker/2.0.2:
resolution: {integrity: sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw=, tarball: estree-walker/download/estree-walker-2.0.2.tgz}
/file-saver/2.0.5:
resolution: {integrity: sha1-1hz+LOBZ9BTYmendbUEH7iVnDDg=, tarball: file-saver/download/file-saver-2.0.5.tgz}
dev: false
/fsevents/2.3.2:
resolution: {integrity: sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=, tarball: fsevents/download/fsevents-2.3.2.tgz}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
dev: true
optional: true
/function-bind/1.1.1:
resolution: {integrity: sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=, tarball: function-bind/download/function-bind-1.1.1.tgz}
dev: true
/generic-names/2.0.1:
resolution: {integrity: sha1-+KN46tLMqno08DF7BVVIMq5BuHI=, tarball: generic-names/download/generic-names-2.0.1.tgz}
dependencies:
loader-utils: 1.4.0
dev: true
/get-intrinsic/1.1.1:
resolution: {integrity: sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y=, tarball: get-intrinsic/download/get-intrinsic-1.1.1.tgz}
dependencies:
function-bind: 1.1.1
has: 1.0.3
has-symbols: 1.0.2
dev: true
/has-bigints/1.0.1:
resolution: {integrity: sha1-ZP5qywIGc+O3jbA1pa9pqp0HsRM=, tarball: has-bigints/download/has-bigints-1.0.1.tgz}
dev: true
/has-symbols/1.0.2:
resolution: {integrity: sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM=, tarball: has-symbols/download/has-symbols-1.0.2.tgz}
engines: {node: '>= 0.4'}
dev: true
/has/1.0.3:
resolution: {integrity: sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=, tarball: has/download/has-1.0.3.tgz}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
dev: true
/hash-sum/2.0.0:
resolution: {integrity: sha1-gdAbtd6OpKIUrV1urRtSNGCwtFo=, tarball: hash-sum/download/hash-sum-2.0.0.tgz}
dev: true
/icss-utils/5.1.0_postcss@8.3.6:
resolution: {integrity: sha1-xr5oWKvQE9do6YNmrkfiXViHsa4=, tarball: icss-utils/download/icss-utils-5.1.0.tgz}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
postcss: registry.nlark.com/postcss/8.3.6
dev: true
/is-binary-path/2.1.0:
resolution: {integrity: sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=, tarball: is-binary-path/download/is-binary-path-2.1.0.tgz}
engines: {node: '>=8'}
dependencies:
binary-extensions: 2.2.0
dev: true
/is-extglob/2.1.1:
resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=, tarball: is-extglob/download/is-extglob-2.1.1.tgz}
engines: {node: '>=0.10.0'}
dev: true
/is-glob/4.0.1:
resolution: {integrity: sha1-dWfb6fL14kZ7x3q4PEopSCQHpdw=, tarball: is-glob/download/is-glob-4.0.1.tgz}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
dev: true
/is-negative-zero/2.0.1:
resolution: {integrity: sha1-PedGwY3aIxkkGlNnWQjY92bxHCQ=, tarball: is-negative-zero/download/is-negative-zero-2.0.1.tgz?cache=0&sync_timestamp=1607126421794&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-negative-zero%2Fdownload%2Fis-negative-zero-2.0.1.tgz}
engines: {node: '>= 0.4'}
dev: true
/is-number/7.0.0:
resolution: {integrity: sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=, tarball: is-number/download/is-number-7.0.0.tgz}
engines: {node: '>=0.12.0'}
dev: true
/isarray/2.0.5:
resolution: {integrity: sha1-ivHkwSISRMxiRZ+vOJQNTmRKVyM=, tarball: isarray/download/isarray-2.0.5.tgz}
dev: true
/json5/1.0.1:
resolution: {integrity: sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=, tarball: json5/download/json5-1.0.1.tgz}
hasBin: true
dependencies:
minimist: 1.2.5
dev: true
/json5/2.2.0:
resolution: {integrity: sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM=, tarball: json5/download/json5-2.2.0.tgz}
engines: {node: '>=6'}
hasBin: true
dependencies:
minimist: 1.2.5
dev: true
/loader-utils/1.4.0:
resolution: {integrity: sha1-xXm140yzSxp07cbB+za/o3HVphM=, tarball: loader-utils/download/loader-utils-1.4.0.tgz}
engines: {node: '>=4.0.0'}
dependencies:
big.js: registry.nlark.com/big.js/5.2.2
emojis-list: 3.0.0
json5: 1.0.1
dev: true
/lodash.camelcase/4.3.0:
resolution: {integrity: sha1-soqmKIorn8ZRA1x3EfZathkDMaY=, tarball: lodash.camelcase/download/lodash.camelcase-4.3.0.tgz}
dev: true
/lodash/4.17.21:
resolution: {integrity: sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=, tarball: lodash/download/lodash-4.17.21.tgz}
/lru-cache/5.1.1:
resolution: {integrity: sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=, tarball: lru-cache/download/lru-cache-5.1.1.tgz}
dependencies:
yallist: 3.1.1
dev: true
/magic-string/0.25.7:
resolution: {integrity: sha1-P0l9b9NMZpxnmNy4IfLvMfVEUFE=, tarball: magic-string/download/magic-string-0.25.7.tgz}
dependencies:
sourcemap-codec: 1.4.8
dev: true
/merge-source-map/1.1.0:
resolution: {integrity: sha1-L93n5gIJOfcJBqaPLXrmheTIxkY=, tarball: merge-source-map/download/merge-source-map-1.1.0.tgz}
dependencies:
source-map: 0.6.1
dev: true
/merge2/1.4.1:
resolution: {integrity: sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=, tarball: merge2/download/merge2-1.4.1.tgz}
engines: {node: '>= 8'}
dev: true
/micromatch/4.0.4:
resolution: {integrity: sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k=, tarball: micromatch/download/micromatch-4.0.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmicromatch%2Fdownload%2Fmicromatch-4.0.4.tgz}
engines: {node: '>=8.6'}
dependencies:
braces: 3.0.2
picomatch: registry.nlark.com/picomatch/2.3.0
dev: true
/minimatch/3.0.4:
resolution: {integrity: sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=, tarball: minimatch/download/minimatch-3.0.4.tgz}
dependencies:
brace-expansion: 1.1.11
dev: true
/minimist/1.2.5:
resolution: {integrity: sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=, tarball: minimist/download/minimist-1.2.5.tgz}
dev: true
/ms/2.1.2:
resolution: {integrity: sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=, tarball: ms/download/ms-2.1.2.tgz}
dev: true
/normalize-path/3.0.0:
resolution: {integrity: sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=, tarball: normalize-path/download/normalize-path-3.0.0.tgz}
engines: {node: '>=0.10.0'}
dev: true
/object-keys/1.1.1:
resolution: {integrity: sha1-HEfyct8nfzsdrwYWd9nILiMixg4=, tarball: object-keys/download/object-keys-1.1.1.tgz}
engines: {node: '>= 0.4'}
dev: true
/object.assign/4.1.2:
resolution: {integrity: sha1-DtVKNC7Os3s4/3brgxoOeIy2OUA=, tarball: object.assign/download/object.assign-4.1.2.tgz}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.3
has-symbols: 1.0.2
object-keys: 1.1.1
dev: true
/postcss-modules-extract-imports/3.0.0_postcss@8.3.6:
resolution: {integrity: sha1-zaHwR8CugMl9vijD52pDuIAldB0=, tarball: postcss-modules-extract-imports/download/postcss-modules-extract-imports-3.0.0.tgz}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
postcss: registry.nlark.com/postcss/8.3.6
dev: true
/postcss-modules-local-by-default/4.0.0_postcss@8.3.6:
resolution: {integrity: sha1-67tU+uFZjuz99pGgKz/zs5ClpRw=, tarball: postcss-modules-local-by-default/download/postcss-modules-local-by-default-4.0.0.tgz}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
icss-utils: 5.1.0_postcss@8.3.6
postcss: registry.nlark.com/postcss/8.3.6
postcss-selector-parser: registry.nlark.com/postcss-selector-parser/6.0.6
postcss-value-parser: 4.1.0
dev: true
/postcss-modules-scope/3.0.0_postcss@8.3.6:
resolution: {integrity: sha1-nvMVFFbTu/oSDKRImN/Kby+gHwY=, tarball: postcss-modules-scope/download/postcss-modules-scope-3.0.0.tgz}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
postcss: registry.nlark.com/postcss/8.3.6
postcss-selector-parser: registry.nlark.com/postcss-selector-parser/6.0.6
dev: true
/postcss-modules-values/4.0.0_postcss@8.3.6:
resolution: {integrity: sha1-18Xn5ow7s8myfL9Iyguz/7RgLJw=, tarball: postcss-modules-values/download/postcss-modules-values-4.0.0.tgz}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
icss-utils: 5.1.0_postcss@8.3.6
postcss: registry.nlark.com/postcss/8.3.6
dev: true
/postcss-value-parser/4.1.0:
resolution: {integrity: sha1-RD9qIM7WSBor2k+oUypuVdeJoss=, tarball: postcss-value-parser/download/postcss-value-parser-4.1.0.tgz}
dev: true
/queue-microtask/1.2.3:
resolution: {integrity: sha1-SSkii7xyTfrEPg77BYyve2z7YkM=, tarball: queue-microtask/download/queue-microtask-1.2.3.tgz?cache=0&sync_timestamp=1616392663793&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqueue-microtask%2Fdownload%2Fqueue-microtask-1.2.3.tgz}
dev: true
/readdirp/3.6.0:
resolution: {integrity: sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=, tarball: readdirp/download/readdirp-3.6.0.tgz}
engines: {node: '>=8.10.0'}
dependencies:
picomatch: registry.nlark.com/picomatch/2.3.0
dev: true
/regexp.prototype.flags/1.3.1:
resolution: {integrity: sha1-fvNSro0VnnWMDq3Kb4/LTu8HviY=, tarball: regexp.prototype.flags/download/regexp.prototype.flags-1.3.1.tgz}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.3
dev: true
/resize-observer-polyfill/1.5.1:
resolution: {integrity: sha1-DpAg3T0hAkRY1OvSfiPkAmmBBGQ=, tarball: resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz}
dev: false
/resolve/1.20.0:
resolution: {integrity: sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=, tarball: resolve/download/resolve-1.20.0.tgz}
dependencies:
is-core-module: registry.nlark.com/is-core-module/2.6.0
path-parse: registry.nlark.com/path-parse/1.0.7
dev: true
/reusify/1.0.4:
resolution: {integrity: sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=, tarball: reusify/download/reusify-1.0.4.tgz}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
dev: true
/run-parallel/1.2.0:
resolution: {integrity: sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=, tarball: run-parallel/download/run-parallel-1.2.0.tgz}
dependencies:
queue-microtask: 1.2.3
dev: true
/side-channel/1.0.4:
resolution: {integrity: sha1-785cj9wQTudRslxY1CkAEfpeos8=, tarball: side-channel/download/side-channel-1.0.4.tgz}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.1
object-inspect: registry.nlark.com/object-inspect/1.11.0
dev: true
/source-map/0.6.1:
resolution: {integrity: sha1-dHIq8y6WFOnCh6jQu95IteLxomM=, tarball: source-map/download/source-map-0.6.1.tgz}
engines: {node: '>=0.10.0'}
/sourcemap-codec/1.4.8:
resolution: {integrity: sha1-6oBL2UhXQC5pktBaOO8a41qatMQ=, tarball: sourcemap-codec/download/sourcemap-codec-1.4.8.tgz}
dev: true
/string.prototype.trimend/1.0.4:
resolution: {integrity: sha1-51rpDClCxjUEaGwYsoe0oLGkX4A=, tarball: string.prototype.trimend/download/string.prototype.trimend-1.0.4.tgz}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.3
dev: true
/string.prototype.trimstart/1.0.4:
resolution: {integrity: sha1-s2OZr0qymZtMnGSL16P7K7Jv7u0=, tarball: string.prototype.trimstart/download/string.prototype.trimstart-1.0.4.tgz}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.3
dev: true
/to-regex-range/5.0.1:
resolution: {integrity: sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=, tarball: to-regex-range/download/to-regex-range-5.0.1.tgz}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
dev: true
/unbox-primitive/1.0.1:
resolution: {integrity: sha1-CF4hViXsMWJXTciFmr7nilmxRHE=, tarball: unbox-primitive/download/unbox-primitive-1.0.1.tgz}
dependencies:
function-bind: 1.1.1
has-bigints: 1.0.1
has-symbols: 1.0.2
which-boxed-primitive: registry.nlark.com/which-boxed-primitive/1.0.2
dev: true
/util-deprecate/1.0.2:
resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=, tarball: util-deprecate/download/util-deprecate-1.0.2.tgz}
dev: true
/yallist/3.1.1:
resolution: {integrity: sha1-27fa+b/YusmrRev2ArjLrQ1dCP0=, tarball: yallist/download/yallist-3.1.1.tgz}
dev: true
registry.nlark.com/@antfu/utils/0.2.4:
resolution: {integrity: sha1-x9M/xvqg06b8wlVWc/XpsZwPvBU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@antfu/utils/download/@antfu/utils-0.2.4.tgz}
name: '@antfu/utils'
version: 0.2.4
dependencies:
'@types/throttle-debounce': registry.nlark.com/@types/throttle-debounce/2.1.0
dev: true
registry.nlark.com/@babel/helper-validator-identifier/7.14.9:
resolution: {integrity: sha1-ZlTRcbICT22O4VG/JQlpmRkTHUg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.9.tgz}
name: '@babel/helper-validator-identifier'
version: 7.14.9
engines: {node: '>=6.9.0'}
registry.nlark.com/@babel/parser/7.15.3:
resolution: {integrity: sha1-NBbZvqdIBSz8tj28wnNoEFse2GI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/parser/download/@babel/parser-7.15.3.tgz}
name: '@babel/parser'
version: 7.15.3
engines: {node: '>=6.0.0'}
hasBin: true
registry.nlark.com/@babel/types/7.15.0:
resolution: {integrity: sha1-Ya8R8ihsTpxpyo3rX0N1pzxy3L0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@babel/types/download/@babel/types-7.15.0.tgz}
name: '@babel/types'
version: 7.15.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.nlark.com/@babel/helper-validator-identifier/7.14.9
to-fast-properties: registry.nlark.com/to-fast-properties/2.0.0
registry.nlark.com/@css-render/plugin-bem/0.15.5:
resolution: {integrity: sha1-kMzJYT8lSEp5WsP50AAY+LrbBVY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@css-render/plugin-bem/download/@css-render/plugin-bem-0.15.5.tgz}
name: '@css-render/plugin-bem'
version: 0.15.5
dependencies:
css-render: registry.nlark.com/css-render/0.15.5
dev: false
registry.nlark.com/@css-render/vue3-ssr/0.15.5_vue@3.2.4:
resolution: {integrity: sha1-hplNNZZ1KKpG44U9QLi90qlbL50=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@css-render/vue3-ssr/download/@css-render/vue3-ssr-0.15.5.tgz}
id: registry.nlark.com/@css-render/vue3-ssr/0.15.5
name: '@css-render/vue3-ssr'
version: 0.15.5
peerDependencies:
vue: ^3.0.11
dependencies:
vue: registry.nlark.com/vue/3.2.4
dev: false
registry.nlark.com/@element-plus/icons/0.0.11:
resolution: {integrity: sha1-mxh8ACd0VIuRGFDRf6X8L5pRX1c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@element-plus/icons/download/@element-plus/icons-0.0.11.tgz}
name: '@element-plus/icons'
version: 0.0.11
dev: false
registry.nlark.com/@emotion/hash/0.8.0:
resolution: {integrity: sha1-u7/2iXj+/b5ozLUzvIy+HRr7VBM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@emotion/hash/download/@emotion/hash-0.8.0.tgz}
name: '@emotion/hash'
version: 0.8.0
dev: false
registry.nlark.com/@intlify/bundle-utils/0.2.0:
resolution: {integrity: sha1-73/tqLkursHwmWD+LXpmquAGfTE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@intlify/bundle-utils/download/@intlify/bundle-utils-0.2.0.tgz}
name: '@intlify/bundle-utils'
version: 0.2.0
engines: {node: '>= 12'}
dependencies:
'@intlify/core': registry.nlark.com/@intlify/core/9.1.7
'@intlify/message-compiler': registry.nlark.com/@intlify/message-compiler/9.1.7
'@intlify/shared': registry.nlark.com/@intlify/shared/9.1.7
jsonc-eslint-parser: registry.nlark.com/jsonc-eslint-parser/1.2.0
source-map: 0.6.1
yaml-eslint-parser: registry.nlark.com/yaml-eslint-parser/0.3.2
transitivePeerDependencies:
- eslint
dev: true
registry.nlark.com/@intlify/core-base/9.1.7:
resolution: {integrity: sha1-pFSkkmg2kLw9Crq4JgWrWiNkW9A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@intlify/core-base/download/@intlify/core-base-9.1.7.tgz}
name: '@intlify/core-base'
version: 9.1.7
engines: {node: '>= 10'}
dependencies:
'@intlify/devtools-if': registry.nlark.com/@intlify/devtools-if/9.1.7
'@intlify/message-compiler': registry.nlark.com/@intlify/message-compiler/9.1.7
'@intlify/message-resolver': registry.nlark.com/@intlify/message-resolver/9.1.7
'@intlify/runtime': registry.nlark.com/@intlify/runtime/9.1.7
'@intlify/shared': registry.nlark.com/@intlify/shared/9.1.7
'@intlify/vue-devtools': registry.nlark.com/@intlify/vue-devtools/9.1.7
registry.nlark.com/@intlify/core/9.1.7:
resolution: {integrity: sha1-acANwxER8bYdefvZrRg4GW5zyUo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@intlify/core/download/@intlify/core-9.1.7.tgz}
name: '@intlify/core'
version: 9.1.7
engines: {node: '>= 10'}
dependencies:
'@intlify/core-base': registry.nlark.com/@intlify/core-base/9.1.7
dev: true
registry.nlark.com/@intlify/devtools-if/9.1.7:
resolution: {integrity: sha1-pd8PM+BsPq0+U7f01LEKLVIwk2E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@intlify/devtools-if/download/@intlify/devtools-if-9.1.7.tgz}
name: '@intlify/devtools-if'
version: 9.1.7
engines: {node: '>= 10'}
dependencies:
'@intlify/shared': registry.nlark.com/@intlify/shared/9.1.7
registry.nlark.com/@intlify/message-compiler/9.1.7:
resolution: {integrity: sha1-RmP8wqGQ88xpcOElZcjW8ivutxk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@intlify/message-compiler/download/@intlify/message-compiler-9.1.7.tgz}
name: '@intlify/message-compiler'
version: 9.1.7
engines: {node: '>= 10'}
dependencies:
'@intlify/message-resolver': registry.nlark.com/@intlify/message-resolver/9.1.7
'@intlify/shared': registry.nlark.com/@intlify/shared/9.1.7
source-map: 0.6.1
registry.nlark.com/@intlify/message-resolver/9.1.7:
resolution: {integrity: sha1-qV0ThmyN6FeENYA5yIRWaBUuQWI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@intlify/message-resolver/download/@intlify/message-resolver-9.1.7.tgz}
name: '@intlify/message-resolver'
version: 9.1.7
engines: {node: '>= 10'}
registry.nlark.com/@intlify/runtime/9.1.7:
resolution: {integrity: sha1-Z+DWsv2FpbCzAaFRwvQ2+TFUw8Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@intlify/runtime/download/@intlify/runtime-9.1.7.tgz}
name: '@intlify/runtime'
version: 9.1.7
engines: {node: '>= 10'}
dependencies:
'@intlify/message-compiler': registry.nlark.com/@intlify/message-compiler/9.1.7
'@intlify/message-resolver': registry.nlark.com/@intlify/message-resolver/9.1.7
'@intlify/shared': registry.nlark.com/@intlify/shared/9.1.7
registry.nlark.com/@intlify/shared/9.1.7:
resolution: {integrity: sha1-59i8kMtZ3Bfde0yFpz2xb8t4kfw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@intlify/shared/download/@intlify/shared-9.1.7.tgz}
name: '@intlify/shared'
version: 9.1.7
engines: {node: '>= 10'}
registry.nlark.com/@intlify/vite-plugin-vue-i18n/2.4.0_vite@2.5.0+vue-i18n@9.1.7:
resolution: {integrity: sha1-4SLU3Ng79yMdqPPI3sE5PCy0Sts=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@intlify/vite-plugin-vue-i18n/download/@intlify/vite-plugin-vue-i18n-2.4.0.tgz}
id: registry.nlark.com/@intlify/vite-plugin-vue-i18n/2.4.0
name: '@intlify/vite-plugin-vue-i18n'
version: 2.4.0
engines: {node: '>= 12'}
peerDependencies:
vite: ^2.3.6
vue-i18n: ^9.1.6
dependencies:
'@intlify/bundle-utils': registry.nlark.com/@intlify/bundle-utils/0.2.0
'@intlify/shared': registry.nlark.com/@intlify/shared/9.1.7
'@rollup/pluginutils': registry.nlark.com/@rollup/pluginutils/4.1.1
debug: registry.nlark.com/debug/4.3.2
fast-glob: registry.nlark.com/fast-glob/3.2.7
vite: registry.nlark.com/vite/2.5.0
vue-i18n: registry.nlark.com/vue-i18n/9.1.7_vue@3.2.4
transitivePeerDependencies:
- eslint
dev: true
registry.nlark.com/@intlify/vue-devtools/9.1.7:
resolution: {integrity: sha1-sI05u18hupsZVOq5Rm6UCBKUJac=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@intlify/vue-devtools/download/@intlify/vue-devtools-9.1.7.tgz}
name: '@intlify/vue-devtools'
version: 9.1.7
engines: {node: '>= 10'}
dependencies:
'@intlify/message-resolver': registry.nlark.com/@intlify/message-resolver/9.1.7
'@intlify/runtime': registry.nlark.com/@intlify/runtime/9.1.7
'@intlify/shared': registry.nlark.com/@intlify/shared/9.1.7
registry.nlark.com/@jest/types/26.6.2:
resolution: {integrity: sha1-vvWlMgMOHYii9abZM/hOlyJu1I4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@jest/types/download/@jest/types-26.6.2.tgz}
name: '@jest/types'
version: 26.6.2
engines: {node: '>= 10.14.2'}
dependencies:
'@types/istanbul-lib-coverage': registry.nlark.com/@types/istanbul-lib-coverage/2.0.3
'@types/istanbul-reports': registry.nlark.com/@types/istanbul-reports/3.0.1
'@types/node': registry.nlark.com/@types/node/15.14.9
'@types/yargs': registry.nlark.com/@types/yargs/15.0.14
chalk: registry.nlark.com/chalk/4.1.2
dev: false
registry.nlark.com/@nodelib/fs.scandir/2.1.5:
resolution: {integrity: sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz}
name: '@nodelib/fs.scandir'
version: 2.1.5
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': registry.nlark.com/@nodelib/fs.stat/2.0.5
run-parallel: 1.2.0
dev: true
registry.nlark.com/@nodelib/fs.stat/2.0.5:
resolution: {integrity: sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.5.tgz}
name: '@nodelib/fs.stat'
version: 2.0.5
engines: {node: '>= 8'}
dev: true
registry.nlark.com/@nodelib/fs.walk/1.2.8:
resolution: {integrity: sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.8.tgz}
name: '@nodelib/fs.walk'
version: 1.2.8
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': registry.nlark.com/@nodelib/fs.scandir/2.1.5
fastq: registry.nlark.com/fastq/1.12.0
dev: true
registry.nlark.com/@popperjs/core/2.9.3:
resolution: {integrity: sha1-i2jaHr1/xgOZnPbr7jSkiZoUuI4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@popperjs/core/download/@popperjs/core-2.9.3.tgz}
name: '@popperjs/core'
version: 2.9.3
dev: false
registry.nlark.com/@rollup/pluginutils/4.1.1:
resolution: {integrity: sha1-HU2obdTt7RVlalfZM/2iuaCNR+w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@rollup/pluginutils/download/@rollup/pluginutils-4.1.1.tgz}
name: '@rollup/pluginutils'
version: 4.1.1
engines: {node: '>= 8.0.0'}
dependencies:
estree-walker: 2.0.2
picomatch: registry.nlark.com/picomatch/2.3.0
dev: true
registry.nlark.com/@types/estree/0.0.48:
resolution: {integrity: sha1-GNyAkbKF35DbLyWqfZBs/DlLf3Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/estree/download/@types/estree-0.0.48.tgz}
name: '@types/estree'
version: 0.0.48
dev: true
registry.nlark.com/@types/file-saver/2.0.3:
resolution: {integrity: sha1-tzTE9aBNIGFertPcEG4qsyEIIAk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/file-saver/download/@types/file-saver-2.0.3.tgz}
name: '@types/file-saver'
version: 2.0.3
dev: true
registry.nlark.com/@types/istanbul-lib-coverage/2.0.3:
resolution: {integrity: sha1-S6jdtyAiH0MuRDvV+RF/0iz9R2I=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz}
name: '@types/istanbul-lib-coverage'
version: 2.0.3
dev: false
registry.nlark.com/@types/istanbul-lib-report/3.0.0:
resolution: {integrity: sha1-wUwk8Y6oGQwRjudWK3/5mjZVJoY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/istanbul-lib-report/download/@types/istanbul-lib-report-3.0.0.tgz}
name: '@types/istanbul-lib-report'
version: 3.0.0
dependencies:
'@types/istanbul-lib-coverage': registry.nlark.com/@types/istanbul-lib-coverage/2.0.3
dev: false
registry.nlark.com/@types/istanbul-reports/3.0.1:
resolution: {integrity: sha1-kVP+mLuivVZaY63ZQ21vDX+EaP8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-3.0.1.tgz}
name: '@types/istanbul-reports'
version: 3.0.1
dependencies:
'@types/istanbul-lib-report': registry.nlark.com/@types/istanbul-lib-report/3.0.0
dev: false
registry.nlark.com/@types/jest/26.0.24:
resolution: {integrity: sha1-lD0Rl2sWc5GFkToZNuDeDEp9WVo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/jest/download/@types/jest-26.0.24.tgz}
name: '@types/jest'
version: 26.0.24
dependencies:
jest-diff: registry.nlark.com/jest-diff/26.6.2
pretty-format: registry.nlark.com/pretty-format/26.6.2
dev: false
registry.nlark.com/@types/lodash-es/4.17.4:
resolution: {integrity: sha1-suRA0r+Kk1hKn9eYRS7El5hsm5c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/lodash-es/download/@types/lodash-es-4.17.4.tgz}
name: '@types/lodash-es'
version: 4.17.4
dependencies:
'@types/lodash': registry.nlark.com/@types/lodash/4.14.172
dev: false
registry.nlark.com/@types/lodash/4.14.172:
resolution: {integrity: sha1-qtd0wo57/Xpn3iVAjgPuWow9Aoo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/lodash/download/@types/lodash-4.14.172.tgz}
name: '@types/lodash'
version: 4.14.172
dev: false
registry.nlark.com/@types/node/14.14.45:
resolution: {integrity: sha1-7C37VWb/gU0GGu9+FBV1rtuiRc8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/node/download/@types/node-14.14.45.tgz}
name: '@types/node'
version: 14.14.45
dev: false
registry.nlark.com/@types/node/14.17.11:
resolution: {integrity: sha1-gtJm1leuxf8Bylny/6/xu0P3vw8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/node/download/@types/node-14.17.11.tgz}
name: '@types/node'
version: 14.17.11
dev: false
registry.nlark.com/@types/node/15.14.9:
resolution: {integrity: sha1-vEPJkMPJvnKBhou8e4/dbitXrfo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/node/download/@types/node-15.14.9.tgz}
name: '@types/node'
version: 15.14.9
registry.nlark.com/@types/nprogress/0.2.0:
resolution: {integrity: sha1-hsWTaC1BmSEqBQnMPE1WK7vW5F8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/nprogress/download/@types/nprogress-0.2.0.tgz}
name: '@types/nprogress'
version: 0.2.0
dev: true
registry.nlark.com/@types/throttle-debounce/2.1.0:
resolution: {integrity: sha1-HD32JL/Eti+ZLTASuExW1B6rN3Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/throttle-debounce/download/@types/throttle-debounce-2.1.0.tgz}
name: '@types/throttle-debounce'
version: 2.1.0
dev: true
registry.nlark.com/@types/yargs-parser/20.2.1:
resolution: {integrity: sha1-O5ziSJkZ2eT+pDm3aRarw0st8Sk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/yargs-parser/download/@types/yargs-parser-20.2.1.tgz}
name: '@types/yargs-parser'
version: 20.2.1
dev: false
registry.nlark.com/@types/yargs/15.0.14:
resolution: {integrity: sha1-Jtgh3biecEkhYLZtEKDrbfj2+wY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@types/yargs/download/@types/yargs-15.0.14.tgz}
name: '@types/yargs'
version: 15.0.14
dependencies:
'@types/yargs-parser': registry.nlark.com/@types/yargs-parser/20.2.1
dev: false
registry.nlark.com/@vicons/antd/0.10.0:
resolution: {integrity: sha1-F2Ye1lQSKmRQkm9Azrqf1nri4DY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vicons/antd/download/@vicons/antd-0.10.0.tgz}
name: '@vicons/antd'
version: 0.10.0
dev: true
registry.nlark.com/@vicons/ionicons5/0.10.0:
resolution: {integrity: sha1-lGQacYUNniUfEFm2faTBkya86WI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vicons/ionicons5/download/@vicons/ionicons5-0.10.0.tgz}
name: '@vicons/ionicons5'
version: 0.10.0
dev: false
registry.nlark.com/@vitejs/plugin-vue/1.4.0_@vue+compiler-sfc@3.2.4:
resolution: {integrity: sha1-lirgG3/RatQAeJjGTtY5E24SIVs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vitejs/plugin-vue/download/@vitejs/plugin-vue-1.4.0.tgz}
id: registry.nlark.com/@vitejs/plugin-vue/1.4.0
name: '@vitejs/plugin-vue'
version: 1.4.0
engines: {node: '>=12.0.0'}
peerDependencies:
'@vue/compiler-sfc': ^3.0.8
dependencies:
'@vue/compiler-sfc': registry.nlark.com/@vue/compiler-sfc/3.2.4
dev: true
registry.nlark.com/@vue/compiler-core/3.2.4:
resolution: {integrity: sha1-qY0pV3GZjB6NzMTuPVL+sUsCrqk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/compiler-core/download/@vue/compiler-core-3.2.4.tgz}
name: '@vue/compiler-core'
version: 3.2.4
dependencies:
'@babel/parser': registry.nlark.com/@babel/parser/7.15.3
'@babel/types': registry.nlark.com/@babel/types/7.15.0
'@vue/shared': registry.nlark.com/@vue/shared/3.2.4
estree-walker: 2.0.2
source-map: 0.6.1
registry.nlark.com/@vue/compiler-dom/3.2.4:
resolution: {integrity: sha1-OkPeJD66Enq75X55aguWnS33jAg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/compiler-dom/download/@vue/compiler-dom-3.2.4.tgz}
name: '@vue/compiler-dom'
version: 3.2.4
dependencies:
'@vue/compiler-core': registry.nlark.com/@vue/compiler-core/3.2.4
'@vue/shared': registry.nlark.com/@vue/shared/3.2.4
registry.nlark.com/@vue/compiler-sfc/3.2.4:
resolution: {integrity: sha1-mAeGjMlQKR8WPDkwqBuxbocN8Jc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.2.4.tgz?cache=0&sync_timestamp=1629251880551&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-sfc%2Fdownload%2F%40vue%2Fcompiler-sfc-3.2.4.tgz}
name: '@vue/compiler-sfc'
version: 3.2.4
dependencies:
'@babel/parser': registry.nlark.com/@babel/parser/7.15.3
'@babel/types': registry.nlark.com/@babel/types/7.15.0
'@types/estree': registry.nlark.com/@types/estree/0.0.48
'@vue/compiler-core': registry.nlark.com/@vue/compiler-core/3.2.4
'@vue/compiler-dom': registry.nlark.com/@vue/compiler-dom/3.2.4
'@vue/compiler-ssr': registry.nlark.com/@vue/compiler-ssr/3.2.4
'@vue/shared': registry.nlark.com/@vue/shared/3.2.4
consolidate: registry.nlark.com/consolidate/0.16.0
estree-walker: 2.0.2
hash-sum: 2.0.0
lru-cache: 5.1.1
magic-string: 0.25.7
merge-source-map: 1.1.0
postcss: registry.nlark.com/postcss/8.3.6
postcss-modules: registry.nlark.com/postcss-modules/4.2.2_postcss@8.3.6
postcss-selector-parser: registry.nlark.com/postcss-selector-parser/6.0.6
source-map: 0.6.1
dev: true
registry.nlark.com/@vue/compiler-ssr/3.2.4:
resolution: {integrity: sha1-vlHyGcIEKz5TA3PmC8Emraa7HMA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.2.4.tgz}
name: '@vue/compiler-ssr'
version: 3.2.4
dependencies:
'@vue/compiler-dom': registry.nlark.com/@vue/compiler-dom/3.2.4
'@vue/shared': registry.nlark.com/@vue/shared/3.2.4
dev: true
registry.nlark.com/@vue/devtools-api/6.0.0-beta.15:
resolution: {integrity: sha1-rXyzhOBi8WW8+cg3MhJb/7wq2D0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/devtools-api/download/@vue/devtools-api-6.0.0-beta.15.tgz}
name: '@vue/devtools-api'
version: 6.0.0-beta.15
registry.nlark.com/@vue/reactivity/3.2.4:
resolution: {integrity: sha1-oCCtflD2dCGaB3ZLEFtZIuYVl+o=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/reactivity/download/@vue/reactivity-3.2.4.tgz}
name: '@vue/reactivity'
version: 3.2.4
dependencies:
'@vue/shared': registry.nlark.com/@vue/shared/3.2.4
registry.nlark.com/@vue/runtime-core/3.2.4:
resolution: {integrity: sha1-2l3ePcHkjfmd0x6pqXL1wCrNw/U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/runtime-core/download/@vue/runtime-core-3.2.4.tgz}
name: '@vue/runtime-core'
version: 3.2.4
dependencies:
'@vue/reactivity': registry.nlark.com/@vue/reactivity/3.2.4
'@vue/shared': registry.nlark.com/@vue/shared/3.2.4
registry.nlark.com/@vue/runtime-dom/3.2.4:
resolution: {integrity: sha1-ECVZXyrpmhL+Dh5rzo32dh7+wks=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/runtime-dom/download/@vue/runtime-dom-3.2.4.tgz}
name: '@vue/runtime-dom'
version: 3.2.4
dependencies:
'@vue/runtime-core': registry.nlark.com/@vue/runtime-core/3.2.4
'@vue/shared': registry.nlark.com/@vue/shared/3.2.4
csstype: registry.nlark.com/csstype/2.6.17
registry.nlark.com/@vue/shared/3.2.4:
resolution: {integrity: sha1-uioJUnr/8nso0I+SG0pZfpUEyno=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vue/shared/download/@vue/shared-3.2.4.tgz}
name: '@vue/shared'
version: 3.2.4
registry.nlark.com/@vueuse/core/5.3.0_vue@3.2.4:
resolution: {integrity: sha1-2MbpOeGAia+iJPq25EP64r21elE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vueuse/core/download/@vueuse/core-5.3.0.tgz}
id: registry.nlark.com/@vueuse/core/5.3.0
name: '@vueuse/core'
version: 5.3.0
dependencies:
'@vueuse/shared': registry.nlark.com/@vueuse/shared/5.3.0_vue@3.2.4
vue-demi: registry.nlark.com/vue-demi/0.11.3_vue@3.2.4
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: false
registry.nlark.com/@vueuse/shared/5.3.0_vue@3.2.4:
resolution: {integrity: sha1-K5WD+A8ShCQvgIkl5+FBMQ5ADkU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@vueuse/shared/download/@vueuse/shared-5.3.0.tgz}
id: registry.nlark.com/@vueuse/shared/5.3.0
name: '@vueuse/shared'
version: 5.3.0
dependencies:
vue-demi: registry.nlark.com/vue-demi/0.11.3_vue@3.2.4
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: false
registry.nlark.com/@windicss/config/1.2.7:
resolution: {integrity: sha1-xwvefeJyV096M+uaHX+Avb/+SLo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@windicss/config/download/@windicss/config-1.2.7.tgz}
name: '@windicss/config'
version: 1.2.7
dependencies:
debug: registry.nlark.com/debug/4.3.2
jiti: registry.nlark.com/jiti/1.11.0
windicss: registry.nlark.com/windicss/3.1.7
dev: true
registry.nlark.com/@windicss/plugin-utils/1.2.7:
resolution: {integrity: sha1-qixXH2ZgDOLJFsnEfv6Or7IpkIw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@windicss/plugin-utils/download/@windicss/plugin-utils-1.2.7.tgz}
name: '@windicss/plugin-utils'
version: 1.2.7
dependencies:
'@antfu/utils': registry.nlark.com/@antfu/utils/0.2.4
'@windicss/config': registry.nlark.com/@windicss/config/1.2.7
debug: registry.nlark.com/debug/4.3.2
fast-glob: registry.nlark.com/fast-glob/3.2.7
magic-string: 0.25.7
micromatch: 4.0.4
windicss: registry.nlark.com/windicss/3.1.7
dev: true
registry.nlark.com/acorn-jsx/5.3.2_acorn@7.4.1:
resolution: {integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.2.tgz}
id: registry.nlark.com/acorn-jsx/5.3.2
name: acorn-jsx
version: 5.3.2
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
acorn: registry.nlark.com/acorn/7.4.1
dev: true
registry.nlark.com/acorn/7.4.1:
resolution: {integrity: sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz}
name: acorn
version: 7.4.1
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
registry.nlark.com/ansi-styles/4.3.0:
resolution: {integrity: sha1-7dgDYornHATIWuegkG7a00tkiTc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz}
name: ansi-styles
version: 4.3.0
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
registry.nlark.com/async-validator/3.5.2:
resolution: {integrity: sha1-aOhmqWgk6LJpT/eoMcGiXETV5QA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/async-validator/download/async-validator-3.5.2.tgz}
name: async-validator
version: 3.5.2
dev: false
registry.nlark.com/async-validator/4.0.2:
resolution: {integrity: sha1-+AiWKP+KlffIxY4bjTw82d4YaZY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/async-validator/download/async-validator-4.0.2.tgz}
name: async-validator
version: 4.0.2
dev: false
registry.nlark.com/available-typed-arrays/1.0.4:
resolution: {integrity: sha1-ngroTs/yDKrmqUocO8OblVZJt6k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/available-typed-arrays/download/available-typed-arrays-1.0.4.tgz}
name: available-typed-arrays
version: 1.0.4
engines: {node: '>= 0.4'}
dev: true
registry.nlark.com/big.js/5.2.2:
resolution: {integrity: sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz}
name: big.js
version: 5.2.2
dev: true
registry.nlark.com/chalk/4.1.2:
resolution: {integrity: sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/chalk/download/chalk-4.1.2.tgz}
name: chalk
version: 4.1.2
engines: {node: '>=10'}
dependencies:
ansi-styles: registry.nlark.com/ansi-styles/4.3.0
supports-color: registry.nlark.com/supports-color/7.2.0
registry.nlark.com/chokidar/3.5.2:
resolution: {integrity: sha1-26OXb8rbAW9m/TZQIdkWANAcHnU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/chokidar/download/chokidar-3.5.2.tgz}
name: chokidar
version: 3.5.2
engines: {node: '>= 8.10.0'}
dependencies:
anymatch: 3.1.2
braces: 3.0.2
glob-parent: registry.nlark.com/glob-parent/5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.1
normalize-path: 3.0.0
readdirp: 3.6.0
optionalDependencies:
fsevents: 2.3.2
dev: true
registry.nlark.com/colorette/1.3.0:
resolution: {integrity: sha1-/0XS8O2yRAadO3cq3rBP7TjQoK8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/colorette/download/colorette-1.3.0.tgz}
name: colorette
version: 1.3.0
dev: true
registry.nlark.com/consolidate/0.16.0:
resolution: {integrity: sha1-oRhkdokw8vGUMWYKZZBmaPX73BY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/consolidate/download/consolidate-0.16.0.tgz}
name: consolidate
version: 0.16.0
engines: {node: '>= 0.10.0'}
dependencies:
bluebird: 3.7.2
dev: true
registry.nlark.com/css-render/0.15.5:
resolution: {integrity: sha1-5MA7cDB/McqQEzrQR0GeaRIb8JY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/css-render/download/css-render-0.15.5.tgz}
name: css-render
version: 0.15.5
dependencies:
'@emotion/hash': registry.nlark.com/@emotion/hash/0.8.0
'@types/node': registry.nlark.com/@types/node/14.14.45
csstype: registry.nlark.com/csstype/3.0.8
dev: false
registry.nlark.com/csstype/2.6.17:
resolution: {integrity: sha1-TPMOuH4dGgBdi2UQ+VKSQT9qHA4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/csstype/download/csstype-2.6.17.tgz}
name: csstype
version: 2.6.17
registry.nlark.com/csstype/3.0.8:
resolution: {integrity: sha1-0iZqeScp+yJ80hb7Vy9Dco4a00A=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/csstype/download/csstype-3.0.8.tgz}
name: csstype
version: 3.0.8
dev: false
registry.nlark.com/date-fns/2.23.0:
resolution: {integrity: sha1-TohslBZZrwz3sw+v3R6qN+iHiKk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/date-fns/download/date-fns-2.23.0.tgz}
name: date-fns
version: 2.23.0
engines: {node: '>=0.11'}
dev: false
registry.nlark.com/dayjs/1.10.6:
resolution: {integrity: sha1-KIsqqC8thBimydTfWJjAc3rQKmM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/dayjs/download/dayjs-1.10.6.tgz?cache=0&sync_timestamp=1625562884744&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdayjs%2Fdownload%2Fdayjs-1.10.6.tgz}
name: dayjs
version: 1.10.6
dev: false
registry.nlark.com/debug/4.3.2:
resolution: {integrity: sha1-8KScGKyHeeMdSgxgKd+3aHPHQos=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/debug/download/debug-4.3.2.tgz}
name: debug
version: 4.3.2
engines: {node: '>=6.0'}
dependencies:
ms: 2.1.2
dev: true
registry.nlark.com/diff-sequences/26.6.2:
resolution: {integrity: sha1-SLqZFX3hkjQS7tQdtrbUqpynwLE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/diff-sequences/download/diff-sequences-26.6.2.tgz}
name: diff-sequences
version: 26.6.2
engines: {node: '>= 10.14.2'}
dev: false
registry.nlark.com/element-plus/1.0.2-beta.71_vue@3.2.4:
resolution: {integrity: sha1-FI8W1aCoAFSZifeGm79NZWxlLTY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/element-plus/download/element-plus-1.0.2-beta.71.tgz}
id: registry.nlark.com/element-plus/1.0.2-beta.71
name: element-plus
version: 1.0.2-beta.71
peerDependencies:
vue: 3.1.x
dependencies:
'@element-plus/icons': registry.nlark.com/@element-plus/icons/0.0.11
'@popperjs/core': registry.nlark.com/@popperjs/core/2.9.3
async-validator: registry.nlark.com/async-validator/3.5.2
dayjs: registry.nlark.com/dayjs/1.10.6
lodash: 4.17.21
mitt: registry.nlark.com/mitt/2.1.0
normalize-wheel: registry.nlark.com/normalize-wheel/1.0.1
resize-observer-polyfill: 1.5.1
vue: registry.nlark.com/vue/3.2.4
dev: false
registry.nlark.com/es-abstract/1.18.5:
resolution: {integrity: sha1-mxDefUwgajWB/VshJCM+BNtJrhk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/es-abstract/download/es-abstract-1.18.5.tgz}
name: es-abstract
version: 1.18.5
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
es-to-primitive: 1.2.1
function-bind: 1.1.1
get-intrinsic: 1.1.1
has: 1.0.3
has-symbols: 1.0.2
internal-slot: registry.nlark.com/internal-slot/1.0.3
is-callable: registry.nlark.com/is-callable/1.2.4
is-negative-zero: 2.0.1
is-regex: registry.nlark.com/is-regex/1.1.4
is-string: registry.nlark.com/is-string/1.0.7
object-inspect: registry.nlark.com/object-inspect/1.11.0
object-keys: 1.1.1
object.assign: 4.1.2
string.prototype.trimend: 1.0.4
string.prototype.trimstart: 1.0.4
unbox-primitive: 1.0.1
dev: true
registry.nlark.com/es-get-iterator/1.1.2:
resolution: {integrity: sha1-kjTFSrpxNIbX694CIIZK9eKyg/c=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/es-get-iterator/download/es-get-iterator-1.1.2.tgz}
name: es-get-iterator
version: 1.1.2
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.1
has-symbols: 1.0.2
is-arguments: registry.nlark.com/is-arguments/1.1.1
is-map: registry.nlark.com/is-map/2.0.2
is-set: registry.nlark.com/is-set/2.0.2
is-string: registry.nlark.com/is-string/1.0.7
isarray: 2.0.5
dev: true
registry.nlark.com/esbuild/0.12.22:
resolution: {integrity: sha1-YDGhJXuNAwfTBr7Wc7ecNmhgf1E=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/esbuild/download/esbuild-0.12.22.tgz}
name: esbuild
version: 0.12.22
hasBin: true
requiresBuild: true
dev: true
registry.nlark.com/eslint-utils/3.0.0:
resolution: {integrity: sha1-iuuvrOc0W7M1WdsKHxOh0tSMNnI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-utils/download/eslint-utils-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-utils%2Fdownload%2Feslint-utils-3.0.0.tgz}
name: eslint-utils
version: 3.0.0
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
eslint: '>=5'
dependencies:
eslint-visitor-keys: registry.nlark.com/eslint-visitor-keys/2.1.0
dev: true
registry.nlark.com/eslint-visitor-keys/1.3.0:
resolution: {integrity: sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz}
name: eslint-visitor-keys
version: 1.3.0
engines: {node: '>=4'}
dev: true
registry.nlark.com/eslint-visitor-keys/2.1.0:
resolution: {integrity: sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz}
name: eslint-visitor-keys
version: 2.1.0
engines: {node: '>=10'}
dev: true
registry.nlark.com/eslint-visitor-keys/3.0.0:
resolution: {integrity: sha1-4y6Zxs3C6wY/IE7aXbZ7/li7QYY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-3.0.0.tgz}
name: eslint-visitor-keys
version: 3.0.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
registry.nlark.com/espree/7.3.1:
resolution: {integrity: sha1-8t8zC3Usb1UBn4vYm3ZgA5wbu7Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/espree/download/espree-7.3.1.tgz}
name: espree
version: 7.3.1
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
acorn: registry.nlark.com/acorn/7.4.1
acorn-jsx: registry.nlark.com/acorn-jsx/5.3.2_acorn@7.4.1
eslint-visitor-keys: registry.nlark.com/eslint-visitor-keys/1.3.0
dev: true
registry.nlark.com/evtd/0.2.2:
resolution: {integrity: sha1-vrvifhWu3B1cGLwmIN/JDyYHh8M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/evtd/download/evtd-0.2.2.tgz}
name: evtd
version: 0.2.2
dev: false
registry.nlark.com/fast-glob/3.2.7:
resolution: {integrity: sha1-/Wy3otfpqnp4RhEehaGW1rL3ZqE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fast-glob/download/fast-glob-3.2.7.tgz}
name: fast-glob
version: 3.2.7
engines: {node: '>=8'}
dependencies:
'@nodelib/fs.stat': registry.nlark.com/@nodelib/fs.stat/2.0.5
'@nodelib/fs.walk': registry.nlark.com/@nodelib/fs.walk/1.2.8
glob-parent: registry.nlark.com/glob-parent/5.1.2
merge2: 1.4.1
micromatch: 4.0.4
dev: true
registry.nlark.com/fastq/1.12.0:
resolution: {integrity: sha1-7XtqtdYjk/ssxZHIU2UqXDGL95Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fastq/download/fastq-1.12.0.tgz}
name: fastq
version: 1.12.0
dependencies:
reusify: 1.0.4
dev: true
registry.nlark.com/fill-range/7.0.1:
resolution: {integrity: sha1-GRmmp8df44ssfHflGYU12prN2kA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz}
name: fill-range
version: 7.0.1
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
dev: true
registry.nlark.com/foreach/2.0.5:
resolution: {integrity: sha1-C+4AUBiusmDQo6865ljdATbsG5k=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/foreach/download/foreach-2.0.5.tgz}
name: foreach
version: 2.0.5
dev: true
registry.nlark.com/glob-parent/5.1.2:
resolution: {integrity: sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz?cache=0&sync_timestamp=1626761045315&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob-parent%2Fdownload%2Fglob-parent-5.1.2.tgz}
name: glob-parent
version: 5.1.2
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.1
dev: true
registry.nlark.com/has-flag/4.0.0:
resolution: {integrity: sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz}
name: has-flag
version: 4.0.0
engines: {node: '>=8'}
registry.nlark.com/has-tostringtag/1.0.0:
resolution: {integrity: sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/has-tostringtag/download/has-tostringtag-1.0.0.tgz}
name: has-tostringtag
version: 1.0.0
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.2
dev: true
registry.nlark.com/highlight.js/11.2.0:
resolution: {integrity: sha1-p+O4wf3E8FOLk7LcLd1TpAxqsPA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/highlight.js/download/highlight.js-11.2.0.tgz}
name: highlight.js
version: 11.2.0
engines: {node: '>=12.0.0'}
dev: false
registry.nlark.com/icss-replace-symbols/1.1.0:
resolution: {integrity: sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/icss-replace-symbols/download/icss-replace-symbols-1.1.0.tgz}
name: icss-replace-symbols
version: 1.1.0
dev: true
registry.nlark.com/internal-slot/1.0.3:
resolution: {integrity: sha1-c0fjB97uovqsKsYgXUvH00ln9Zw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/internal-slot/download/internal-slot-1.0.3.tgz}
name: internal-slot
version: 1.0.3
engines: {node: '>= 0.4'}
dependencies:
get-intrinsic: 1.1.1
has: 1.0.3
side-channel: 1.0.4
dev: true
registry.nlark.com/is-arguments/1.1.1:
resolution: {integrity: sha1-FbP4j9oB8ql/7ITKdhpWDxI++ps=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-arguments/download/is-arguments-1.1.1.tgz}
name: is-arguments
version: 1.1.1
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0
dev: true
registry.nlark.com/is-bigint/1.0.4:
resolution: {integrity: sha1-CBR6GHW8KzIAXUHM2Ckd/8ZpHfM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-bigint/download/is-bigint-1.0.4.tgz}
name: is-bigint
version: 1.0.4
dependencies:
has-bigints: 1.0.1
dev: true
registry.nlark.com/is-boolean-object/1.1.2:
resolution: {integrity: sha1-XG3CACRt2TIa5LiFoRS7H3X2Nxk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-boolean-object/download/is-boolean-object-1.1.2.tgz}
name: is-boolean-object
version: 1.1.2
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0
dev: true
registry.nlark.com/is-callable/1.2.4:
resolution: {integrity: sha1-RzAdWN0CWUB4ZVR4U99tYf5HGUU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-callable/download/is-callable-1.2.4.tgz}
name: is-callable
version: 1.2.4
engines: {node: '>= 0.4'}
dev: true
registry.nlark.com/is-core-module/2.6.0:
resolution: {integrity: sha1-11U7JSb+Wbkro+QMjfdX7Ipwnhk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-core-module/download/is-core-module-2.6.0.tgz}
name: is-core-module
version: 2.6.0
dependencies:
has: 1.0.3
dev: true
registry.nlark.com/is-date-object/1.0.5:
resolution: {integrity: sha1-CEHVU25yTCVZe/bqYuG9OCmN8x8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-date-object/download/is-date-object-1.0.5.tgz}
name: is-date-object
version: 1.0.5
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0
dev: true
registry.nlark.com/is-map/2.0.2:
resolution: {integrity: sha1-AJItuMm/c+gbejNYJ7wqQ/K5ESc=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-map/download/is-map-2.0.2.tgz}
name: is-map
version: 2.0.2
dev: true
registry.nlark.com/is-number-object/1.0.6:
resolution: {integrity: sha1-anqvg4x/BoalC0VT9+VKlklOifA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-number-object/download/is-number-object-1.0.6.tgz?cache=0&sync_timestamp=1628222144915&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-number-object%2Fdownload%2Fis-number-object-1.0.6.tgz}
name: is-number-object
version: 1.0.6
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0
dev: true
registry.nlark.com/is-regex/1.1.4:
resolution: {integrity: sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-regex/download/is-regex-1.1.4.tgz?cache=0&sync_timestamp=1628222145163&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.4.tgz}
name: is-regex
version: 1.1.4
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0
dev: true
registry.nlark.com/is-set/2.0.2:
resolution: {integrity: sha1-kHVfpMJWLcHF1AJHYNYRm5TKGOw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-set/download/is-set-2.0.2.tgz}
name: is-set
version: 2.0.2
dev: true
registry.nlark.com/is-string/1.0.7:
resolution: {integrity: sha1-DdEr8gBvJVu1j2lREO/3SR7rwP0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-string/download/is-string-1.0.7.tgz?cache=0&sync_timestamp=1628216662606&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-string%2Fdownload%2Fis-string-1.0.7.tgz}
name: is-string
version: 1.0.7
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0
dev: true
registry.nlark.com/is-symbol/1.0.4:
resolution: {integrity: sha1-ptrJO2NbBjymhyI23oiRClevE5w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-symbol/download/is-symbol-1.0.4.tgz}
name: is-symbol
version: 1.0.4
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.2
dev: true
registry.nlark.com/is-typed-array/1.1.7:
resolution: {integrity: sha1-iB3cZgsTy4QjsgkPqIwP43qD6y8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-typed-array/download/is-typed-array-1.1.7.tgz}
name: is-typed-array
version: 1.1.7
engines: {node: '>= 0.4'}
dependencies:
available-typed-arrays: registry.nlark.com/available-typed-arrays/1.0.4
call-bind: 1.0.2
es-abstract: registry.nlark.com/es-abstract/1.18.5
foreach: registry.nlark.com/foreach/2.0.5
has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0
dev: true
registry.nlark.com/is-weakmap/2.0.1:
resolution: {integrity: sha1-UAi1m9xDtpggHRj2KzeyyiQ+jPI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-weakmap/download/is-weakmap-2.0.1.tgz}
name: is-weakmap
version: 2.0.1
dev: true
registry.nlark.com/is-weakset/2.0.1:
resolution: {integrity: sha1-6aCviNvXUVifXlDYD0yYt4CIT4M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/is-weakset/download/is-weakset-2.0.1.tgz}
name: is-weakset
version: 2.0.1
dev: true
registry.nlark.com/jest-diff/26.6.2:
resolution: {integrity: sha1-GqdGi1LDpo19XF/c381eSb0WQ5Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jest-diff/download/jest-diff-26.6.2.tgz?cache=0&sync_timestamp=1624957524230&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-diff%2Fdownload%2Fjest-diff-26.6.2.tgz}
name: jest-diff
version: 26.6.2
engines: {node: '>= 10.14.2'}
dependencies:
chalk: registry.nlark.com/chalk/4.1.2
diff-sequences: registry.nlark.com/diff-sequences/26.6.2
jest-get-type: registry.nlark.com/jest-get-type/26.3.0
pretty-format: registry.nlark.com/pretty-format/26.6.2
dev: false
registry.nlark.com/jest-get-type/26.3.0:
resolution: {integrity: sha1-6X3Dw/U8K0Bsp6+u1Ek7HQmRmeA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jest-get-type/download/jest-get-type-26.3.0.tgz}
name: jest-get-type
version: 26.3.0
engines: {node: '>= 10.14.2'}
dev: false
registry.nlark.com/jiti/1.11.0:
resolution: {integrity: sha1-ZBIKMNl7m/N7iwMs9FZN+twomEw=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jiti/download/jiti-1.11.0.tgz}
name: jiti
version: 1.11.0
hasBin: true
dev: true
registry.nlark.com/jsonc-eslint-parser/1.2.0:
resolution: {integrity: sha1-XYHaOg1rHIx3tb4YaF6VeIcqfmg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/jsonc-eslint-parser/download/jsonc-eslint-parser-1.2.0.tgz}
name: jsonc-eslint-parser
version: 1.2.0
engines: {node: '>=8.10.0'}
dependencies:
eslint-utils: registry.nlark.com/eslint-utils/3.0.0
eslint-visitor-keys: registry.nlark.com/eslint-visitor-keys/3.0.0
espree: registry.nlark.com/espree/7.3.1
semver: registry.nlark.com/semver/6.3.0
transitivePeerDependencies:
- eslint
dev: true
registry.nlark.com/lodash-es/4.17.21:
resolution: {integrity: sha1-Q+YmxG5lkbd1C+srUBFzkMYJ4+4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/lodash-es/download/lodash-es-4.17.21.tgz}
name: lodash-es
version: 4.17.21
dev: false
registry.nlark.com/mitt/2.1.0:
resolution: {integrity: sha1-90BXfCMXbGIFsSGylzUU6t4bIjA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/mitt/download/mitt-2.1.0.tgz}
name: mitt
version: 2.1.0
dev: false
registry.nlark.com/naive-ui/2.16.5_vue@3.2.4:
resolution: {integrity: sha1-Tp5j3RgD3+ipqC0KR9ZvSWgiJSQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/naive-ui/download/naive-ui-2.16.5.tgz}
id: registry.nlark.com/naive-ui/2.16.5
name: naive-ui
version: 2.16.5
peerDependencies:
vue: ^3.0.0
dependencies:
'@css-render/plugin-bem': registry.nlark.com/@css-render/plugin-bem/0.15.5
'@css-render/vue3-ssr': registry.nlark.com/@css-render/vue3-ssr/0.15.5_vue@3.2.4
'@types/lodash': registry.nlark.com/@types/lodash/4.14.172
'@types/lodash-es': registry.nlark.com/@types/lodash-es/4.17.4
async-validator: registry.nlark.com/async-validator/4.0.2
css-render: registry.nlark.com/css-render/0.15.5
date-fns: registry.nlark.com/date-fns/2.23.0
evtd: registry.nlark.com/evtd/0.2.2
highlight.js: registry.nlark.com/highlight.js/11.2.0
lodash: 4.17.21
lodash-es: registry.nlark.com/lodash-es/4.17.21
seemly: registry.nlark.com/seemly/0.3.1
treemate: registry.nlark.com/treemate/0.3.2
vdirs: registry.nlark.com/vdirs/0.1.4_vue@3.2.4
vfonts: registry.nlark.com/vfonts/0.1.0
vooks: registry.nlark.com/vooks/0.2.8_vue@3.2.4
vue: registry.nlark.com/vue/3.2.4
vueuc: registry.nlark.com/vueuc/0.4.10_40aa6ddc39895f444e6b44d47c0da1ac
dev: false
registry.nlark.com/nanoid/3.1.25:
resolution: {integrity: sha1-CcoydHwOVD8OGBS303k0d/nI4VI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/nanoid/download/nanoid-3.1.25.tgz}
name: nanoid
version: 3.1.25
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
dev: true
registry.nlark.com/normalize-wheel/1.0.1:
resolution: {integrity: sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/normalize-wheel/download/normalize-wheel-1.0.1.tgz}
name: normalize-wheel
version: 1.0.1
dev: false
registry.nlark.com/object-inspect/1.11.0:
resolution: {integrity: sha1-nc6xRs7dQUig2eUauI00z1CZIrE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object-inspect/download/object-inspect-1.11.0.tgz}
name: object-inspect
version: 1.11.0
dev: true
registry.nlark.com/object-is/1.1.5:
resolution: {integrity: sha1-ud7qpfx/GEag+uzc7sE45XePU6w=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/object-is/download/object-is-1.1.5.tgz}
name: object-is
version: 1.1.5
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.3
dev: true
registry.nlark.com/path-parse/1.0.7:
resolution: {integrity: sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz?cache=0&sync_timestamp=1621947899252&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpath-parse%2Fdownload%2Fpath-parse-1.0.7.tgz}
name: path-parse
version: 1.0.7
dev: true
registry.nlark.com/picomatch/2.3.0:
resolution: {integrity: sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621654648049&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz}
name: picomatch
version: 2.3.0
engines: {node: '>=8.6'}
dev: true
registry.nlark.com/postcss-modules/4.2.2_postcss@8.3.6:
resolution: {integrity: sha1-Xnd3xaiWTqF2kZ2QsuVO+JEyHOU=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-modules/download/postcss-modules-4.2.2.tgz}
id: registry.nlark.com/postcss-modules/4.2.2
name: postcss-modules
version: 4.2.2
peerDependencies:
postcss: ^8.0.0
dependencies:
generic-names: 2.0.1
icss-replace-symbols: registry.nlark.com/icss-replace-symbols/1.1.0
lodash.camelcase: 4.3.0
postcss: registry.nlark.com/postcss/8.3.6
postcss-modules-extract-imports: 3.0.0_postcss@8.3.6
postcss-modules-local-by-default: 4.0.0_postcss@8.3.6
postcss-modules-scope: 3.0.0_postcss@8.3.6
postcss-modules-values: 4.0.0_postcss@8.3.6
string-hash: registry.nlark.com/string-hash/1.1.3
dev: true
registry.nlark.com/postcss-selector-parser/6.0.6:
resolution: {integrity: sha1-LFu6gXSsL2mBq2MaQqsO5UrzMuo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz}
name: postcss-selector-parser
version: 6.0.6
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
dev: true
registry.nlark.com/postcss/8.3.6:
resolution: {integrity: sha1-JzDddql5afN/U7mmCWGXvjEcxOo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/postcss/download/postcss-8.3.6.tgz}
name: postcss
version: 8.3.6
engines: {node: ^10 || ^12 || >=14}
dependencies:
colorette: registry.nlark.com/colorette/1.3.0
nanoid: registry.nlark.com/nanoid/3.1.25
source-map-js: registry.nlark.com/source-map-js/0.6.2
dev: true
registry.nlark.com/pretty-format/26.6.2:
resolution: {integrity: sha1-41wnBfFMt/4v6U+geDRbREEg/JM=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/pretty-format/download/pretty-format-26.6.2.tgz?cache=0&sync_timestamp=1624956710981&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-26.6.2.tgz}
name: pretty-format
version: 26.6.2
engines: {node: '>= 10'}
dependencies:
'@jest/types': registry.nlark.com/@jest/types/26.6.2
ansi-regex: 5.0.0
ansi-styles: registry.nlark.com/ansi-styles/4.3.0
react-is: registry.nlark.com/react-is/17.0.2
dev: false
registry.nlark.com/promise-file-reader/1.0.3:
resolution: {integrity: sha1-8YqYMVAHfHo00TVNpYE9TzWq6uk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/promise-file-reader/download/promise-file-reader-1.0.3.tgz}
name: promise-file-reader
version: 1.0.3
dev: false
registry.nlark.com/react-is/17.0.2:
resolution: {integrity: sha1-5pHUqOnHiTZWVVOas3J2Kw77VPA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/react-is/download/react-is-17.0.2.tgz}
name: react-is
version: 17.0.2
dev: false
registry.nlark.com/rollup/2.56.2:
resolution: {integrity: sha1-oEX/P2r1PuAJtfUBbKPaAynlRw8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/rollup/download/rollup-2.56.2.tgz?cache=0&sync_timestamp=1628599813130&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frollup%2Fdownload%2Frollup-2.56.2.tgz}
name: rollup
version: 2.56.2
engines: {node: '>=10.0.0'}
hasBin: true
optionalDependencies:
fsevents: 2.3.2
dev: true
registry.nlark.com/sass/1.38.0:
resolution: {integrity: sha1-Lz5goe/c3JEFhvp53InTOZoUW08=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sass/download/sass-1.38.0.tgz}
name: sass
version: 1.38.0
engines: {node: '>=8.9.0'}
hasBin: true
dependencies:
chokidar: registry.nlark.com/chokidar/3.5.2
dev: true
registry.nlark.com/seemly/0.3.1:
resolution: {integrity: sha1-vLQ51+OZp8xUbKhsMdJDKMw5RMo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/seemly/download/seemly-0.3.1.tgz}
name: seemly
version: 0.3.1
dependencies:
'@types/jest': registry.nlark.com/@types/jest/26.0.24
dev: false
registry.nlark.com/semver/6.3.0:
resolution: {integrity: sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/semver/download/semver-6.3.0.tgz}
name: semver
version: 6.3.0
hasBin: true
dev: true
registry.nlark.com/sortablejs/1.10.2:
resolution: {integrity: sha1-bkA2TZE/mLhaFPZnj5K1wSIfUpA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/sortablejs/download/sortablejs-1.10.2.tgz}
name: sortablejs
version: 1.10.2
dev: false
registry.nlark.com/source-map-js/0.6.2:
resolution: {integrity: sha1-C7XeYxtBz72mz7qL0FqA79/SOF4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/source-map-js/download/source-map-js-0.6.2.tgz?cache=0&sync_timestamp=1621571118211&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsource-map-js%2Fdownload%2Fsource-map-js-0.6.2.tgz}
name: source-map-js
version: 0.6.2
engines: {node: '>=0.10.0'}
dev: true
registry.nlark.com/string-hash/1.1.3:
resolution: {integrity: sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/string-hash/download/string-hash-1.1.3.tgz}
name: string-hash
version: 1.1.3
dev: true
registry.nlark.com/supports-color/7.2.0:
resolution: {integrity: sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1626703508574&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz}
name: supports-color
version: 7.2.0
engines: {node: '>=8'}
dependencies:
has-flag: registry.nlark.com/has-flag/4.0.0
registry.nlark.com/to-fast-properties/2.0.0:
resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz}
name: to-fast-properties
version: 2.0.0
engines: {node: '>=4'}
registry.nlark.com/treemate/0.3.2:
resolution: {integrity: sha1-rU8wcuUaqygBaX7CCkZ+vgGIQHA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/treemate/download/treemate-0.3.2.tgz}
name: treemate
version: 0.3.2
dev: false
registry.nlark.com/vdirs/0.1.4_vue@3.2.4:
resolution: {integrity: sha1-xMD/hs9H/tA95fhp4mUxHvGIq3Q=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vdirs/download/vdirs-0.1.4.tgz}
id: registry.nlark.com/vdirs/0.1.4
name: vdirs
version: 0.1.4
peerDependencies:
vue: ^3.0.11
dependencies:
'@types/node': registry.nlark.com/@types/node/14.17.11
evtd: registry.nlark.com/evtd/0.2.2
vue: registry.nlark.com/vue/3.2.4
dev: false
registry.nlark.com/vfonts/0.1.0:
resolution: {integrity: sha1-wWrzfKBEsnJa5VVTBJKA775iIqk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vfonts/download/vfonts-0.1.0.tgz}
name: vfonts
version: 0.1.0
dev: false
registry.nlark.com/vite-plugin-components/0.12.2_vite@2.5.0:
resolution: {integrity: sha1-OvyXdyz60L1hqnCZJL8G4Sq+nPE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vite-plugin-components/download/vite-plugin-components-0.12.2.tgz}
id: registry.nlark.com/vite-plugin-components/0.12.2
name: vite-plugin-components
version: 0.12.2
peerDependencies:
vite: ^2.0.0
dependencies:
debug: registry.nlark.com/debug/4.3.2
fast-glob: registry.nlark.com/fast-glob/3.2.7
magic-string: 0.25.7
minimatch: 3.0.4
vite: registry.nlark.com/vite/2.5.0
dev: true
registry.nlark.com/vite-plugin-pages/0.14.9_vite@2.5.0:
resolution: {integrity: sha1-0BkSm99c3mczEiF/KRwEAyJi4dk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vite-plugin-pages/download/vite-plugin-pages-0.14.9.tgz}
id: registry.nlark.com/vite-plugin-pages/0.14.9
name: vite-plugin-pages
version: 0.14.9
peerDependencies:
vite: ^2.0.0
dependencies:
'@antfu/utils': registry.nlark.com/@antfu/utils/0.2.4
deep-equal: 2.0.5
fast-glob: registry.nlark.com/fast-glob/3.2.7
json5: 2.2.0
vite: registry.nlark.com/vite/2.5.0
yaml: registry.nlark.com/yaml/2.0.0-7
dev: true
registry.nlark.com/vite-plugin-vue-layouts/0.3.1_vite@2.5.0:
resolution: {integrity: sha1-B4I5CZX40+0cehsC46NVIqZ297U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vite-plugin-vue-layouts/download/vite-plugin-vue-layouts-0.3.1.tgz}
id: registry.nlark.com/vite-plugin-vue-layouts/0.3.1
name: vite-plugin-vue-layouts
version: 0.3.1
peerDependencies:
vite: ^2.2.3
dependencies:
'@vue/compiler-sfc': registry.nlark.com/@vue/compiler-sfc/3.2.4
debug: registry.nlark.com/debug/4.3.2
fast-glob: registry.nlark.com/fast-glob/3.2.7
vite: registry.nlark.com/vite/2.5.0
vue: registry.nlark.com/vue/3.2.4
vue-router: registry.nlark.com/vue-router/4.0.11_vue@3.2.4
dev: true
registry.nlark.com/vite-plugin-windicss/1.2.7_vite@2.5.0:
resolution: {integrity: sha1-kmcex5WrGopOUgr/gResFMBNMS8=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vite-plugin-windicss/download/vite-plugin-windicss-1.2.7.tgz}
id: registry.nlark.com/vite-plugin-windicss/1.2.7
name: vite-plugin-windicss
version: 1.2.7
peerDependencies:
vite: ^2.0.1
dependencies:
'@windicss/plugin-utils': registry.nlark.com/@windicss/plugin-utils/1.2.7
chalk: registry.nlark.com/chalk/4.1.2
debug: registry.nlark.com/debug/4.3.2
vite: registry.nlark.com/vite/2.5.0
windicss: registry.nlark.com/windicss/3.1.7
dev: true
registry.nlark.com/vite/2.5.0:
resolution: {integrity: sha1-ERujZ5Qy1CbkRWas9IAAWnkUy9Y=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vite/download/vite-2.5.0.tgz}
name: vite
version: 2.5.0
engines: {node: '>=12.2.0'}
hasBin: true
dependencies:
esbuild: registry.nlark.com/esbuild/0.12.22
postcss: registry.nlark.com/postcss/8.3.6
resolve: 1.20.0
rollup: registry.nlark.com/rollup/2.56.2
optionalDependencies:
fsevents: 2.3.2
dev: true
registry.nlark.com/vooks/0.2.8_vue@3.2.4:
resolution: {integrity: sha1-+tanjHLjlEPlYoUzewhDuq7tDz4=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vooks/download/vooks-0.2.8.tgz}
id: registry.nlark.com/vooks/0.2.8
name: vooks
version: 0.2.8
peerDependencies:
vue: ^3.0.0
dependencies:
evtd: registry.nlark.com/evtd/0.2.2
vue: registry.nlark.com/vue/3.2.4
dev: false
registry.nlark.com/vue-demi/0.11.3_vue@3.2.4:
resolution: {integrity: sha1-3XSVuStJXs+jVnW/AksTWKet0VA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vue-demi/download/vue-demi-0.11.3.tgz}
id: registry.nlark.com/vue-demi/0.11.3
name: vue-demi
version: 0.11.3
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
peerDependencies:
'@vue/composition-api': ^1.0.0-rc.1
vue: ^3.0.0-0 || ^2.6.0
dependencies:
vue: registry.nlark.com/vue/3.2.4
dev: false
registry.nlark.com/vue-i18n/9.1.7_vue@3.2.4:
resolution: {integrity: sha1-byjdITUZcGZQji5lqyBKAZdQ13M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vue-i18n/download/vue-i18n-9.1.7.tgz}
id: registry.nlark.com/vue-i18n/9.1.7
name: vue-i18n
version: 9.1.7
engines: {node: '>= 10'}
peerDependencies:
vue: ^3.0.0
dependencies:
'@intlify/core-base': registry.nlark.com/@intlify/core-base/9.1.7
'@intlify/shared': registry.nlark.com/@intlify/shared/9.1.7
'@intlify/vue-devtools': registry.nlark.com/@intlify/vue-devtools/9.1.7
'@vue/devtools-api': registry.nlark.com/@vue/devtools-api/6.0.0-beta.15
vue: registry.nlark.com/vue/3.2.4
dev: false
registry.nlark.com/vue-router/4.0.11_vue@3.2.4:
resolution: {integrity: sha1-zWSaCUHGNSgXY6IJZbWZZD3caO0=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vue-router/download/vue-router-4.0.11.tgz}
id: registry.nlark.com/vue-router/4.0.11
name: vue-router
version: 4.0.11
peerDependencies:
vue: ^3.0.0
dependencies:
'@vue/devtools-api': registry.nlark.com/@vue/devtools-api/6.0.0-beta.15
vue: registry.nlark.com/vue/3.2.4
registry.nlark.com/vue/3.2.4:
resolution: {integrity: sha1-2U2IZ15BwFDTpyLQhIpwY7XoemA=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vue/download/vue-3.2.4.tgz}
name: vue
version: 3.2.4
dependencies:
'@vue/compiler-dom': registry.nlark.com/@vue/compiler-dom/3.2.4
'@vue/runtime-dom': registry.nlark.com/@vue/runtime-dom/3.2.4
'@vue/shared': registry.nlark.com/@vue/shared/3.2.4
registry.nlark.com/vuedraggable/4.0.3_vue@3.2.4:
resolution: {integrity: sha1-mIMqNWLUTHO75OIFzC2vzge2yhQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vuedraggable/download/vuedraggable-4.0.3.tgz}
id: registry.nlark.com/vuedraggable/4.0.3
name: vuedraggable
version: 4.0.3
peerDependencies:
vue: ^3.0.1
dependencies:
sortablejs: registry.nlark.com/sortablejs/1.10.2
vue: registry.nlark.com/vue/3.2.4
dev: false
registry.nlark.com/vueuc/0.4.10_40aa6ddc39895f444e6b44d47c0da1ac:
resolution: {integrity: sha1-ria6dqCvFU+KE57zcYE1osat9nY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vueuc/download/vueuc-0.4.10.tgz}
id: registry.nlark.com/vueuc/0.4.10
name: vueuc
version: 0.4.10
peerDependencies:
'@css-render/vue3-ssr': ^0.15.3
vue: ^3.0.11
dependencies:
'@css-render/vue3-ssr': registry.nlark.com/@css-render/vue3-ssr/0.15.5_vue@3.2.4
css-render: registry.nlark.com/css-render/0.15.5
evtd: registry.nlark.com/evtd/0.2.2
resize-observer-polyfill: 1.5.1
seemly: registry.nlark.com/seemly/0.3.1
vdirs: registry.nlark.com/vdirs/0.1.4_vue@3.2.4
vooks: registry.nlark.com/vooks/0.2.8_vue@3.2.4
vue: registry.nlark.com/vue/3.2.4
dev: false
registry.nlark.com/vuex/4.0.2_vue@3.2.4:
resolution: {integrity: sha1-+Jbb1b8qDpY/AMZ+m2EN50nMrMk=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/vuex/download/vuex-4.0.2.tgz}
id: registry.nlark.com/vuex/4.0.2
name: vuex
version: 4.0.2
peerDependencies:
vue: ^3.0.2
dependencies:
'@vue/devtools-api': registry.nlark.com/@vue/devtools-api/6.0.0-beta.15
vue: registry.nlark.com/vue/3.2.4
dev: false
registry.nlark.com/which-boxed-primitive/1.0.2:
resolution: {integrity: sha1-E3V7yJsgmwSf5dhkMOIc9AqJqOY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/which-boxed-primitive/download/which-boxed-primitive-1.0.2.tgz}
name: which-boxed-primitive
version: 1.0.2
dependencies:
is-bigint: registry.nlark.com/is-bigint/1.0.4
is-boolean-object: registry.nlark.com/is-boolean-object/1.1.2
is-number-object: registry.nlark.com/is-number-object/1.0.6
is-string: registry.nlark.com/is-string/1.0.7
is-symbol: registry.nlark.com/is-symbol/1.0.4
dev: true
registry.nlark.com/which-collection/1.0.1:
resolution: {integrity: sha1-cOq3Hru9Ku+vMvkXCC/GLNy3CQY=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/which-collection/download/which-collection-1.0.1.tgz}
name: which-collection
version: 1.0.1
dependencies:
is-map: registry.nlark.com/is-map/2.0.2
is-set: registry.nlark.com/is-set/2.0.2
is-weakmap: registry.nlark.com/is-weakmap/2.0.1
is-weakset: registry.nlark.com/is-weakset/2.0.1
dev: true
registry.nlark.com/which-typed-array/1.1.6:
resolution: {integrity: sha1-83E9gB2gcgp/JvUMWWmAqfXIs4M=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/which-typed-array/download/which-typed-array-1.1.6.tgz}
name: which-typed-array
version: 1.1.6
engines: {node: '>= 0.4'}
dependencies:
available-typed-arrays: registry.nlark.com/available-typed-arrays/1.0.4
call-bind: 1.0.2
es-abstract: registry.nlark.com/es-abstract/1.18.5
foreach: registry.nlark.com/foreach/2.0.5
has-tostringtag: registry.nlark.com/has-tostringtag/1.0.0
is-typed-array: registry.nlark.com/is-typed-array/1.1.7
dev: true
registry.nlark.com/windicss/3.1.7:
resolution: {integrity: sha1-ijuKB+2XwsE1Sm4xgg2AWdo19yQ=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/windicss/download/windicss-3.1.7.tgz}
name: windicss
version: 3.1.7
engines: {node: '>= 12'}
hasBin: true
dev: true
registry.nlark.com/yaml-eslint-parser/0.3.2:
resolution: {integrity: sha1-x/XzkE8cBq1V3HExpzGwGEJrSJg=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yaml-eslint-parser/download/yaml-eslint-parser-0.3.2.tgz}
name: yaml-eslint-parser
version: 0.3.2
dependencies:
eslint-visitor-keys: registry.nlark.com/eslint-visitor-keys/1.3.0
lodash: 4.17.21
yaml: registry.nlark.com/yaml/1.10.2
dev: true
registry.nlark.com/yaml/1.10.2:
resolution: {integrity: sha1-IwHF/78StGfejaIzOkWeKeeSDks=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yaml/download/yaml-1.10.2.tgz}
name: yaml
version: 1.10.2
engines: {node: '>= 6'}
dev: true
registry.nlark.com/yaml/2.0.0-7:
resolution: {integrity: sha1-l5nZ2F38jwHkzEJeGOCSFTZL7vE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/yaml/download/yaml-2.0.0-7.tgz}
name: yaml
version: 2.0.0-7
engines: {node: '>= 12'}
dev: true
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化