123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073 |
- # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
- # yarn lockfile v1
- "@ant-design/colors@^5.0.0":
- version "5.1.1"
- resolved "https://registry.nlark.com/@ant-design/colors/download/@ant-design/colors-5.1.1.tgz#800b2186b1e27e66432e67d03ed96af3e21d8940"
- integrity sha1-gAshhrHifmZDLmfQPtlq8+IdiUA=
- dependencies:
- "@ctrl/tinycolor" "^3.3.1"
- "@ant-design/icons-svg@^4.0.0":
- version "4.1.0"
- resolved "https://registry.nlark.com/@ant-design/icons-svg/download/@ant-design/icons-svg-4.1.0.tgz#480b025f4b20ef7fe8f47d4a4846e4fee84ea06c"
- integrity sha1-SAsCX0sg73/o9H1KSEbk/uhOoGw=
- "@ant-design/icons-vue@^6.0.0":
- version "6.0.1"
- resolved "https://registry.nlark.com/@ant-design/icons-vue/download/@ant-design/icons-vue-6.0.1.tgz#9d804c3c74d2cfaf97cb18e582d3b9400934f5fd"
- integrity sha1-nYBMPHTSz6+XyxjlgtO5QAk09f0=
- dependencies:
- "@ant-design/colors" "^5.0.0"
- "@ant-design/icons-svg" "^4.0.0"
- "@types/lodash" "^4.14.165"
- lodash "^4.17.15"
- "@babel/code-frame@^7.0.0":
- version "7.14.5"
- resolved "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623280394200&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb"
- integrity sha1-I7CNdA6D9JxeWZRfvxtD6Au/Tts=
- dependencies:
- "@babel/highlight" "^7.14.5"
- "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9":
- version "7.14.9"
- resolved "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.9.tgz?cache=0&sync_timestamp=1627804430461&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.14.9.tgz#6654d171b2024f6d8ee151bf2509699919131d48"
- integrity sha1-ZlTRcbICT22O4VG/JQlpmRkTHUg=
- "@babel/highlight@^7.14.5":
- version "7.14.5"
- resolved "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz?cache=0&sync_timestamp=1623280393681&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9"
- integrity sha1-aGGlLwOWZAUAH2qlNKAaJNmejNk=
- dependencies:
- "@babel/helper-validator-identifier" "^7.14.5"
- chalk "^2.0.0"
- js-tokens "^4.0.0"
- "@babel/parser@^7.15.0", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6":
- version "7.15.6"
- resolved "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.15.6.tgz?cache=0&sync_timestamp=1631216210940&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.15.6.tgz#043b9aa3c303c0722e5377fef9197f4cf1796549"
- integrity sha1-BDuao8MDwHIuU3f++Rl/TPF5ZUk=
- "@babel/runtime@^7.10.5":
- version "7.15.4"
- resolved "https://registry.nlark.com/@babel/runtime/download/@babel/runtime-7.15.4.tgz?cache=0&sync_timestamp=1630618785994&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a"
- integrity sha1-/RfRa/34eObdAtGXU6OfqKjZyEo=
- dependencies:
- regenerator-runtime "^0.13.4"
- "@babel/types@^7.15.0", "@babel/types@^7.6.1", "@babel/types@^7.9.6":
- version "7.15.6"
- resolved "https://registry.nlark.com/@babel/types/download/@babel/types-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f"
- integrity sha1-mavcSCGLKIHAWN0KerBbmcm+dY8=
- dependencies:
- "@babel/helper-validator-identifier" "^7.14.9"
- to-fast-properties "^2.0.0"
- "@ctrl/tinycolor@^3.3.1":
- version "3.4.0"
- resolved "https://registry.nlark.com/@ctrl/tinycolor/download/@ctrl/tinycolor-3.4.0.tgz#c3c5ae543c897caa9c2a68630bed355be5f9990f"
- integrity sha1-w8WuVDyJfKqcKmhjC+01W+X5mQ8=
- "@emmetio/abbreviation@^2.2.2":
- version "2.2.2"
- resolved "https://registry.nlark.com/@emmetio/abbreviation/download/@emmetio/abbreviation-2.2.2.tgz#746762fd9e7a8c2ea604f580c62e3cfe250e6989"
- integrity sha1-dGdi/Z56jC6mBPWAxi48/iUOaYk=
- dependencies:
- "@emmetio/scanner" "^1.0.0"
- "@emmetio/css-abbreviation@^2.1.4":
- version "2.1.4"
- resolved "https://registry.nlark.com/@emmetio/css-abbreviation/download/@emmetio/css-abbreviation-2.1.4.tgz#90362e8a1122ce3b76f6c3157907d30182f53f54"
- integrity sha1-kDYuihEizjt29sMVeQfTAYL1P1Q=
- dependencies:
- "@emmetio/scanner" "^1.0.0"
- "@emmetio/scanner@^1.0.0":
- version "1.0.0"
- resolved "https://registry.nlark.com/@emmetio/scanner/download/@emmetio/scanner-1.0.0.tgz#065b2af6233fe7474d44823e3deb89724af42b5f"
- integrity sha1-Blsq9iM/50dNRII+PeuJckr0K18=
- "@nodelib/fs.scandir@2.1.5":
- version "2.1.5"
- resolved "https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
- integrity sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=
- dependencies:
- "@nodelib/fs.stat" "2.0.5"
- run-parallel "^1.1.9"
- "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
- version "2.0.5"
- resolved "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.5.tgz?cache=0&sync_timestamp=1622792655362&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.stat%2Fdownload%2F%40nodelib%2Ffs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
- integrity sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=
- "@nodelib/fs.walk@^1.2.3":
- version "1.2.8"
- resolved "https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.8.tgz?cache=0&sync_timestamp=1625769815389&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.walk%2Fdownload%2F%40nodelib%2Ffs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
- integrity sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=
- dependencies:
- "@nodelib/fs.scandir" "2.1.5"
- fastq "^1.6.0"
- "@rollup/pluginutils@^4.1.1":
- version "4.1.1"
- resolved "https://registry.nlark.com/@rollup/pluginutils/download/@rollup/pluginutils-4.1.1.tgz?cache=0&sync_timestamp=1626393703548&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40rollup%2Fpluginutils%2Fdownload%2F%40rollup%2Fpluginutils-4.1.1.tgz#1d4da86dd4eded15656a57d933fda2b9a08d47ec"
- integrity sha1-HU2obdTt7RVlalfZM/2iuaCNR+w=
- dependencies:
- estree-walker "^2.0.1"
- picomatch "^2.2.2"
- "@simonwep/pickr@~1.8.0":
- version "1.8.2"
- resolved "https://registry.nlark.com/@simonwep/pickr/download/@simonwep/pickr-1.8.2.tgz#96dc86675940d7cad63d69c22083dd1cbb9797cb"
- integrity sha1-ltyGZ1lA18rWPWnCIIPdHLuXl8s=
- dependencies:
- core-js "^3.15.1"
- nanopop "^2.1.0"
- "@types/estree@^0.0.48":
- version "0.0.48"
- resolved "https://registry.nlark.com/@types/estree/download/@types/estree-0.0.48.tgz?cache=0&sync_timestamp=1629707624966&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Festree%2Fdownload%2F%40types%2Festree-0.0.48.tgz#18dc8091b285df90db2f25aa7d906cfc394b7f74"
- integrity sha1-GNyAkbKF35DbLyWqfZBs/DlLf3Q=
- "@types/lodash-es@^4.17.4":
- version "4.17.5"
- resolved "https://registry.nlark.com/@types/lodash-es/download/@types/lodash-es-4.17.5.tgz?cache=0&sync_timestamp=1631454134838&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Flodash-es%2Fdownload%2F%40types%2Flodash-es-4.17.5.tgz#1c3fdd16849d84aea43890b1c60da379fb501353"
- integrity sha1-HD/dFoSdhK6kOJCxxg2jeftQE1M=
- dependencies:
- "@types/lodash" "*"
- "@types/lodash@*", "@types/lodash@^4.14.165":
- version "4.14.173"
- resolved "https://registry.nlark.com/@types/lodash/download/@types/lodash-4.14.173.tgz#9d3b674c67a26cf673756f6aca7b429f237f91ed"
- integrity sha1-nTtnTGeibPZzdW9qyntCnyN/ke0=
- "@types/node@^16.7.11":
- version "16.9.2"
- resolved "https://registry.nlark.com/@types/node/download/@types/node-16.9.2.tgz?cache=0&sync_timestamp=1631828244883&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnode%2Fdownload%2F%40types%2Fnode-16.9.2.tgz#81f5a039d6ed1941f8cc57506c74e7c2b8fc64b9"
- integrity sha1-gfWgOdbtGUH4zFdQbHTnwrj8ZLk=
- "@types/parse-json@^4.0.0":
- version "4.0.0"
- resolved "https://registry.nlark.com/@types/parse-json/download/@types/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
- integrity sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=
- "@types/ua-parser-js@^0.7.36":
- version "0.7.36"
- resolved "https://registry.nlark.com/@types/ua-parser-js/download/@types/ua-parser-js-0.7.36.tgz?cache=0&sync_timestamp=1629709763890&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fua-parser-js%2Fdownload%2F%40types%2Fua-parser-js-0.7.36.tgz#9bd0b47f26b5a3151be21ba4ce9f5fa457c5f190"
- integrity sha1-m9C0fya1oxUb4hukzp9fpFfF8ZA=
- "@vitejs/plugin-vue@^1.6.1":
- version "1.6.2"
- resolved "https://registry.nlark.com/@vitejs/plugin-vue/download/@vitejs/plugin-vue-1.6.2.tgz?cache=0&sync_timestamp=1631112608870&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vitejs%2Fplugin-vue%2Fdownload%2F%40vitejs%2Fplugin-vue-1.6.2.tgz#40dfe314cff610d4dd027a0b4ea2a93a257f3fc9"
- integrity sha1-QN/jFM/2ENTdAnoLTqKpOiV/P8k=
- "@volar/code-gen@^0.27.14":
- version "0.27.14"
- resolved "https://registry.nlark.com/@volar/code-gen/download/@volar/code-gen-0.27.14.tgz#fea4bde0c05b81f22e16185e01ecb6fedd842e05"
- integrity sha1-/qS94MBbgfIuFhheAey2/t2ELgU=
- dependencies:
- "@volar/shared" "^0.27.14"
- "@volar/source-map" "^0.27.14"
- "@volar/html2pug@^0.27.13":
- version "0.27.13"
- resolved "https://registry.nlark.com/@volar/html2pug/download/@volar/html2pug-0.27.13.tgz#48dfa73ecf1ef1955a02a046d0c88845950fac85"
- integrity sha1-SN+nPs8e8ZVaAqBG0MiIRZUPrIU=
- dependencies:
- domelementtype "^2.2.0"
- domhandler "^4.2.0"
- htmlparser2 "^6.1.0"
- pug "^3.0.2"
- "@volar/shared@^0.27.14":
- version "0.27.14"
- resolved "https://registry.nlark.com/@volar/shared/download/@volar/shared-0.27.14.tgz#d98f2b0b890e315cc20b4edb5e1ffbe8aad2297a"
- integrity sha1-2Y8rC4kOMVzCC07bXh/76KrSKXo=
- dependencies:
- upath "^2.0.1"
- vscode-jsonrpc "^8.0.0-next.2"
- vscode-uri "^3.0.2"
- "@volar/source-map@^0.27.14":
- version "0.27.14"
- resolved "https://registry.nlark.com/@volar/source-map/download/@volar/source-map-0.27.14.tgz#0b5656f74b5a85887efec97ea112caad9cc52a97"
- integrity sha1-C1ZW90tahYh+/sl+oRLKrZzFKpc=
- dependencies:
- "@volar/shared" "^0.27.14"
- "@volar/transforms@^0.27.14":
- version "0.27.14"
- resolved "https://registry.nlark.com/@volar/transforms/download/@volar/transforms-0.27.14.tgz#b796ddb844b6f9f5301f5941092f9ed95a2db12d"
- integrity sha1-t5bduES2+fUwH1lBCS+e2VotsS0=
- dependencies:
- "@volar/shared" "^0.27.14"
- vscode-languageserver "^8.0.0-next.2"
- "@vscode/emmet-helper@^2.7.0":
- version "2.7.0"
- resolved "https://registry.nlark.com/@vscode/emmet-helper/download/@vscode/emmet-helper-2.7.0.tgz?cache=0&sync_timestamp=1629028900459&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vscode%2Femmet-helper%2Fdownload%2F%40vscode%2Femmet-helper-2.7.0.tgz#3db485f6a650196ff8bbd38ba1b9e468ec8d22f8"
- integrity sha1-PbSF9qZQGW/4u9OLobnkaOyNIvg=
- dependencies:
- emmet "^2.3.0"
- jsonc-parser "^2.3.0"
- vscode-languageserver-textdocument "^1.0.1"
- vscode-languageserver-types "^3.15.1"
- vscode-nls "^5.0.0"
- vscode-uri "^2.1.2"
- "@vue/compiler-core@3.2.11":
- version "3.2.11"
- resolved "https://registry.nlark.com/@vue/compiler-core/download/@vue/compiler-core-3.2.11.tgz#10af3777dba303ee7aae668029f131cb90391bee"
- integrity sha1-EK83d9ujA+56rmaAKfExy5A5G+4=
- dependencies:
- "@babel/parser" "^7.15.0"
- "@babel/types" "^7.15.0"
- "@vue/shared" "3.2.11"
- estree-walker "^2.0.2"
- source-map "^0.6.1"
- "@vue/compiler-dom@3.2.11", "@vue/compiler-dom@^3.2.6":
- version "3.2.11"
- resolved "https://registry.nlark.com/@vue/compiler-dom/download/@vue/compiler-dom-3.2.11.tgz#d066f8e1f1812b4e881593819ade0fe6d654c776"
- integrity sha1-0Gb44fGBK06IFZOBmt4P5tZUx3Y=
- dependencies:
- "@vue/compiler-core" "3.2.11"
- "@vue/shared" "3.2.11"
- "@vue/compiler-sfc@^3.2.9":
- version "3.2.11"
- resolved "https://registry.nlark.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.2.11.tgz?cache=0&sync_timestamp=1631141970990&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-sfc%2Fdownload%2F%40vue%2Fcompiler-sfc-3.2.11.tgz#628fa12238760d9b9b339ac2e125a759224fadbf"
- integrity sha1-Yo+hIjh2DZubM5rC4SWnWSJPrb8=
- dependencies:
- "@babel/parser" "^7.15.0"
- "@babel/types" "^7.15.0"
- "@types/estree" "^0.0.48"
- "@vue/compiler-core" "3.2.11"
- "@vue/compiler-dom" "3.2.11"
- "@vue/compiler-ssr" "3.2.11"
- "@vue/ref-transform" "3.2.11"
- "@vue/shared" "3.2.11"
- 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 "^8.1.10"
- postcss-modules "^4.0.0"
- postcss-selector-parser "^6.0.4"
- source-map "^0.6.1"
- "@vue/compiler-ssr@3.2.11":
- version "3.2.11"
- resolved "https://registry.nlark.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.2.11.tgz?cache=0&sync_timestamp=1631141973699&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-ssr%2Fdownload%2F%40vue%2Fcompiler-ssr-3.2.11.tgz#702cef3429651645bdbe09fe5962803b5a621abb"
- integrity sha1-cCzvNCllFkW9vgn+WWKAO1piGrs=
- dependencies:
- "@vue/compiler-dom" "3.2.11"
- "@vue/shared" "3.2.11"
- "@vue/devtools-api@^6.0.0-beta.14":
- version "6.0.0-beta.15"
- resolved "https://registry.nlark.com/@vue/devtools-api/download/@vue/devtools-api-6.0.0-beta.15.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fdevtools-api%2Fdownload%2F%40vue%2Fdevtools-api-6.0.0-beta.15.tgz#ad7cb384e062f165bcf9c83732125bffbc2ad83d"
- integrity sha1-rXyzhOBi8WW8+cg3MhJb/7wq2D0=
- "@vue/reactivity@3.2.11", "@vue/reactivity@^3.2.6":
- version "3.2.11"
- resolved "https://registry.nlark.com/@vue/reactivity/download/@vue/reactivity-3.2.11.tgz?cache=0&sync_timestamp=1631141978411&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Freactivity%2Fdownload%2F%40vue%2Freactivity-3.2.11.tgz#ec04d33acaf2b92cca2960535bec81b26cc5772b"
- integrity sha1-7ATTOsryuSzKKWBTW+yBsmzFdys=
- dependencies:
- "@vue/shared" "3.2.11"
- "@vue/ref-transform@3.2.11":
- version "3.2.11"
- resolved "https://registry.nlark.com/@vue/ref-transform/download/@vue/ref-transform-3.2.11.tgz?cache=0&sync_timestamp=1631141975644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fref-transform%2Fdownload%2F%40vue%2Fref-transform-3.2.11.tgz#4d282b9570d1485a73e7bf5d57cce27b4a7aa690"
- integrity sha1-TSgrlXDRSFpz579dV8zie0p6ppA=
- dependencies:
- "@babel/parser" "^7.15.0"
- "@vue/compiler-core" "3.2.11"
- "@vue/shared" "3.2.11"
- estree-walker "^2.0.2"
- magic-string "^0.25.7"
- "@vue/runtime-core@3.2.11":
- version "3.2.11"
- resolved "https://registry.nlark.com/@vue/runtime-core/download/@vue/runtime-core-3.2.11.tgz?cache=0&sync_timestamp=1631141981931&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fruntime-core%2Fdownload%2F%40vue%2Fruntime-core-3.2.11.tgz#0dbe801be4bd0bfde253226797e7d304c8fdda30"
- integrity sha1-Db6AG+S9C/3iUyJnl+fTBMj92jA=
- dependencies:
- "@vue/reactivity" "3.2.11"
- "@vue/shared" "3.2.11"
- "@vue/runtime-dom@3.2.11":
- version "3.2.11"
- resolved "https://registry.nlark.com/@vue/runtime-dom/download/@vue/runtime-dom-3.2.11.tgz?cache=0&sync_timestamp=1631141984978&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fruntime-dom%2Fdownload%2F%40vue%2Fruntime-dom-3.2.11.tgz#04f9054a9e64bdf156c2fc22cad67cfaa8b84616"
- integrity sha1-BPkFSp5kvfFWwvwiytZ8+qi4RhY=
- dependencies:
- "@vue/runtime-core" "3.2.11"
- "@vue/shared" "3.2.11"
- csstype "^2.6.8"
- "@vue/shared@3.2.11", "@vue/shared@^3.2.6":
- version "3.2.11"
- resolved "https://registry.nlark.com/@vue/shared/download/@vue/shared-3.2.11.tgz#01899f54949caf1ac241de397bd17069632574de"
- integrity sha1-AYmfVJScrxrCQd45e9FwaWMldN4=
- acorn-node@^1.6.1:
- version "1.8.2"
- resolved "https://registry.npm.taobao.org/acorn-node/download/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8"
- integrity sha1-EUyV1kU55T3t4j3oudlt98euKvg=
- dependencies:
- acorn "^7.0.0"
- acorn-walk "^7.0.0"
- xtend "^4.0.2"
- acorn-walk@^7.0.0:
- version "7.2.0"
- resolved "https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz?cache=0&sync_timestamp=1630916588767&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn-walk%2Fdownload%2Facorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
- integrity sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w=
- acorn@^7.0.0, acorn@^7.1.1:
- version "7.4.1"
- resolved "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1630916517167&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
- integrity sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=
- ansi-styles@^3.2.1:
- version "3.2.1"
- resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
- integrity sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=
- dependencies:
- color-convert "^1.9.0"
- ansi-styles@^4.1.0:
- version "4.3.0"
- resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
- integrity sha1-7dgDYornHATIWuegkG7a00tkiTc=
- dependencies:
- color-convert "^2.0.1"
- ant-design-vue@2.2.6:
- version "2.2.6"
- resolved "https://registry.nlark.com/ant-design-vue/download/ant-design-vue-2.2.6.tgz?cache=0&sync_timestamp=1631110997919&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fant-design-vue%2Fdownload%2Fant-design-vue-2.2.6.tgz#2acf45ea8bb2bb8a0e48a83fa9c6a827fef5236f"
- integrity sha1-Ks9F6ouyu4oOSKg/qcaoJ/71I28=
- dependencies:
- "@ant-design/icons-vue" "^6.0.0"
- "@babel/runtime" "^7.10.5"
- "@simonwep/pickr" "~1.8.0"
- array-tree-filter "^2.1.0"
- async-validator "^3.3.0"
- dom-align "^1.12.1"
- dom-scroll-into-view "^2.0.0"
- lodash "^4.17.21"
- lodash-es "^4.17.15"
- moment "^2.27.0"
- omit.js "^2.0.0"
- resize-observer-polyfill "^1.5.1"
- scroll-into-view-if-needed "^2.2.25"
- shallow-equal "^1.0.0"
- vue-types "^3.0.0"
- warning "^4.0.0"
- anymatch@~3.1.2:
- version "3.1.2"
- resolved "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
- integrity sha1-wFV8CWrzLxBhmPT04qODU343hxY=
- dependencies:
- normalize-path "^3.0.0"
- picomatch "^2.0.4"
- arg@^5.0.1:
- version "5.0.1"
- resolved "https://registry.nlark.com/arg/download/arg-5.0.1.tgz?cache=0&sync_timestamp=1629166495886&other_urls=https%3A%2F%2Fregistry.nlark.com%2Farg%2Fdownload%2Farg-5.0.1.tgz#eb0c9a8f77786cad2af8ff2b862899842d7b6adb"
- integrity sha1-6wyaj3d4bK0q+P8rhiiZhC17ats=
- array-tree-filter@^2.1.0:
- version "2.1.0"
- resolved "https://registry.nlark.com/array-tree-filter/download/array-tree-filter-2.1.0.tgz#873ac00fec83749f255ac8dd083814b4f6329190"
- integrity sha1-hzrAD+yDdJ8lWsjdCDgUtPYykZA=
- asap@~2.0.3:
- version "2.0.6"
- resolved "https://registry.nlark.com/asap/download/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
- integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
- assert-never@^1.2.1:
- version "1.2.1"
- resolved "https://registry.npm.taobao.org/assert-never/download/assert-never-1.2.1.tgz#11f0e363bf146205fb08193b5c7b90f4d1cf44fe"
- integrity sha1-EfDjY78UYgX7CBk7XHuQ9NHPRP4=
- async-validator@^3.3.0:
- version "3.5.2"
- resolved "https://registry.nlark.com/async-validator/download/async-validator-3.5.2.tgz?cache=0&sync_timestamp=1630393210134&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fasync-validator%2Fdownload%2Fasync-validator-3.5.2.tgz#68e866a96824e8b2694ff7a831c1a25c44d5e500"
- integrity sha1-aOhmqWgk6LJpT/eoMcGiXETV5QA=
- autoprefixer@^10.3.4:
- version "10.3.4"
- resolved "https://registry.nlark.com/autoprefixer/download/autoprefixer-10.3.4.tgz#29efe5d19f51c281953178ddb5b84c5f1ca24c86"
- integrity sha1-Ke/l0Z9RwoGVMXjdtbhMXxyiTIY=
- dependencies:
- browserslist "^4.16.8"
- caniuse-lite "^1.0.30001252"
- colorette "^1.3.0"
- fraction.js "^4.1.1"
- normalize-range "^0.1.2"
- postcss-value-parser "^4.1.0"
- axios-progress-bar@^1.2.0:
- version "1.2.0"
- resolved "https://registry.nlark.com/axios-progress-bar/download/axios-progress-bar-1.2.0.tgz#f9ee88dc9af977246be1ef07eedfa4c990c639c5"
- integrity sha1-+e6I3Jr5dyRr4e8H7t+kyZDGOcU=
- axios-retry@^3.1.9:
- version "3.1.9"
- resolved "https://registry.npm.taobao.org/axios-retry/download/axios-retry-3.1.9.tgz#6c30fc9aeb4519aebaec758b90ef56fa03fe72e8"
- integrity sha1-bDD8mutFGa667HWLkO9W+gP+cug=
- dependencies:
- is-retry-allowed "^1.1.0"
- axios@^0.21.4:
- version "0.21.4"
- resolved "https://registry.nlark.com/axios/download/axios-0.21.4.tgz?cache=0&sync_timestamp=1630942656836&other_urls=https%3A%2F%2Fregistry.nlark.com%2Faxios%2Fdownload%2Faxios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575"
- integrity sha1-xnuQ3AVo5cHPKwuFjEO6KOLtpXU=
- dependencies:
- follow-redirects "^1.14.0"
- babel-walk@3.0.0-canary-5:
- version "3.0.0-canary-5"
- resolved "https://registry.npm.taobao.org/babel-walk/download/babel-walk-3.0.0-canary-5.tgz#f66ecd7298357aee44955f235a6ef54219104b11"
- integrity sha1-9m7Ncpg1eu5ElV8jWm71QhkQSxE=
- dependencies:
- "@babel/types" "^7.9.6"
- balanced-match@^1.0.0:
- version "1.0.2"
- resolved "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
- integrity sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=
- big.js@^5.2.2:
- version "5.2.2"
- resolved "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
- integrity sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=
- binary-extensions@^2.0.0:
- version "2.2.0"
- resolved "https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
- integrity sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=
- bluebird@^3.7.2:
- version "3.7.2"
- resolved "https://registry.nlark.com/bluebird/download/bluebird-3.7.2.tgz?cache=0&sync_timestamp=1618847007562&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbluebird%2Fdownload%2Fbluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
- integrity sha1-nyKcFb4nJFT/qXOs4NvueaGww28=
- brace-expansion@^1.1.7:
- version "1.1.11"
- resolved "https://registry.nlark.com/brace-expansion/download/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
- integrity sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=
- dependencies:
- balanced-match "^1.0.0"
- concat-map "0.0.1"
- braces@^3.0.1, braces@~3.0.2:
- version "3.0.2"
- resolved "https://registry.nlark.com/braces/download/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
- integrity sha1-NFThpGLujVmeI23zNs2epPiv4Qc=
- dependencies:
- fill-range "^7.0.1"
- browserslist@^4.16.8:
- version "4.17.0"
- resolved "https://registry.nlark.com/browserslist/download/browserslist-4.17.0.tgz?cache=0&sync_timestamp=1630836541147&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.17.0.tgz#1fcd81ec75b41d6d4994fb0831b92ac18c01649c"
- integrity sha1-H82B7HW0HW1JlPsIMbkqwYwBZJw=
- dependencies:
- caniuse-lite "^1.0.30001254"
- colorette "^1.3.0"
- electron-to-chromium "^1.3.830"
- escalade "^3.1.1"
- node-releases "^1.1.75"
- bytes@^3.0.0:
- version "3.1.0"
- resolved "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
- integrity sha1-9s95M6Ng4FiPqf3oVlHNx/gF0fY=
- call-bind@^1.0.2:
- version "1.0.2"
- resolved "https://registry.nlark.com/call-bind/download/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
- integrity sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=
- dependencies:
- function-bind "^1.1.1"
- get-intrinsic "^1.0.2"
- callsites@^3.0.0:
- version "3.1.0"
- resolved "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz?cache=0&sync_timestamp=1628464722297&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcallsites%2Fdownload%2Fcallsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
- integrity sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=
- camelcase-css@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npm.taobao.org/camelcase-css/download/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
- integrity sha1-7pePaUeRTMMMa0R0G27R338EP9U=
- caniuse-lite@^1.0.30001252, caniuse-lite@^1.0.30001254:
- version "1.0.30001257"
- resolved "https://registry.nlark.com/caniuse-lite/download/caniuse-lite-1.0.30001257.tgz#150aaf649a48bee531104cfeda57f92ce587f6e5"
- integrity sha1-FQqvZJpIvuUxEEz+2lf5LOWH9uU=
- chalk@^2.0.0:
- version "2.4.2"
- resolved "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1627646697260&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
- integrity sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=
- dependencies:
- ansi-styles "^3.2.1"
- escape-string-regexp "^1.0.5"
- supports-color "^5.3.0"
- chalk@^4.1.2:
- version "4.1.2"
- resolved "https://registry.nlark.com/chalk/download/chalk-4.1.2.tgz?cache=0&sync_timestamp=1627646697260&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
- integrity sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=
- dependencies:
- ansi-styles "^4.1.0"
- supports-color "^7.1.0"
- character-parser@^2.2.0:
- version "2.2.0"
- resolved "https://registry.nlark.com/character-parser/download/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0"
- integrity sha1-x84o821LzZdE5f/CxfzeHHMmH8A=
- dependencies:
- is-regex "^1.0.3"
- chokidar@^3.5.2:
- version "3.5.2"
- resolved "https://registry.nlark.com/chokidar/download/chokidar-3.5.2.tgz?cache=0&sync_timestamp=1623763535523&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchokidar%2Fdownload%2Fchokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75"
- integrity sha1-26OXb8rbAW9m/TZQIdkWANAcHnU=
- dependencies:
- anymatch "~3.1.2"
- braces "~3.0.2"
- 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"
- color-convert@^1.9.0:
- version "1.9.3"
- resolved "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
- integrity sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=
- dependencies:
- color-name "1.1.3"
- color-convert@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
- integrity sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=
- dependencies:
- color-name "~1.1.4"
- color-name@1.1.3:
- version "1.1.3"
- resolved "https://registry.nlark.com/color-name/download/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
- integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
- color-name@^1.0.0, color-name@~1.1.4:
- version "1.1.4"
- resolved "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
- integrity sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=
- color-string@^1.6.0:
- version "1.6.0"
- resolved "https://registry.nlark.com/color-string/download/color-string-1.6.0.tgz?cache=0&sync_timestamp=1626503501666&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcolor-string%2Fdownload%2Fcolor-string-1.6.0.tgz#c3915f61fe267672cb7e1e064c9d692219f6c312"
- integrity sha1-w5FfYf4mdnLLfh4GTJ1pIhn2wxI=
- dependencies:
- color-name "^1.0.0"
- simple-swizzle "^0.2.2"
- color@^4.0.1:
- version "4.0.1"
- resolved "https://registry.nlark.com/color/download/color-4.0.1.tgz?cache=0&sync_timestamp=1628104117021&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcolor%2Fdownload%2Fcolor-4.0.1.tgz#21df44cd10245a91b1ccf5ba031609b0e10e7d67"
- integrity sha1-Id9EzRAkWpGxzPW6AxYJsOEOfWc=
- dependencies:
- color-convert "^2.0.1"
- color-string "^1.6.0"
- colorette@^1.2.2, colorette@^1.3.0:
- version "1.4.0"
- resolved "https://registry.nlark.com/colorette/download/colorette-1.4.0.tgz?cache=0&sync_timestamp=1631034394587&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcolorette%2Fdownload%2Fcolorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40"
- integrity sha1-UZD7uHJ2JZqGrXAL/yxtb6o/ykA=
- commander@^6.0.0:
- version "6.2.1"
- resolved "https://registry.nlark.com/commander/download/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c"
- integrity sha1-B5LraC37wyWZm7K4T93duhEKxzw=
- compute-scroll-into-view@^1.0.17:
- version "1.0.17"
- resolved "https://registry.nlark.com/compute-scroll-into-view/download/compute-scroll-into-view-1.0.17.tgz#6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab"
- integrity sha1-aojxis2dQunPS6pr7H4FImB6t6s=
- concat-map@0.0.1:
- version "0.0.1"
- resolved "https://registry.nlark.com/concat-map/download/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
- integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
- consolidate@^0.16.0:
- version "0.16.0"
- resolved "https://registry.npm.taobao.org/consolidate/download/consolidate-0.16.0.tgz#a11864768930f2f19431660a65906668f5fbdc16"
- integrity sha1-oRhkdokw8vGUMWYKZZBmaPX73BY=
- dependencies:
- bluebird "^3.7.2"
- constantinople@^4.0.1:
- version "4.0.1"
- resolved "https://registry.npm.taobao.org/constantinople/download/constantinople-4.0.1.tgz#0def113fa0e4dc8de83331a5cf79c8b325213151"
- integrity sha1-De8RP6Dk3I3oMzGlz3nIsyUhMVE=
- dependencies:
- "@babel/parser" "^7.6.0"
- "@babel/types" "^7.6.1"
- core-js@^3.15.1:
- version "3.17.3"
- resolved "https://registry.nlark.com/core-js/download/core-js-3.17.3.tgz?cache=0&sync_timestamp=1631176914291&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-3.17.3.tgz#8e8bd20e91df9951e903cabe91f9af4a0895bc1e"
- integrity sha1-jovSDpHfmVHpA8q+kfmvSgiVvB4=
- cosmiconfig@^7.0.1:
- version "7.0.1"
- resolved "https://registry.nlark.com/cosmiconfig/download/cosmiconfig-7.0.1.tgz?cache=0&sync_timestamp=1629585969900&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcosmiconfig%2Fdownload%2Fcosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d"
- integrity sha1-cU11ZSLKzoZ4Z8y0R0xdAbuuXW0=
- dependencies:
- "@types/parse-json" "^4.0.0"
- import-fresh "^3.2.1"
- parse-json "^5.0.0"
- path-type "^4.0.0"
- yaml "^1.10.0"
- css-color-names@^0.0.4:
- version "0.0.4"
- resolved "https://registry.nlark.com/css-color-names/download/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
- integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=
- css-unit-converter@^1.1.1:
- version "1.1.2"
- resolved "https://registry.npm.taobao.org/css-unit-converter/download/css-unit-converter-1.1.2.tgz#4c77f5a1954e6dbff60695ecb214e3270436ab21"
- integrity sha1-THf1oZVObb/2BpXsshTjJwQ2qyE=
- cssesc@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npm.taobao.org/cssesc/download/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
- integrity sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=
- csstype@^2.6.8:
- version "2.6.18"
- resolved "https://registry.nlark.com/csstype/download/csstype-2.6.18.tgz?cache=0&sync_timestamp=1631540658518&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcsstype%2Fdownload%2Fcsstype-2.6.18.tgz#980a8b53085f34af313410af064f2bd241784218"
- integrity sha1-mAqLUwhfNK8xNBCvBk8r0kF4Qhg=
- custom-cursor.js@1.3.6:
- version "1.3.6"
- resolved "https://registry.nlark.com/custom-cursor.js/download/custom-cursor.js-1.3.6.tgz#95c05fbbecac134e12c65a488cc8f952300014d6"
- integrity sha1-lcBfu+ysE04SxlpIjMj5UjAAFNY=
- debug@^4.3.2:
- version "4.3.2"
- resolved "https://registry.nlark.com/debug/download/debug-4.3.2.tgz?cache=0&sync_timestamp=1625374675284&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdebug%2Fdownload%2Fdebug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
- integrity sha1-8KScGKyHeeMdSgxgKd+3aHPHQos=
- dependencies:
- ms "2.1.2"
- defined@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npm.taobao.org/defined/download/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
- integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=
- detective@^5.2.0:
- version "5.2.0"
- resolved "https://registry.nlark.com/detective/download/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b"
- integrity sha1-/rKnfoW5BOzepFmtiXzJCpm9Kns=
- dependencies:
- acorn-node "^1.6.1"
- defined "^1.0.0"
- minimist "^1.1.1"
- didyoumean@^1.2.2:
- version "1.2.2"
- resolved "https://registry.nlark.com/didyoumean/download/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037"
- integrity sha1-mJNG/+noObRVXs9WZu3qDT6K0Dc=
- dlv@^1.1.3:
- version "1.1.3"
- resolved "https://registry.npm.taobao.org/dlv/download/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79"
- integrity sha1-XBmKihFFNZbnUUlNSYdLx3MvLnk=
- doctypes@^1.1.0:
- version "1.1.0"
- resolved "https://registry.npm.taobao.org/doctypes/download/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9"
- integrity sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=
- dom-align@^1.12.1:
- version "1.12.2"
- resolved "https://registry.nlark.com/dom-align/download/dom-align-1.12.2.tgz#0f8164ebd0c9c21b0c790310493cd855892acd4b"
- integrity sha1-D4Fk69DJwhsMeQMQSTzYVYkqzUs=
- dom-scroll-into-view@^2.0.0:
- version "2.0.1"
- resolved "https://registry.npm.taobao.org/dom-scroll-into-view/download/dom-scroll-into-view-2.0.1.tgz#0decc8522801fd8d3f1c6ba355a74d382c5f989b"
- integrity sha1-DezIUigB/Y0/HGujVadNOCxfmJs=
- dom-serializer@^1.0.1:
- version "1.3.2"
- resolved "https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz?cache=0&sync_timestamp=1621256830355&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdom-serializer%2Fdownload%2Fdom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91"
- integrity sha1-YgZDfTLO767HFhgDIwx6ILwbTZE=
- dependencies:
- domelementtype "^2.0.1"
- domhandler "^4.2.0"
- entities "^2.0.0"
- domelementtype@^2.0.1, domelementtype@^2.2.0:
- version "2.2.0"
- resolved "https://registry.npm.taobao.org/domelementtype/download/domelementtype-2.2.0.tgz?cache=0&sync_timestamp=1617298545989&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdomelementtype%2Fdownload%2Fdomelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57"
- integrity sha1-mgtsJ4LtahxzI9QiZxg9+b2LHVc=
- domhandler@^4.0.0, domhandler@^4.2.0:
- version "4.2.2"
- resolved "https://registry.nlark.com/domhandler/download/domhandler-4.2.2.tgz#e825d721d19a86b8c201a35264e226c678ee755f"
- integrity sha1-6CXXIdGahrjCAaNSZOImxnjudV8=
- dependencies:
- domelementtype "^2.2.0"
- domutils@^2.5.2:
- version "2.8.0"
- resolved "https://registry.nlark.com/domutils/download/domutils-2.8.0.tgz?cache=0&sync_timestamp=1630106606599&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdomutils%2Fdownload%2Fdomutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135"
- integrity sha1-RDfe9dtuLR9dbuhZvZXKfQIEgTU=
- dependencies:
- dom-serializer "^1.0.1"
- domelementtype "^2.2.0"
- domhandler "^4.2.0"
- electron-to-chromium@^1.3.830:
- version "1.3.842"
- resolved "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.842.tgz#641e414012dded277468892c0156cb01984f4f6f"
- integrity sha1-ZB5BQBLd7Sd0aIksAVbLAZhPT28=
- emmet@^2.3.0:
- version "2.3.4"
- resolved "https://registry.nlark.com/emmet/download/emmet-2.3.4.tgz#5ba0d7a5569a68c7697dfa890c772e4f3179d123"
- integrity sha1-W6DXpVaaaMdpffqJDHcuTzF50SM=
- dependencies:
- "@emmetio/abbreviation" "^2.2.2"
- "@emmetio/css-abbreviation" "^2.1.4"
- emojis-list@^3.0.0:
- version "3.0.0"
- resolved "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
- integrity sha1-VXBmIEatKeLpFucariYKvf9Pang=
- entities@^2.0.0:
- version "2.2.0"
- resolved "https://registry.nlark.com/entities/download/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
- integrity sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=
- error-ex@^1.3.1:
- version "1.3.2"
- resolved "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
- integrity sha1-tKxAZIEH/c3PriQvQovqihTU8b8=
- dependencies:
- is-arrayish "^0.2.1"
- esbuild@^0.12.17:
- version "0.12.28"
- resolved "https://registry.nlark.com/esbuild/download/esbuild-0.12.28.tgz#84da0d2a0d0dee181281545271e0d65cf6fab1ef"
- integrity sha1-hNoNKg0N7hgSgVRSceDWXPb6se8=
- escalade@^3.1.1:
- version "3.1.1"
- resolved "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
- integrity sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=
- escape-string-regexp@^1.0.5:
- version "1.0.5"
- resolved "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
- integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
- estree-walker@^2.0.1, estree-walker@^2.0.2:
- version "2.0.2"
- resolved "https://registry.npm.taobao.org/estree-walker/download/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
- integrity sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw=
- fast-glob@^3.2.7:
- version "3.2.7"
- resolved "https://registry.nlark.com/fast-glob/download/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1"
- integrity sha1-/Wy3otfpqnp4RhEehaGW1rL3ZqE=
- dependencies:
- "@nodelib/fs.stat" "^2.0.2"
- "@nodelib/fs.walk" "^1.2.3"
- glob-parent "^5.1.2"
- merge2 "^1.3.0"
- micromatch "^4.0.4"
- fastq@^1.6.0:
- version "1.13.0"
- resolved "https://registry.nlark.com/fastq/download/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
- integrity sha1-YWdg+Ip1Jr38WWt8q4wYk4w2uYw=
- dependencies:
- reusify "^1.0.4"
- fill-range@^7.0.1:
- version "7.0.1"
- resolved "https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
- integrity sha1-GRmmp8df44ssfHflGYU12prN2kA=
- dependencies:
- to-regex-range "^5.0.1"
- follow-redirects@^1.14.0:
- version "1.14.4"
- resolved "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.14.4.tgz?cache=0&sync_timestamp=1631622129411&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.14.4.tgz#838fdf48a8bbdd79e52ee51fb1c94e3ed98b9379"
- integrity sha1-g4/fSKi73XnlLuUfsclOPtmLk3k=
- fraction.js@^4.1.1:
- version "4.1.1"
- resolved "https://registry.nlark.com/fraction.js/download/fraction.js-4.1.1.tgz?cache=0&sync_timestamp=1621848730310&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffraction.js%2Fdownload%2Ffraction.js-4.1.1.tgz#ac4e520473dae67012d618aab91eda09bcb400ff"
- integrity sha1-rE5SBHPa5nAS1hiquR7aCby0AP8=
- fs-extra@^10.0.0:
- version "10.0.0"
- resolved "https://registry.nlark.com/fs-extra/download/fs-extra-10.0.0.tgz#9ff61b655dde53fb34a82df84bb214ce802e17c1"
- integrity sha1-n/YbZV3eU/s0qC34S7IUzoAuF8E=
- dependencies:
- graceful-fs "^4.2.0"
- jsonfile "^6.0.1"
- universalify "^2.0.0"
- fs.realpath@^1.0.0:
- version "1.0.0"
- resolved "https://registry.nlark.com/fs.realpath/download/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
- integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
- fsevents@~2.3.2:
- version "2.3.2"
- resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
- integrity sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=
- function-bind@^1.1.1:
- version "1.1.1"
- resolved "https://registry.nlark.com/function-bind/download/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
- integrity sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=
- generic-names@^2.0.1:
- version "2.0.1"
- resolved "https://registry.nlark.com/generic-names/download/generic-names-2.0.1.tgz#f8a378ead2ccaa7a34f0317b05554832ae41b872"
- integrity sha1-+KN46tLMqno08DF7BVVIMq5BuHI=
- dependencies:
- loader-utils "^1.1.0"
- get-intrinsic@^1.0.2:
- version "1.1.1"
- resolved "https://registry.nlark.com/get-intrinsic/download/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
- integrity sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y=
- dependencies:
- function-bind "^1.1.1"
- has "^1.0.3"
- has-symbols "^1.0.1"
- glob-parent@^5.1.2, glob-parent@~5.1.2:
- version "5.1.2"
- resolved "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz?cache=0&sync_timestamp=1626760200164&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob-parent%2Fdownload%2Fglob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
- integrity sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=
- dependencies:
- is-glob "^4.0.1"
- glob-parent@^6.0.1:
- version "6.0.1"
- resolved "https://registry.nlark.com/glob-parent/download/glob-parent-6.0.1.tgz?cache=0&sync_timestamp=1626760200164&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob-parent%2Fdownload%2Fglob-parent-6.0.1.tgz#42054f685eb6a44e7a7d189a96efa40a54971aa7"
- integrity sha1-QgVPaF62pE56fRialu+kClSXGqc=
- dependencies:
- is-glob "^4.0.1"
- glob@^7.0.0, glob@^7.1.3:
- version "7.1.7"
- resolved "https://registry.nlark.com/glob/download/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
- integrity sha1-Oxk+kjPwHULQs/eClLvutBj5SpA=
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^3.0.4"
- once "^1.3.0"
- path-is-absolute "^1.0.0"
- graceful-fs@^4.1.6, graceful-fs@^4.2.0:
- version "4.2.8"
- resolved "https://registry.nlark.com/graceful-fs/download/graceful-fs-4.2.8.tgz?cache=0&sync_timestamp=1628194078324&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fgraceful-fs%2Fdownload%2Fgraceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a"
- integrity sha1-5BK40z9eAGWTy9PO5t+fLOu+gCo=
- gsap@^3.7.1:
- version "3.7.1"
- resolved "https://registry.nlark.com/gsap/download/gsap-3.7.1.tgz?cache=0&sync_timestamp=1626381309302&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fgsap%2Fdownload%2Fgsap-3.7.1.tgz#1c5857f4fbcbd3f5ca0b513ef7abf828fbaa20a8"
- integrity sha1-HFhX9PvL0/XKC1E+96v4KPuqIKg=
- has-flag@^3.0.0:
- version "3.0.0"
- resolved "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
- integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
- has-flag@^4.0.0:
- version "4.0.0"
- resolved "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
- integrity sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=
- has-pkg@^0.0.1:
- version "0.0.1"
- resolved "https://registry.nlark.com/has-pkg/download/has-pkg-0.0.1.tgz#f9d9139ed83e2487deae5eb4ac13182a2e903857"
- integrity sha1-+dkTntg+JIferl60rBMYKi6QOFc=
- has-symbols@^1.0.1, has-symbols@^1.0.2:
- version "1.0.2"
- resolved "https://registry.nlark.com/has-symbols/download/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
- integrity sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM=
- has-tostringtag@^1.0.0:
- version "1.0.0"
- resolved "https://registry.nlark.com/has-tostringtag/download/has-tostringtag-1.0.0.tgz?cache=0&sync_timestamp=1628196402801&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhas-tostringtag%2Fdownload%2Fhas-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
- integrity sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU=
- dependencies:
- has-symbols "^1.0.2"
- has@^1.0.3:
- version "1.0.3"
- resolved "https://registry.nlark.com/has/download/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
- integrity sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=
- dependencies:
- function-bind "^1.1.1"
- hash-sum@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npm.taobao.org/hash-sum/download/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a"
- integrity sha1-gdAbtd6OpKIUrV1urRtSNGCwtFo=
- hex-color-regex@^1.1.0:
- version "1.1.0"
- resolved "https://registry.nlark.com/hex-color-regex/download/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
- integrity sha1-TAb8y0YC/iYCs8k9+C1+fb8aio4=
- hsl-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.nlark.com/hsl-regex/download/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e"
- integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=
- hsla-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npm.taobao.org/hsla-regex/download/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"
- integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg=
- html-tags@^3.1.0:
- version "3.1.0"
- resolved "https://registry.npm.taobao.org/html-tags/download/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140"
- integrity sha1-e15vfmZen7QfMAB+2eDUHpf7IUA=
- htmlparser2@^6.1.0:
- version "6.1.0"
- resolved "https://registry.nlark.com/htmlparser2/download/htmlparser2-6.1.0.tgz?cache=0&sync_timestamp=1631386311915&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhtmlparser2%2Fdownload%2Fhtmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7"
- integrity sha1-xNditsM3GgXb5l6UrkOp+EX7j7c=
- dependencies:
- domelementtype "^2.0.1"
- domhandler "^4.0.0"
- domutils "^2.5.2"
- entities "^2.0.0"
- icss-replace-symbols@^1.1.0:
- version "1.1.0"
- resolved "https://registry.npm.taobao.org/icss-replace-symbols/download/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
- integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
- icss-utils@^5.0.0:
- version "5.1.0"
- resolved "https://registry.npm.taobao.org/icss-utils/download/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
- integrity sha1-xr5oWKvQE9do6YNmrkfiXViHsa4=
- import-cwd@^3.0.0:
- version "3.0.0"
- resolved "https://registry.nlark.com/import-cwd/download/import-cwd-3.0.0.tgz?cache=0&sync_timestamp=1618846826220&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fimport-cwd%2Fdownload%2Fimport-cwd-3.0.0.tgz#20845547718015126ea9b3676b7592fb8bd4cf92"
- integrity sha1-IIRVR3GAFRJuqbNna3WS+4vUz5I=
- dependencies:
- import-from "^3.0.0"
- import-fresh@^3.2.1:
- version "3.3.0"
- resolved "https://registry.npm.taobao.org/import-fresh/download/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
- integrity sha1-NxYsJfy566oublPVtNiM4X2eDCs=
- dependencies:
- parent-module "^1.0.0"
- resolve-from "^4.0.0"
- import-from@^3.0.0:
- version "3.0.0"
- resolved "https://registry.nlark.com/import-from/download/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966"
- integrity sha1-BVz+w4zVon2AV8pRN219O/CJGWY=
- dependencies:
- resolve-from "^5.0.0"
- inflight@^1.0.4:
- version "1.0.6"
- resolved "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
- integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
- dependencies:
- once "^1.3.0"
- wrappy "1"
- inherits@2:
- version "2.0.4"
- resolved "https://registry.nlark.com/inherits/download/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
- integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=
- is-arrayish@^0.2.1:
- version "0.2.1"
- resolved "https://registry.npm.taobao.org/is-arrayish/download/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
- integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
- is-arrayish@^0.3.1:
- version "0.3.2"
- resolved "https://registry.npm.taobao.org/is-arrayish/download/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
- integrity sha1-RXSirlb3qyBolvtDHq7tBm/fjwM=
- is-binary-path@~2.1.0:
- version "2.1.0"
- resolved "https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
- integrity sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=
- dependencies:
- binary-extensions "^2.0.0"
- is-color-stop@^1.1.0:
- version "1.1.0"
- resolved "https://registry.nlark.com/is-color-stop/download/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345"
- integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=
- dependencies:
- css-color-names "^0.0.4"
- hex-color-regex "^1.1.0"
- hsl-regex "^1.0.0"
- hsla-regex "^1.0.0"
- rgb-regex "^1.0.1"
- rgba-regex "^1.0.0"
- is-core-module@^2.2.0:
- version "2.6.0"
- resolved "https://registry.nlark.com/is-core-module/download/is-core-module-2.6.0.tgz?cache=0&sync_timestamp=1629224656971&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-core-module%2Fdownload%2Fis-core-module-2.6.0.tgz#d7553b2526fe59b92ba3e40c8df757ec8a709e19"
- integrity sha1-11U7JSb+Wbkro+QMjfdX7Ipwnhk=
- dependencies:
- has "^1.0.3"
- is-expression@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npm.taobao.org/is-expression/download/is-expression-4.0.0.tgz#c33155962abf21d0afd2552514d67d2ec16fd2ab"
- integrity sha1-wzFVliq/IdCv0lUlFNZ9LsFv0qs=
- dependencies:
- acorn "^7.1.1"
- object-assign "^4.1.1"
- is-extglob@^2.1.1:
- version "2.1.1"
- resolved "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
- integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
- is-glob@^4.0.1, is-glob@~4.0.1:
- version "4.0.1"
- resolved "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
- integrity sha1-dWfb6fL14kZ7x3q4PEopSCQHpdw=
- dependencies:
- is-extglob "^2.1.1"
- is-number@^7.0.0:
- version "7.0.0"
- resolved "https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
- integrity sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=
- is-plain-object@3.0.1:
- version "3.0.1"
- resolved "https://registry.npm.taobao.org/is-plain-object/download/is-plain-object-3.0.1.tgz#662d92d24c0aa4302407b0d45d21f2251c85f85b"
- integrity sha1-Zi2S0kwKpDAkB7DUXSHyJRyF+Fs=
- is-promise@^2.0.0:
- version "2.2.2"
- resolved "https://registry.nlark.com/is-promise/download/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
- integrity sha1-OauVnMv5p3TPB597QMeib3YxNfE=
- is-regex@^1.0.3:
- version "1.1.4"
- resolved "https://registry.nlark.com/is-regex/download/is-regex-1.1.4.tgz?cache=0&sync_timestamp=1628221853554&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-regex%2Fdownload%2Fis-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
- integrity sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=
- dependencies:
- call-bind "^1.0.2"
- has-tostringtag "^1.0.0"
- is-retry-allowed@^1.1.0:
- version "1.2.0"
- resolved "https://registry.npm.taobao.org/is-retry-allowed/download/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
- integrity sha1-13hIi9CkZmo76KFIK58rqv7eqLQ=
- js-stringify@^1.0.2:
- version "1.0.2"
- resolved "https://registry.nlark.com/js-stringify/download/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db"
- integrity sha1-Fzb939lyTyijaCrcYjCufk6Weds=
- "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
- version "4.0.0"
- resolved "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz?cache=0&sync_timestamp=1619345098261&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
- integrity sha1-GSA/tZmR35jjoocFDUZHzerzJJk=
- json-parse-even-better-errors@^2.3.0:
- version "2.3.1"
- resolved "https://registry.nlark.com/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
- integrity sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=
- json5@^1.0.1:
- version "1.0.1"
- resolved "https://registry.npm.taobao.org/json5/download/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
- integrity sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=
- dependencies:
- minimist "^1.2.0"
- jsonc-parser@^2.3.0:
- version "2.3.1"
- resolved "https://registry.nlark.com/jsonc-parser/download/jsonc-parser-2.3.1.tgz#59549150b133f2efacca48fe9ce1ec0659af2342"
- integrity sha1-WVSRULEz8u+sykj+nOHsBlmvI0I=
- jsonc-parser@^3.0.0:
- version "3.0.0"
- resolved "https://registry.nlark.com/jsonc-parser/download/jsonc-parser-3.0.0.tgz#abdd785701c7e7eaca8a9ec8cf070ca51a745a22"
- integrity sha1-q914VwHH5+rKip7IzwcMpRp0WiI=
- jsonfile@^6.0.1:
- version "6.1.0"
- resolved "https://registry.nlark.com/jsonfile/download/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
- integrity sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4=
- dependencies:
- universalify "^2.0.0"
- optionalDependencies:
- graceful-fs "^4.1.6"
- jstransformer@1.0.0:
- version "1.0.0"
- resolved "https://registry.nlark.com/jstransformer/download/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3"
- integrity sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=
- dependencies:
- is-promise "^2.0.0"
- promise "^7.0.1"
- lilconfig@^2.0.3:
- version "2.0.3"
- resolved "https://registry.nlark.com/lilconfig/download/lilconfig-2.0.3.tgz#68f3005e921dafbd2a2afb48379986aa6d2579fd"
- integrity sha1-aPMAXpIdr70qKvtIN5mGqm0lef0=
- lines-and-columns@^1.1.6:
- version "1.1.6"
- resolved "https://registry.nlark.com/lines-and-columns/download/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
- integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
- loader-utils@^1.1.0:
- version "1.4.0"
- resolved "https://registry.nlark.com/loader-utils/download/loader-utils-1.4.0.tgz?cache=0&sync_timestamp=1618846812625&other_urls=https%3A%2F%2Fregistry.nlark.com%2Floader-utils%2Fdownload%2Floader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
- integrity sha1-xXm140yzSxp07cbB+za/o3HVphM=
- dependencies:
- big.js "^5.2.2"
- emojis-list "^3.0.0"
- json5 "^1.0.1"
- lodash-es@^4.17.15, lodash-es@^4.17.21:
- version "4.17.21"
- resolved "https://registry.nlark.com/lodash-es/download/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee"
- integrity sha1-Q+YmxG5lkbd1C+srUBFzkMYJ4+4=
- lodash.camelcase@^4.3.0:
- version "4.3.0"
- resolved "https://registry.npm.taobao.org/lodash.camelcase/download/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
- integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY=
- lodash.topath@^4.5.2:
- version "4.5.2"
- resolved "https://registry.npm.taobao.org/lodash.topath/download/lodash.topath-4.5.2.tgz#3616351f3bba61994a0931989660bd03254fd009"
- integrity sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=
- lodash@^4.17.15, lodash@^4.17.21:
- version "4.17.21"
- resolved "https://registry.nlark.com/lodash/download/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
- integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=
- loose-envify@^1.0.0:
- version "1.4.0"
- resolved "https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
- integrity sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=
- dependencies:
- js-tokens "^3.0.0 || ^4.0.0"
- lru-cache@^5.1.1:
- version "5.1.1"
- resolved "https://registry.nlark.com/lru-cache/download/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
- integrity sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=
- dependencies:
- yallist "^3.0.2"
- lru-cache@^6.0.0:
- version "6.0.0"
- resolved "https://registry.nlark.com/lru-cache/download/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
- integrity sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=
- dependencies:
- yallist "^4.0.0"
- magic-string@^0.25.7:
- version "0.25.7"
- resolved "https://registry.nlark.com/magic-string/download/magic-string-0.25.7.tgz?cache=0&sync_timestamp=1618847046304&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmagic-string%2Fdownload%2Fmagic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051"
- integrity sha1-P0l9b9NMZpxnmNy4IfLvMfVEUFE=
- dependencies:
- sourcemap-codec "^1.4.4"
- merge-source-map@^1.1.0:
- version "1.1.0"
- resolved "https://registry.nlark.com/merge-source-map/download/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646"
- integrity sha1-L93n5gIJOfcJBqaPLXrmheTIxkY=
- dependencies:
- source-map "^0.6.1"
- merge2@^1.3.0:
- version "1.4.1"
- resolved "https://registry.npm.taobao.org/merge2/download/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
- integrity sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=
- micromatch@^4.0.4:
- version "4.0.4"
- resolved "https://registry.nlark.com/micromatch/download/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
- integrity sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k=
- dependencies:
- braces "^3.0.1"
- picomatch "^2.2.3"
- minimatch@^3.0.4:
- version "3.0.4"
- resolved "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
- integrity sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=
- dependencies:
- brace-expansion "^1.1.7"
- minimist@^1.1.1, minimist@^1.2.0:
- version "1.2.5"
- resolved "https://registry.nlark.com/minimist/download/minimist-1.2.5.tgz?cache=0&sync_timestamp=1618847017774&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fminimist%2Fdownload%2Fminimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
- integrity sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=
- mitt@^3.0.0:
- version "3.0.0"
- resolved "https://registry.nlark.com/mitt/download/mitt-3.0.0.tgz?cache=0&sync_timestamp=1624483449786&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmitt%2Fdownload%2Fmitt-3.0.0.tgz#69ef9bd5c80ff6f57473e8d89326d01c414be0bd"
- integrity sha1-ae+b1cgP9vV0c+jYkybQHEFL4L0=
- modern-normalize@^1.1.0:
- version "1.1.0"
- resolved "https://registry.nlark.com/modern-normalize/download/modern-normalize-1.1.0.tgz?cache=0&sync_timestamp=1619951149003&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmodern-normalize%2Fdownload%2Fmodern-normalize-1.1.0.tgz#da8e80140d9221426bd4f725c6e11283d34f90b7"
- integrity sha1-2o6AFA2SIUJr1PclxuESg9NPkLc=
- moment@^2.27.0, moment@^2.29.1:
- version "2.29.1"
- resolved "https://registry.nlark.com/moment/download/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3"
- integrity sha1-sr52n6MZQL6e7qZGnAdeNQBvo9M=
- ms@2.1.2:
- version "2.1.2"
- resolved "https://registry.nlark.com/ms/download/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
- integrity sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=
- nanoid@^3.1.23:
- version "3.1.25"
- resolved "https://registry.nlark.com/nanoid/download/nanoid-3.1.25.tgz?cache=0&sync_timestamp=1628771925127&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnanoid%2Fdownload%2Fnanoid-3.1.25.tgz#09ca32747c0e543f0e1814b7d3793477f9c8e152"
- integrity sha1-CcoydHwOVD8OGBS303k0d/nI4VI=
- nanopop@^2.1.0:
- version "2.1.0"
- resolved "https://registry.npm.taobao.org/nanopop/download/nanopop-2.1.0.tgz#23476513cee2405888afd2e8a4b54066b70b9e60"
- integrity sha1-I0dlE87iQFiIr9LopLVAZrcLnmA=
- node-emoji@^1.11.0:
- version "1.11.0"
- resolved "https://registry.nlark.com/node-emoji/download/node-emoji-1.11.0.tgz#69a0150e6946e2f115e9d7ea4df7971e2628301c"
- integrity sha1-aaAVDmlG4vEV6dfqTfeXHiYoMBw=
- dependencies:
- lodash "^4.17.21"
- node-releases@^1.1.75:
- version "1.1.75"
- resolved "https://registry.nlark.com/node-releases/download/node-releases-1.1.75.tgz?cache=0&sync_timestamp=1629280398871&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.75.tgz#6dd8c876b9897a1b8e5a02de26afa79bb54ebbfe"
- integrity sha1-bdjIdrmJehuOWgLeJq+nm7VOu/4=
- normalize-path@^3.0.0, normalize-path@~3.0.0:
- version "3.0.0"
- resolved "https://registry.npm.taobao.org/normalize-path/download/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
- integrity sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=
- normalize-range@^0.1.2:
- version "0.1.2"
- resolved "https://registry.nlark.com/normalize-range/download/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
- integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
- object-assign@^4.1.1:
- version "4.1.1"
- resolved "https://registry.nlark.com/object-assign/download/object-assign-4.1.1.tgz?cache=0&sync_timestamp=1618847043548&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fobject-assign%2Fdownload%2Fobject-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
- integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
- object-hash@^2.2.0:
- version "2.2.0"
- resolved "https://registry.nlark.com/object-hash/download/object-hash-2.2.0.tgz#5ad518581eefc443bd763472b8ff2e9c2c0d54a5"
- integrity sha1-WtUYWB7vxEO9djRyuP8unCwNVKU=
- omit.js@^2.0.0:
- version "2.0.2"
- resolved "https://registry.npm.taobao.org/omit.js/download/omit.js-2.0.2.tgz#dd9b8436fab947a5f3ff214cb2538631e313ec2f"
- integrity sha1-3ZuENvq5R6Xz/yFMslOGMeMT7C8=
- once@^1.3.0:
- version "1.4.0"
- resolved "https://registry.nlark.com/once/download/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
- integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
- dependencies:
- wrappy "1"
- parent-module@^1.0.0:
- version "1.0.1"
- resolved "https://registry.npm.taobao.org/parent-module/download/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
- integrity sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=
- dependencies:
- callsites "^3.0.0"
- parse-json@^5.0.0:
- version "5.2.0"
- resolved "https://registry.nlark.com/parse-json/download/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
- integrity sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=
- dependencies:
- "@babel/code-frame" "^7.0.0"
- error-ex "^1.3.1"
- json-parse-even-better-errors "^2.3.0"
- lines-and-columns "^1.1.6"
- path-is-absolute@^1.0.0:
- version "1.0.1"
- resolved "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
- integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
- path-parse@^1.0.6:
- version "1.0.7"
- resolved "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
- integrity sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=
- path-type@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npm.taobao.org/path-type/download/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
- integrity sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=
- picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3:
- version "2.3.0"
- resolved "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621648246651&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
- integrity sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI=
- postcss-js@^3.0.3:
- version "3.0.3"
- resolved "https://registry.npm.taobao.org/postcss-js/download/postcss-js-3.0.3.tgz#2f0bd370a2e8599d45439f6970403b5873abda33"
- integrity sha1-LwvTcKLoWZ1FQ59pcEA7WHOr2jM=
- dependencies:
- camelcase-css "^2.0.1"
- postcss "^8.1.6"
- postcss-load-config@^3.1.0:
- version "3.1.0"
- resolved "https://registry.nlark.com/postcss-load-config/download/postcss-load-config-3.1.0.tgz#d39c47091c4aec37f50272373a6a648ef5e97829"
- integrity sha1-05xHCRxK7Df1AnI3OmpkjvXpeCk=
- dependencies:
- import-cwd "^3.0.0"
- lilconfig "^2.0.3"
- yaml "^1.10.2"
- postcss-modules-extract-imports@^3.0.0:
- version "3.0.0"
- resolved "https://registry.nlark.com/postcss-modules-extract-imports/download/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d"
- integrity sha1-zaHwR8CugMl9vijD52pDuIAldB0=
- postcss-modules-local-by-default@^4.0.0:
- version "4.0.0"
- resolved "https://registry.nlark.com/postcss-modules-local-by-default/download/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c"
- integrity sha1-67tU+uFZjuz99pGgKz/zs5ClpRw=
- dependencies:
- icss-utils "^5.0.0"
- postcss-selector-parser "^6.0.2"
- postcss-value-parser "^4.1.0"
- postcss-modules-scope@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npm.taobao.org/postcss-modules-scope/download/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06"
- integrity sha1-nvMVFFbTu/oSDKRImN/Kby+gHwY=
- dependencies:
- postcss-selector-parser "^6.0.4"
- postcss-modules-values@^4.0.0:
- version "4.0.0"
- resolved "https://registry.nlark.com/postcss-modules-values/download/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c"
- integrity sha1-18Xn5ow7s8myfL9Iyguz/7RgLJw=
- dependencies:
- icss-utils "^5.0.0"
- postcss-modules@^4.0.0:
- version "4.2.2"
- resolved "https://registry.nlark.com/postcss-modules/download/postcss-modules-4.2.2.tgz?cache=0&sync_timestamp=1627039417896&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-modules%2Fdownload%2Fpostcss-modules-4.2.2.tgz#5e7777c5a8964ea176919d90b2e54ef891321ce5"
- integrity sha1-Xnd3xaiWTqF2kZ2QsuVO+JEyHOU=
- dependencies:
- generic-names "^2.0.1"
- icss-replace-symbols "^1.1.0"
- lodash.camelcase "^4.3.0"
- postcss-modules-extract-imports "^3.0.0"
- postcss-modules-local-by-default "^4.0.0"
- postcss-modules-scope "^3.0.0"
- postcss-modules-values "^4.0.0"
- string-hash "^1.1.1"
- postcss-nested@5.0.6:
- version "5.0.6"
- resolved "https://registry.nlark.com/postcss-nested/download/postcss-nested-5.0.6.tgz?cache=0&sync_timestamp=1627468102377&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-nested%2Fdownload%2Fpostcss-nested-5.0.6.tgz#466343f7fc8d3d46af3e7dba3fcd47d052a945bc"
- integrity sha1-RmND9/yNPUavPn26P81H0FKpRbw=
- dependencies:
- postcss-selector-parser "^6.0.6"
- postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.6:
- version "6.0.6"
- resolved "https://registry.nlark.com/postcss-selector-parser/download/postcss-selector-parser-6.0.6.tgz?cache=0&sync_timestamp=1620752939806&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-selector-parser%2Fdownload%2Fpostcss-selector-parser-6.0.6.tgz#2c5bba8174ac2f6981ab631a42ab0ee54af332ea"
- integrity sha1-LFu6gXSsL2mBq2MaQqsO5UrzMuo=
- dependencies:
- cssesc "^3.0.0"
- util-deprecate "^1.0.2"
- postcss-value-parser@^3.3.0:
- version "3.3.1"
- resolved "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-3.3.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-value-parser%2Fdownload%2Fpostcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
- integrity sha1-n/giVH4okyE88cMO+lGsX9G6goE=
- postcss-value-parser@^4.1.0:
- version "4.1.0"
- resolved "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-value-parser%2Fdownload%2Fpostcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
- integrity sha1-RD9qIM7WSBor2k+oUypuVdeJoss=
- postcss@^8.1.10, postcss@^8.1.6, postcss@^8.2.1, postcss@^8.3.6:
- version "8.3.6"
- resolved "https://registry.nlark.com/postcss/download/postcss-8.3.6.tgz?cache=0&sync_timestamp=1626882960231&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss%2Fdownload%2Fpostcss-8.3.6.tgz#2730dd76a97969f37f53b9a6096197be311cc4ea"
- integrity sha1-JzDddql5afN/U7mmCWGXvjEcxOo=
- dependencies:
- colorette "^1.2.2"
- nanoid "^3.1.23"
- source-map-js "^0.6.2"
- pretty-hrtime@^1.0.3:
- version "1.0.3"
- resolved "https://registry.npm.taobao.org/pretty-hrtime/download/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
- integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
- promise@^7.0.1:
- version "7.3.1"
- resolved "https://registry.nlark.com/promise/download/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
- integrity sha1-BktyYCsY+Q8pGSuLG8QY/9Hr078=
- dependencies:
- asap "~2.0.3"
- pug-attrs@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npm.taobao.org/pug-attrs/download/pug-attrs-3.0.0.tgz#b10451e0348165e31fad1cc23ebddd9dc7347c41"
- integrity sha1-sQRR4DSBZeMfrRzCPr3dncc0fEE=
- dependencies:
- constantinople "^4.0.1"
- js-stringify "^1.0.2"
- pug-runtime "^3.0.0"
- pug-code-gen@^3.0.2:
- version "3.0.2"
- resolved "https://registry.npm.taobao.org/pug-code-gen/download/pug-code-gen-3.0.2.tgz#ad190f4943133bf186b60b80de483100e132e2ce"
- integrity sha1-rRkPSUMTO/GGtguA3kgxAOEy4s4=
- dependencies:
- constantinople "^4.0.1"
- doctypes "^1.1.0"
- js-stringify "^1.0.2"
- pug-attrs "^3.0.0"
- pug-error "^2.0.0"
- pug-runtime "^3.0.0"
- void-elements "^3.1.0"
- with "^7.0.0"
- pug-error@^2.0.0:
- version "2.0.0"
- resolved "https://registry.nlark.com/pug-error/download/pug-error-2.0.0.tgz#5c62173cb09c34de2a2ce04f17b8adfec74d8ca5"
- integrity sha1-XGIXPLCcNN4qLOBPF7it/sdNjKU=
- pug-filters@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npm.taobao.org/pug-filters/download/pug-filters-4.0.0.tgz#d3e49af5ba8472e9b7a66d980e707ce9d2cc9b5e"
- integrity sha1-0+Sa9bqEcum3pm2YDnB86dLMm14=
- dependencies:
- constantinople "^4.0.1"
- jstransformer "1.0.0"
- pug-error "^2.0.0"
- pug-walk "^2.0.0"
- resolve "^1.15.1"
- pug-lexer@^5.0.1:
- version "5.0.1"
- resolved "https://registry.npm.taobao.org/pug-lexer/download/pug-lexer-5.0.1.tgz#ae44628c5bef9b190b665683b288ca9024b8b0d5"
- integrity sha1-rkRijFvvmxkLZlaDsojKkCS4sNU=
- dependencies:
- character-parser "^2.2.0"
- is-expression "^4.0.0"
- pug-error "^2.0.0"
- pug-linker@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npm.taobao.org/pug-linker/download/pug-linker-4.0.0.tgz#12cbc0594fc5a3e06b9fc59e6f93c146962a7708"
- integrity sha1-EsvAWU/Fo+Brn8Web5PBRpYqdwg=
- dependencies:
- pug-error "^2.0.0"
- pug-walk "^2.0.0"
- pug-load@^3.0.0:
- version "3.0.0"
- resolved "https://registry.npm.taobao.org/pug-load/download/pug-load-3.0.0.tgz#9fd9cda52202b08adb11d25681fb9f34bd41b662"
- integrity sha1-n9nNpSICsIrbEdJWgfufNL1BtmI=
- dependencies:
- object-assign "^4.1.1"
- pug-walk "^2.0.0"
- pug-parser@^6.0.0:
- version "6.0.0"
- resolved "https://registry.npm.taobao.org/pug-parser/download/pug-parser-6.0.0.tgz#a8fdc035863a95b2c1dc5ebf4ecf80b4e76a1260"
- integrity sha1-qP3ANYY6lbLB3F6/Ts+AtOdqEmA=
- dependencies:
- pug-error "^2.0.0"
- token-stream "1.0.0"
- pug-runtime@^3.0.0, pug-runtime@^3.0.1:
- version "3.0.1"
- resolved "https://registry.npm.taobao.org/pug-runtime/download/pug-runtime-3.0.1.tgz#f636976204723f35a8c5f6fad6acda2a191b83d7"
- integrity sha1-9jaXYgRyPzWoxfb61qzaKhkbg9c=
- pug-strip-comments@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npm.taobao.org/pug-strip-comments/download/pug-strip-comments-2.0.0.tgz#f94b07fd6b495523330f490a7f554b4ff876303e"
- integrity sha1-+UsH/WtJVSMzD0kKf1VLT/h2MD4=
- dependencies:
- pug-error "^2.0.0"
- pug-walk@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npm.taobao.org/pug-walk/download/pug-walk-2.0.0.tgz#417aabc29232bb4499b5b5069a2b2d2a24d5f5fe"
- integrity sha1-QXqrwpIyu0SZtbUGmistKiTV9f4=
- pug@^3.0.2:
- version "3.0.2"
- resolved "https://registry.npm.taobao.org/pug/download/pug-3.0.2.tgz#f35c7107343454e43bc27ae0ff76c731b78ea535"
- integrity sha1-81xxBzQ0VOQ7wnrg/3bHMbeOpTU=
- dependencies:
- pug-code-gen "^3.0.2"
- pug-filters "^4.0.0"
- pug-lexer "^5.0.1"
- pug-linker "^4.0.0"
- pug-load "^3.0.0"
- pug-parser "^6.0.0"
- pug-runtime "^3.0.1"
- pug-strip-comments "^2.0.0"
- purgecss@^4.0.3:
- version "4.0.3"
- resolved "https://registry.npm.taobao.org/purgecss/download/purgecss-4.0.3.tgz#8147b429f9c09db719e05d64908ea8b672913742"
- integrity sha1-gUe0KfnAnbcZ4F1kkI6otnKRN0I=
- dependencies:
- commander "^6.0.0"
- glob "^7.0.0"
- postcss "^8.2.1"
- postcss-selector-parser "^6.0.2"
- queue-microtask@^1.2.2:
- version "1.2.3"
- resolved "https://registry.nlark.com/queue-microtask/download/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
- integrity sha1-SSkii7xyTfrEPg77BYyve2z7YkM=
- quick-lru@^5.1.1:
- version "5.1.1"
- resolved "https://registry.nlark.com/quick-lru/download/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932"
- integrity sha1-NmST5rPkKjpoheLpnRj4D7eoyTI=
- readdirp@~3.6.0:
- version "3.6.0"
- resolved "https://registry.nlark.com/readdirp/download/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
- integrity sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=
- dependencies:
- picomatch "^2.2.1"
- reduce-css-calc@^2.1.8:
- version "2.1.8"
- resolved "https://registry.nlark.com/reduce-css-calc/download/reduce-css-calc-2.1.8.tgz#7ef8761a28d614980dc0c982f772c93f7a99de03"
- integrity sha1-fvh2GijWFJgNwMmC93LJP3qZ3gM=
- dependencies:
- css-unit-converter "^1.1.1"
- postcss-value-parser "^3.3.0"
- regenerator-runtime@^0.13.4:
- version "0.13.9"
- resolved "https://registry.nlark.com/regenerator-runtime/download/regenerator-runtime-0.13.9.tgz?cache=0&sync_timestamp=1626993001371&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregenerator-runtime%2Fdownload%2Fregenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
- integrity sha1-iSV0Kpj/2QgUmI11Zq0wyjsmO1I=
- request-light@^0.5.4:
- version "0.5.4"
- resolved "https://registry.nlark.com/request-light/download/request-light-0.5.4.tgz#497a98c6d8ae49536417a5e2d7f383b934f3e38c"
- integrity sha1-SXqYxtiuSVNkF6Xi1/ODuTTz44w=
- resize-observer-polyfill@^1.5.1:
- version "1.5.1"
- resolved "https://registry.nlark.com/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
- integrity sha1-DpAg3T0hAkRY1OvSfiPkAmmBBGQ=
- resolve-from@^4.0.0:
- version "4.0.0"
- resolved "https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz?cache=0&sync_timestamp=1622605305717&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fresolve-from%2Fdownload%2Fresolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
- integrity sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=
- resolve-from@^5.0.0:
- version "5.0.0"
- resolved "https://registry.nlark.com/resolve-from/download/resolve-from-5.0.0.tgz?cache=0&sync_timestamp=1622605305717&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fresolve-from%2Fdownload%2Fresolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
- integrity sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=
- resolve@^1.15.1, resolve@^1.20.0:
- version "1.20.0"
- resolved "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
- integrity sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=
- dependencies:
- is-core-module "^2.2.0"
- path-parse "^1.0.6"
- reusify@^1.0.4:
- version "1.0.4"
- resolved "https://registry.nlark.com/reusify/download/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
- integrity sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=
- rgb-regex@^1.0.1:
- version "1.0.1"
- resolved "https://registry.npm.taobao.org/rgb-regex/download/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1"
- integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE=
- rgba-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.npm.taobao.org/rgba-regex/download/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
- integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
- rimraf@^3.0.0:
- version "3.0.2"
- resolved "https://registry.npm.taobao.org/rimraf/download/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
- integrity sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=
- dependencies:
- glob "^7.1.3"
- rollup@^2.38.5:
- version "2.56.3"
- resolved "https://registry.nlark.com/rollup/download/rollup-2.56.3.tgz#b63edadd9851b0d618a6d0e6af8201955a77aeff"
- integrity sha1-tj7a3ZhRsNYYptDmr4IBlVp3rv8=
- optionalDependencies:
- fsevents "~2.3.2"
- run-parallel@^1.1.9:
- version "1.2.0"
- resolved "https://registry.npm.taobao.org/run-parallel/download/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
- integrity sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=
- dependencies:
- queue-microtask "^1.2.2"
- scroll-into-view-if-needed@^2.2.25:
- version "2.2.28"
- resolved "https://registry.nlark.com/scroll-into-view-if-needed/download/scroll-into-view-if-needed-2.2.28.tgz#5a15b2f58a52642c88c8eca584644e01703d645a"
- integrity sha1-WhWy9YpSZCyIyOylhGROAXA9ZFo=
- dependencies:
- compute-scroll-into-view "^1.0.17"
- semver@^7.3.5:
- version "7.3.5"
- resolved "https://registry.nlark.com/semver/download/semver-7.3.5.tgz?cache=0&sync_timestamp=1618847119601&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver%2Fdownload%2Fsemver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
- integrity sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=
- dependencies:
- lru-cache "^6.0.0"
- shallow-equal@^1.0.0:
- version "1.2.1"
- resolved "https://registry.nlark.com/shallow-equal/download/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da"
- integrity sha1-TBar+lYEOqINBQMk76aJQLDaedo=
- simple-swizzle@^0.2.2:
- version "0.2.2"
- resolved "https://registry.nlark.com/simple-swizzle/download/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
- integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=
- dependencies:
- is-arrayish "^0.3.1"
- source-map-js@^0.6.2:
- version "0.6.2"
- resolved "https://registry.npm.taobao.org/source-map-js/download/source-map-js-0.6.2.tgz#0bb5de631b41cfbda6cfba8bd05a80efdfd2385e"
- integrity sha1-C7XeYxtBz72mz7qL0FqA79/SOF4=
- source-map@^0.6.1:
- version "0.6.1"
- resolved "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
- integrity sha1-dHIq8y6WFOnCh6jQu95IteLxomM=
- sourcemap-codec@^1.4.4:
- version "1.4.8"
- resolved "https://registry.nlark.com/sourcemap-codec/download/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
- integrity sha1-6oBL2UhXQC5pktBaOO8a41qatMQ=
- string-hash@^1.1.1:
- version "1.1.3"
- resolved "https://registry.nlark.com/string-hash/download/string-hash-1.1.3.tgz?cache=0&sync_timestamp=1618847134046&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstring-hash%2Fdownload%2Fstring-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
- integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
- supports-color@^5.3.0:
- version "5.5.0"
- resolved "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1626703342506&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
- integrity sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=
- dependencies:
- has-flag "^3.0.0"
- supports-color@^7.1.0:
- version "7.2.0"
- resolved "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1626703342506&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
- integrity sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=
- dependencies:
- has-flag "^4.0.0"
- tailwindcss@^2.2.10:
- version "2.2.15"
- resolved "https://registry.nlark.com/tailwindcss/download/tailwindcss-2.2.15.tgz?cache=0&sync_timestamp=1631796824386&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftailwindcss%2Fdownload%2Ftailwindcss-2.2.15.tgz#8bee3ebe68b988c050508ce20633f35b040dd9fe"
- integrity sha1-i+4+vmi5iMBQUIziBjPzWwQN2f4=
- dependencies:
- arg "^5.0.1"
- bytes "^3.0.0"
- chalk "^4.1.2"
- chokidar "^3.5.2"
- color "^4.0.1"
- cosmiconfig "^7.0.1"
- detective "^5.2.0"
- didyoumean "^1.2.2"
- dlv "^1.1.3"
- fast-glob "^3.2.7"
- fs-extra "^10.0.0"
- glob-parent "^6.0.1"
- html-tags "^3.1.0"
- is-color-stop "^1.1.0"
- is-glob "^4.0.1"
- lodash "^4.17.21"
- lodash.topath "^4.5.2"
- modern-normalize "^1.1.0"
- node-emoji "^1.11.0"
- normalize-path "^3.0.0"
- object-hash "^2.2.0"
- postcss-js "^3.0.3"
- postcss-load-config "^3.1.0"
- postcss-nested "5.0.6"
- postcss-selector-parser "^6.0.6"
- postcss-value-parser "^4.1.0"
- pretty-hrtime "^1.0.3"
- purgecss "^4.0.3"
- quick-lru "^5.1.1"
- reduce-css-calc "^2.1.8"
- resolve "^1.20.0"
- tmp "^0.2.1"
- tmp@^0.2.1:
- version "0.2.1"
- resolved "https://registry.npm.taobao.org/tmp/download/tmp-0.2.1.tgz?cache=0&sync_timestamp=1615984440866&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftmp%2Fdownload%2Ftmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14"
- integrity sha1-hFf8MDfc9HGcJRNnoa9lAO4czxQ=
- dependencies:
- rimraf "^3.0.0"
- to-fast-properties@^2.0.0:
- version "2.0.0"
- resolved "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz?cache=0&sync_timestamp=1628418893613&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fto-fast-properties%2Fdownload%2Fto-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
- integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
- to-regex-range@^5.0.1:
- version "5.0.1"
- resolved "https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
- integrity sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=
- dependencies:
- is-number "^7.0.0"
- token-stream@1.0.0:
- version "1.0.0"
- resolved "https://registry.npm.taobao.org/token-stream/download/token-stream-1.0.0.tgz#cc200eab2613f4166d27ff9afc7ca56d49df6eb4"
- integrity sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=
- typescript@^4.3.5:
- version "4.4.3"
- resolved "https://registry.nlark.com/typescript/download/typescript-4.4.3.tgz?cache=0&sync_timestamp=1631690110768&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftypescript%2Fdownload%2Ftypescript-4.4.3.tgz#bdc5407caa2b109efd4f82fe130656f977a29324"
- integrity sha1-vcVAfKorEJ79T4L+EwZW+XeikyQ=
- ua-parser-js@^0.7.28:
- version "0.7.28"
- resolved "https://registry.nlark.com/ua-parser-js/download/ua-parser-js-0.7.28.tgz#8ba04e653f35ce210239c64661685bf9121dec31"
- integrity sha1-i6BOZT81ziECOcZGYWhb+RId7DE=
- universalify@^2.0.0:
- version "2.0.0"
- resolved "https://registry.nlark.com/universalify/download/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
- integrity sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc=
- unplugin-vue-components@^0.15.0:
- version "0.15.1"
- resolved "https://registry.nlark.com/unplugin-vue-components/download/unplugin-vue-components-0.15.1.tgz#60833df9f54e5eedde7d916c2ba66e9a263798a7"
- integrity sha1-YIM9+fVOXu3efZFsK6ZumiY3mKc=
- dependencies:
- "@rollup/pluginutils" "^4.1.1"
- chokidar "^3.5.2"
- debug "^4.3.2"
- fast-glob "^3.2.7"
- has-pkg "^0.0.1"
- magic-string "^0.25.7"
- minimatch "^3.0.4"
- resolve "^1.20.0"
- unplugin "^0.2.7"
- unplugin@^0.2.7:
- version "0.2.11"
- resolved "https://registry.nlark.com/unplugin/download/unplugin-0.2.11.tgz#f9f3f8b2b5a7c1b16325dbdea9568ee3652f6e49"
- integrity sha1-+fP4srWnwbFjJdveqVaO42Uvbkk=
- dependencies:
- upath "^2.0.1"
- webpack-virtual-modules "^0.4.3"
- upath@^2.0.1:
- version "2.0.1"
- resolved "https://registry.npm.taobao.org/upath/download/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b"
- integrity sha1-UMc96mjW9rmQ9R0nnOYIFmXWGos=
- util-deprecate@^1.0.2:
- version "1.0.2"
- resolved "https://registry.nlark.com/util-deprecate/download/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
- integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
- viewerjs@^1.10.1:
- version "1.10.1"
- resolved "https://registry.nlark.com/viewerjs/download/viewerjs-1.10.1.tgz#07499ed043d0a29e3002b90f55c5b228bd1a742c"
- integrity sha1-B0me0EPQop4wArkPVcWyKL0adCw=
- vite@^2.5.4:
- version "2.5.8"
- resolved "https://registry.nlark.com/vite/download/vite-2.5.8.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvite%2Fdownload%2Fvite-2.5.8.tgz#e2da21540411e91cb1c4a62e133c652a787cf116"
- integrity sha1-4tohVAQR6RyxxKYuEzxlKnh88RY=
- dependencies:
- esbuild "^0.12.17"
- postcss "^8.3.6"
- resolve "^1.20.0"
- rollup "^2.38.5"
- optionalDependencies:
- fsevents "~2.3.2"
- void-elements@^3.1.0:
- version "3.1.0"
- resolved "https://registry.npm.taobao.org/void-elements/download/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09"
- integrity sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=
- vscode-css-languageservice@^5.1.4:
- version "5.1.5"
- resolved "https://registry.nlark.com/vscode-css-languageservice/download/vscode-css-languageservice-5.1.5.tgz?cache=0&sync_timestamp=1631172639143&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvscode-css-languageservice%2Fdownload%2Fvscode-css-languageservice-5.1.5.tgz#400b2f63a4f73c60f5b0afc48c478c1b326b27c6"
- integrity sha1-QAsvY6T3PGD1sK/EjEeMGzJrJ8Y=
- dependencies:
- vscode-languageserver-textdocument "^1.0.1"
- vscode-languageserver-types "^3.16.0"
- vscode-nls "^5.0.0"
- vscode-uri "^3.0.2"
- vscode-html-languageservice@^4.0.7:
- version "4.0.8"
- resolved "https://registry.nlark.com/vscode-html-languageservice/download/vscode-html-languageservice-4.0.8.tgz#9429bacce3244dcfcb3a7172903f33b6f418db3b"
- integrity sha1-lCm6zOMkTc/LOnFykD8ztvQY2zs=
- dependencies:
- vscode-languageserver-textdocument "^1.0.1"
- vscode-languageserver-types "^3.16.0"
- vscode-nls "^5.0.0"
- vscode-uri "^3.0.2"
- vscode-json-languageservice@^4.1.7:
- version "4.1.7"
- resolved "https://registry.nlark.com/vscode-json-languageservice/download/vscode-json-languageservice-4.1.7.tgz#18244d62b115a5818c7526ef4339438b7175dfaa"
- integrity sha1-GCRNYrEVpYGMdSbvQzlDi3F136o=
- dependencies:
- jsonc-parser "^3.0.0"
- vscode-languageserver-textdocument "^1.0.1"
- vscode-languageserver-types "^3.16.0"
- vscode-nls "^5.0.0"
- vscode-uri "^3.0.2"
- vscode-jsonrpc@8.0.0-next.2, vscode-jsonrpc@^8.0.0-next.2:
- version "8.0.0-next.2"
- resolved "https://registry.nlark.com/vscode-jsonrpc/download/vscode-jsonrpc-8.0.0-next.2.tgz?cache=0&sync_timestamp=1628514354370&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvscode-jsonrpc%2Fdownload%2Fvscode-jsonrpc-8.0.0-next.2.tgz#285fc294be586e4768acd67e5a42efc738a5cac0"
- integrity sha1-KF/ClL5YbkdorNZ+WkLvxzilysA=
- vscode-languageserver-protocol@3.17.0-next.8:
- version "3.17.0-next.8"
- resolved "https://registry.nlark.com/vscode-languageserver-protocol/download/vscode-languageserver-protocol-3.17.0-next.8.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvscode-languageserver-protocol%2Fdownload%2Fvscode-languageserver-protocol-3.17.0-next.8.tgz#ef2eb7423b474cccd11384239de24488e7fe818c"
- integrity sha1-7y63QjtHTMzRE4QjneJEiOf+gYw=
- dependencies:
- vscode-jsonrpc "8.0.0-next.2"
- vscode-languageserver-types "3.17.0-next.3"
- vscode-languageserver-textdocument@^1.0.1:
- version "1.0.1"
- resolved "https://registry.npm.taobao.org/vscode-languageserver-textdocument/download/vscode-languageserver-textdocument-1.0.1.tgz#178168e87efad6171b372add1dea34f53e5d330f"
- integrity sha1-F4Fo6H761hcbNyrdHeo09T5dMw8=
- vscode-languageserver-types@3.17.0-next.3:
- version "3.17.0-next.3"
- resolved "https://registry.nlark.com/vscode-languageserver-types/download/vscode-languageserver-types-3.17.0-next.3.tgz?cache=0&sync_timestamp=1625834451077&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvscode-languageserver-types%2Fdownload%2Fvscode-languageserver-types-3.17.0-next.3.tgz#e1f4311e08ea3193e81126154b6a342fc1c3dba3"
- integrity sha1-4fQxHgjqMZPoESYVS2o0L8HD26M=
- vscode-languageserver-types@^3.15.1, vscode-languageserver-types@^3.16.0:
- version "3.16.0"
- resolved "https://registry.nlark.com/vscode-languageserver-types/download/vscode-languageserver-types-3.16.0.tgz?cache=0&sync_timestamp=1625834451077&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvscode-languageserver-types%2Fdownload%2Fvscode-languageserver-types-3.16.0.tgz#ecf393fc121ec6974b2da3efb3155644c514e247"
- integrity sha1-7POT/BIexpdLLaPvsxVWRMUU4kc=
- vscode-languageserver@^8.0.0-next.2:
- version "8.0.0-next.2"
- resolved "https://registry.nlark.com/vscode-languageserver/download/vscode-languageserver-8.0.0-next.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvscode-languageserver%2Fdownload%2Fvscode-languageserver-8.0.0-next.2.tgz#3a3daf79ff10350ea9cec5c73b5302901a955117"
- integrity sha1-Oj2vef8QNQ6pzsXHO1MCkBqVURc=
- dependencies:
- vscode-languageserver-protocol "3.17.0-next.8"
- vscode-nls@^5.0.0:
- version "5.0.0"
- resolved "https://registry.npm.taobao.org/vscode-nls/download/vscode-nls-5.0.0.tgz#99f0da0bd9ea7cda44e565a74c54b1f2bc257840"
- integrity sha1-mfDaC9nqfNpE5WWnTFSx8rwleEA=
- vscode-pug-languageservice@^0.27.21:
- version "0.27.21"
- resolved "https://registry.nlark.com/vscode-pug-languageservice/download/vscode-pug-languageservice-0.27.21.tgz#b5ebdfb3e67fd37bb9ec4801e22161d469722300"
- integrity sha1-tevfs+Z/03u57EgB4iFh1GlyIwA=
- dependencies:
- "@volar/code-gen" "^0.27.14"
- "@volar/shared" "^0.27.14"
- "@volar/source-map" "^0.27.14"
- "@volar/transforms" "^0.27.14"
- pug-lexer "^5.0.1"
- pug-parser "^6.0.0"
- vscode-languageserver "^8.0.0-next.2"
- vscode-typescript-languageservice@^0.27.20:
- version "0.27.20"
- resolved "https://registry.nlark.com/vscode-typescript-languageservice/download/vscode-typescript-languageservice-0.27.20.tgz#491838da6394e57d54bc254e1fb77cf7b3e0818f"
- integrity sha1-SRg42mOU5X1UvCVOH7d897PggY8=
- dependencies:
- "@volar/shared" "^0.27.14"
- semver "^7.3.5"
- upath "^2.0.1"
- vscode-languageserver "^8.0.0-next.2"
- vscode-languageserver-textdocument "^1.0.1"
- vscode-uri@^2.1.2:
- version "2.1.2"
- resolved "https://registry.npm.taobao.org/vscode-uri/download/vscode-uri-2.1.2.tgz#c8d40de93eb57af31f3c715dd650e2ca2c096f1c"
- integrity sha1-yNQN6T61evMfPHFd1lDiyiwJbxw=
- vscode-uri@^3.0.2:
- version "3.0.2"
- resolved "https://registry.npm.taobao.org/vscode-uri/download/vscode-uri-3.0.2.tgz#ecfd1d066cb8ef4c3a208decdbab9a8c23d055d0"
- integrity sha1-7P0dBmy470w6II3s26uajCPQVdA=
- vscode-vue-languageservice@^0.27.0:
- version "0.27.21"
- resolved "https://registry.nlark.com/vscode-vue-languageservice/download/vscode-vue-languageservice-0.27.21.tgz?cache=0&sync_timestamp=1631782329014&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvscode-vue-languageservice%2Fdownload%2Fvscode-vue-languageservice-0.27.21.tgz#d72c3e730c5c7f363a6eb6241bdbdf1db55eae1e"
- integrity sha1-1yw+cwxcfzY6brYkG9vfHbVerh4=
- dependencies:
- "@volar/code-gen" "^0.27.14"
- "@volar/html2pug" "^0.27.13"
- "@volar/shared" "^0.27.14"
- "@volar/source-map" "^0.27.14"
- "@volar/transforms" "^0.27.14"
- "@vscode/emmet-helper" "^2.7.0"
- "@vue/compiler-dom" "^3.2.6"
- "@vue/reactivity" "^3.2.6"
- "@vue/shared" "^3.2.6"
- request-light "^0.5.4"
- upath "^2.0.1"
- vscode-css-languageservice "^5.1.4"
- vscode-html-languageservice "^4.0.7"
- vscode-json-languageservice "^4.1.7"
- vscode-languageserver "^8.0.0-next.2"
- vscode-languageserver-textdocument "^1.0.1"
- vscode-pug-languageservice "^0.27.21"
- vscode-typescript-languageservice "^0.27.20"
- vue-router@4.0.10:
- version "4.0.10"
- resolved "https://registry.nlark.com/vue-router/download/vue-router-4.0.10.tgz?cache=0&sync_timestamp=1628495505697&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue-router%2Fdownload%2Fvue-router-4.0.10.tgz#ec8fda032949b2a31d3273170f8f376e86eb52ac"
- integrity sha1-7I/aAylJsqMdMnMXD483bobrUqw=
- dependencies:
- "@vue/devtools-api" "^6.0.0-beta.14"
- vue-tsc@^0.3.0:
- version "0.3.0"
- resolved "https://registry.nlark.com/vue-tsc/download/vue-tsc-0.3.0.tgz#3b3872bf4f1d2e4409b57adbd826032e253db406"
- integrity sha1-Ozhyv08dLkQJtXrb2CYDLiU9tAY=
- dependencies:
- vscode-vue-languageservice "^0.27.0"
- vue-types@^3.0.0:
- version "3.0.2"
- resolved "https://registry.nlark.com/vue-types/download/vue-types-3.0.2.tgz?cache=0&sync_timestamp=1631095271024&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue-types%2Fdownload%2Fvue-types-3.0.2.tgz#ec16e05d412c038262fc1efa4ceb9647e7fb601d"
- integrity sha1-7BbgXUEsA4Ji/B76TOuWR+f7YB0=
- dependencies:
- is-plain-object "3.0.1"
- vue@^3.2.9:
- version "3.2.11"
- resolved "https://registry.nlark.com/vue/download/vue-3.2.11.tgz?cache=0&sync_timestamp=1631141991995&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue%2Fdownload%2Fvue-3.2.11.tgz#6b92295048df705ddac558fd3e3ed553e55e57c8"
- integrity sha1-a5IpUEjfcF3axVj9Pj7VU+VeV8g=
- dependencies:
- "@vue/compiler-dom" "3.2.11"
- "@vue/runtime-dom" "3.2.11"
- "@vue/shared" "3.2.11"
- warning@^4.0.0:
- version "4.0.3"
- resolved "https://registry.nlark.com/warning/download/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3"
- integrity sha1-Fungd+uKhtavfWSqHgX9hbRnjKM=
- dependencies:
- loose-envify "^1.0.0"
- webpack-virtual-modules@^0.4.3:
- version "0.4.3"
- resolved "https://registry.nlark.com/webpack-virtual-modules/download/webpack-virtual-modules-0.4.3.tgz?cache=0&sync_timestamp=1620993523325&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwebpack-virtual-modules%2Fdownload%2Fwebpack-virtual-modules-0.4.3.tgz#cd597c6d51d5a5ecb473eea1983a58fa8a17ded9"
- integrity sha1-zVl8bVHVpey0c+6hmDpY+ooX3tk=
- with@^7.0.0:
- version "7.0.2"
- resolved "https://registry.npm.taobao.org/with/download/with-7.0.2.tgz#ccee3ad542d25538a7a7a80aad212b9828495bac"
- integrity sha1-zO461ULSVTinp6gKrSErmChJW6w=
- dependencies:
- "@babel/parser" "^7.9.6"
- "@babel/types" "^7.9.6"
- assert-never "^1.2.1"
- babel-walk "3.0.0-canary-5"
- wrappy@1:
- version "1.0.2"
- resolved "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619133505879&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
- integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
- xtend@^4.0.2:
- version "4.0.2"
- resolved "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
- integrity sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=
- yallist@^3.0.2:
- version "3.1.1"
- resolved "https://registry.nlark.com/yallist/download/yallist-3.1.1.tgz?cache=0&sync_timestamp=1622604530774&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyallist%2Fdownload%2Fyallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
- integrity sha1-27fa+b/YusmrRev2ArjLrQ1dCP0=
- yallist@^4.0.0:
- version "4.0.0"
- resolved "https://registry.nlark.com/yallist/download/yallist-4.0.0.tgz?cache=0&sync_timestamp=1622604530774&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyallist%2Fdownload%2Fyallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
- integrity sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=
- yaml@^1.10.0, yaml@^1.10.2:
- version "1.10.2"
- resolved "https://registry.nlark.com/yaml/download/yaml-1.10.2.tgz?cache=0&sync_timestamp=1630949706790&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyaml%2Fdownload%2Fyaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
- integrity sha1-IwHF/78StGfejaIzOkWeKeeSDks=
|