yarn.lock 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073
  1. # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
  2. # yarn lockfile v1
  3. "@ant-design/colors@^5.0.0":
  4. version "5.1.1"
  5. resolved "https://registry.nlark.com/@ant-design/colors/download/@ant-design/colors-5.1.1.tgz#800b2186b1e27e66432e67d03ed96af3e21d8940"
  6. integrity sha1-gAshhrHifmZDLmfQPtlq8+IdiUA=
  7. dependencies:
  8. "@ctrl/tinycolor" "^3.3.1"
  9. "@ant-design/icons-svg@^4.0.0":
  10. version "4.1.0"
  11. resolved "https://registry.nlark.com/@ant-design/icons-svg/download/@ant-design/icons-svg-4.1.0.tgz#480b025f4b20ef7fe8f47d4a4846e4fee84ea06c"
  12. integrity sha1-SAsCX0sg73/o9H1KSEbk/uhOoGw=
  13. "@ant-design/icons-vue@^6.0.0":
  14. version "6.0.1"
  15. resolved "https://registry.nlark.com/@ant-design/icons-vue/download/@ant-design/icons-vue-6.0.1.tgz#9d804c3c74d2cfaf97cb18e582d3b9400934f5fd"
  16. integrity sha1-nYBMPHTSz6+XyxjlgtO5QAk09f0=
  17. dependencies:
  18. "@ant-design/colors" "^5.0.0"
  19. "@ant-design/icons-svg" "^4.0.0"
  20. "@types/lodash" "^4.14.165"
  21. lodash "^4.17.15"
  22. "@babel/code-frame@^7.0.0":
  23. version "7.14.5"
  24. 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"
  25. integrity sha1-I7CNdA6D9JxeWZRfvxtD6Au/Tts=
  26. dependencies:
  27. "@babel/highlight" "^7.14.5"
  28. "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9":
  29. version "7.14.9"
  30. 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"
  31. integrity sha1-ZlTRcbICT22O4VG/JQlpmRkTHUg=
  32. "@babel/highlight@^7.14.5":
  33. version "7.14.5"
  34. 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"
  35. integrity sha1-aGGlLwOWZAUAH2qlNKAaJNmejNk=
  36. dependencies:
  37. "@babel/helper-validator-identifier" "^7.14.5"
  38. chalk "^2.0.0"
  39. js-tokens "^4.0.0"
  40. "@babel/parser@^7.15.0", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6":
  41. version "7.15.6"
  42. 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"
  43. integrity sha1-BDuao8MDwHIuU3f++Rl/TPF5ZUk=
  44. "@babel/runtime@^7.10.5":
  45. version "7.15.4"
  46. 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"
  47. integrity sha1-/RfRa/34eObdAtGXU6OfqKjZyEo=
  48. dependencies:
  49. regenerator-runtime "^0.13.4"
  50. "@babel/types@^7.15.0", "@babel/types@^7.6.1", "@babel/types@^7.9.6":
  51. version "7.15.6"
  52. resolved "https://registry.nlark.com/@babel/types/download/@babel/types-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f"
  53. integrity sha1-mavcSCGLKIHAWN0KerBbmcm+dY8=
  54. dependencies:
  55. "@babel/helper-validator-identifier" "^7.14.9"
  56. to-fast-properties "^2.0.0"
  57. "@ctrl/tinycolor@^3.3.1":
  58. version "3.4.0"
  59. resolved "https://registry.nlark.com/@ctrl/tinycolor/download/@ctrl/tinycolor-3.4.0.tgz#c3c5ae543c897caa9c2a68630bed355be5f9990f"
  60. integrity sha1-w8WuVDyJfKqcKmhjC+01W+X5mQ8=
  61. "@emmetio/abbreviation@^2.2.2":
  62. version "2.2.2"
  63. resolved "https://registry.nlark.com/@emmetio/abbreviation/download/@emmetio/abbreviation-2.2.2.tgz#746762fd9e7a8c2ea604f580c62e3cfe250e6989"
  64. integrity sha1-dGdi/Z56jC6mBPWAxi48/iUOaYk=
  65. dependencies:
  66. "@emmetio/scanner" "^1.0.0"
  67. "@emmetio/css-abbreviation@^2.1.4":
  68. version "2.1.4"
  69. resolved "https://registry.nlark.com/@emmetio/css-abbreviation/download/@emmetio/css-abbreviation-2.1.4.tgz#90362e8a1122ce3b76f6c3157907d30182f53f54"
  70. integrity sha1-kDYuihEizjt29sMVeQfTAYL1P1Q=
  71. dependencies:
  72. "@emmetio/scanner" "^1.0.0"
  73. "@emmetio/scanner@^1.0.0":
  74. version "1.0.0"
  75. resolved "https://registry.nlark.com/@emmetio/scanner/download/@emmetio/scanner-1.0.0.tgz#065b2af6233fe7474d44823e3deb89724af42b5f"
  76. integrity sha1-Blsq9iM/50dNRII+PeuJckr0K18=
  77. "@nodelib/fs.scandir@2.1.5":
  78. version "2.1.5"
  79. resolved "https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
  80. integrity sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=
  81. dependencies:
  82. "@nodelib/fs.stat" "2.0.5"
  83. run-parallel "^1.1.9"
  84. "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
  85. version "2.0.5"
  86. 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"
  87. integrity sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=
  88. "@nodelib/fs.walk@^1.2.3":
  89. version "1.2.8"
  90. 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"
  91. integrity sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=
  92. dependencies:
  93. "@nodelib/fs.scandir" "2.1.5"
  94. fastq "^1.6.0"
  95. "@rollup/pluginutils@^4.1.1":
  96. version "4.1.1"
  97. 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"
  98. integrity sha1-HU2obdTt7RVlalfZM/2iuaCNR+w=
  99. dependencies:
  100. estree-walker "^2.0.1"
  101. picomatch "^2.2.2"
  102. "@simonwep/pickr@~1.8.0":
  103. version "1.8.2"
  104. resolved "https://registry.nlark.com/@simonwep/pickr/download/@simonwep/pickr-1.8.2.tgz#96dc86675940d7cad63d69c22083dd1cbb9797cb"
  105. integrity sha1-ltyGZ1lA18rWPWnCIIPdHLuXl8s=
  106. dependencies:
  107. core-js "^3.15.1"
  108. nanopop "^2.1.0"
  109. "@types/estree@^0.0.48":
  110. version "0.0.48"
  111. 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"
  112. integrity sha1-GNyAkbKF35DbLyWqfZBs/DlLf3Q=
  113. "@types/lodash-es@^4.17.4":
  114. version "4.17.5"
  115. 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"
  116. integrity sha1-HD/dFoSdhK6kOJCxxg2jeftQE1M=
  117. dependencies:
  118. "@types/lodash" "*"
  119. "@types/lodash@*", "@types/lodash@^4.14.165":
  120. version "4.14.173"
  121. resolved "https://registry.nlark.com/@types/lodash/download/@types/lodash-4.14.173.tgz#9d3b674c67a26cf673756f6aca7b429f237f91ed"
  122. integrity sha1-nTtnTGeibPZzdW9qyntCnyN/ke0=
  123. "@types/node@^16.7.11":
  124. version "16.9.2"
  125. 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"
  126. integrity sha1-gfWgOdbtGUH4zFdQbHTnwrj8ZLk=
  127. "@types/parse-json@^4.0.0":
  128. version "4.0.0"
  129. resolved "https://registry.nlark.com/@types/parse-json/download/@types/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
  130. integrity sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=
  131. "@types/ua-parser-js@^0.7.36":
  132. version "0.7.36"
  133. 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"
  134. integrity sha1-m9C0fya1oxUb4hukzp9fpFfF8ZA=
  135. "@vitejs/plugin-vue@^1.6.1":
  136. version "1.6.2"
  137. 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"
  138. integrity sha1-QN/jFM/2ENTdAnoLTqKpOiV/P8k=
  139. "@volar/code-gen@^0.27.14":
  140. version "0.27.14"
  141. resolved "https://registry.nlark.com/@volar/code-gen/download/@volar/code-gen-0.27.14.tgz#fea4bde0c05b81f22e16185e01ecb6fedd842e05"
  142. integrity sha1-/qS94MBbgfIuFhheAey2/t2ELgU=
  143. dependencies:
  144. "@volar/shared" "^0.27.14"
  145. "@volar/source-map" "^0.27.14"
  146. "@volar/html2pug@^0.27.13":
  147. version "0.27.13"
  148. resolved "https://registry.nlark.com/@volar/html2pug/download/@volar/html2pug-0.27.13.tgz#48dfa73ecf1ef1955a02a046d0c88845950fac85"
  149. integrity sha1-SN+nPs8e8ZVaAqBG0MiIRZUPrIU=
  150. dependencies:
  151. domelementtype "^2.2.0"
  152. domhandler "^4.2.0"
  153. htmlparser2 "^6.1.0"
  154. pug "^3.0.2"
  155. "@volar/shared@^0.27.14":
  156. version "0.27.14"
  157. resolved "https://registry.nlark.com/@volar/shared/download/@volar/shared-0.27.14.tgz#d98f2b0b890e315cc20b4edb5e1ffbe8aad2297a"
  158. integrity sha1-2Y8rC4kOMVzCC07bXh/76KrSKXo=
  159. dependencies:
  160. upath "^2.0.1"
  161. vscode-jsonrpc "^8.0.0-next.2"
  162. vscode-uri "^3.0.2"
  163. "@volar/source-map@^0.27.14":
  164. version "0.27.14"
  165. resolved "https://registry.nlark.com/@volar/source-map/download/@volar/source-map-0.27.14.tgz#0b5656f74b5a85887efec97ea112caad9cc52a97"
  166. integrity sha1-C1ZW90tahYh+/sl+oRLKrZzFKpc=
  167. dependencies:
  168. "@volar/shared" "^0.27.14"
  169. "@volar/transforms@^0.27.14":
  170. version "0.27.14"
  171. resolved "https://registry.nlark.com/@volar/transforms/download/@volar/transforms-0.27.14.tgz#b796ddb844b6f9f5301f5941092f9ed95a2db12d"
  172. integrity sha1-t5bduES2+fUwH1lBCS+e2VotsS0=
  173. dependencies:
  174. "@volar/shared" "^0.27.14"
  175. vscode-languageserver "^8.0.0-next.2"
  176. "@vscode/emmet-helper@^2.7.0":
  177. version "2.7.0"
  178. 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"
  179. integrity sha1-PbSF9qZQGW/4u9OLobnkaOyNIvg=
  180. dependencies:
  181. emmet "^2.3.0"
  182. jsonc-parser "^2.3.0"
  183. vscode-languageserver-textdocument "^1.0.1"
  184. vscode-languageserver-types "^3.15.1"
  185. vscode-nls "^5.0.0"
  186. vscode-uri "^2.1.2"
  187. "@vue/compiler-core@3.2.11":
  188. version "3.2.11"
  189. resolved "https://registry.nlark.com/@vue/compiler-core/download/@vue/compiler-core-3.2.11.tgz#10af3777dba303ee7aae668029f131cb90391bee"
  190. integrity sha1-EK83d9ujA+56rmaAKfExy5A5G+4=
  191. dependencies:
  192. "@babel/parser" "^7.15.0"
  193. "@babel/types" "^7.15.0"
  194. "@vue/shared" "3.2.11"
  195. estree-walker "^2.0.2"
  196. source-map "^0.6.1"
  197. "@vue/compiler-dom@3.2.11", "@vue/compiler-dom@^3.2.6":
  198. version "3.2.11"
  199. resolved "https://registry.nlark.com/@vue/compiler-dom/download/@vue/compiler-dom-3.2.11.tgz#d066f8e1f1812b4e881593819ade0fe6d654c776"
  200. integrity sha1-0Gb44fGBK06IFZOBmt4P5tZUx3Y=
  201. dependencies:
  202. "@vue/compiler-core" "3.2.11"
  203. "@vue/shared" "3.2.11"
  204. "@vue/compiler-sfc@^3.2.9":
  205. version "3.2.11"
  206. 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"
  207. integrity sha1-Yo+hIjh2DZubM5rC4SWnWSJPrb8=
  208. dependencies:
  209. "@babel/parser" "^7.15.0"
  210. "@babel/types" "^7.15.0"
  211. "@types/estree" "^0.0.48"
  212. "@vue/compiler-core" "3.2.11"
  213. "@vue/compiler-dom" "3.2.11"
  214. "@vue/compiler-ssr" "3.2.11"
  215. "@vue/ref-transform" "3.2.11"
  216. "@vue/shared" "3.2.11"
  217. consolidate "^0.16.0"
  218. estree-walker "^2.0.2"
  219. hash-sum "^2.0.0"
  220. lru-cache "^5.1.1"
  221. magic-string "^0.25.7"
  222. merge-source-map "^1.1.0"
  223. postcss "^8.1.10"
  224. postcss-modules "^4.0.0"
  225. postcss-selector-parser "^6.0.4"
  226. source-map "^0.6.1"
  227. "@vue/compiler-ssr@3.2.11":
  228. version "3.2.11"
  229. 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"
  230. integrity sha1-cCzvNCllFkW9vgn+WWKAO1piGrs=
  231. dependencies:
  232. "@vue/compiler-dom" "3.2.11"
  233. "@vue/shared" "3.2.11"
  234. "@vue/devtools-api@^6.0.0-beta.14":
  235. version "6.0.0-beta.15"
  236. 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"
  237. integrity sha1-rXyzhOBi8WW8+cg3MhJb/7wq2D0=
  238. "@vue/reactivity@3.2.11", "@vue/reactivity@^3.2.6":
  239. version "3.2.11"
  240. 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"
  241. integrity sha1-7ATTOsryuSzKKWBTW+yBsmzFdys=
  242. dependencies:
  243. "@vue/shared" "3.2.11"
  244. "@vue/ref-transform@3.2.11":
  245. version "3.2.11"
  246. 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"
  247. integrity sha1-TSgrlXDRSFpz579dV8zie0p6ppA=
  248. dependencies:
  249. "@babel/parser" "^7.15.0"
  250. "@vue/compiler-core" "3.2.11"
  251. "@vue/shared" "3.2.11"
  252. estree-walker "^2.0.2"
  253. magic-string "^0.25.7"
  254. "@vue/runtime-core@3.2.11":
  255. version "3.2.11"
  256. 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"
  257. integrity sha1-Db6AG+S9C/3iUyJnl+fTBMj92jA=
  258. dependencies:
  259. "@vue/reactivity" "3.2.11"
  260. "@vue/shared" "3.2.11"
  261. "@vue/runtime-dom@3.2.11":
  262. version "3.2.11"
  263. 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"
  264. integrity sha1-BPkFSp5kvfFWwvwiytZ8+qi4RhY=
  265. dependencies:
  266. "@vue/runtime-core" "3.2.11"
  267. "@vue/shared" "3.2.11"
  268. csstype "^2.6.8"
  269. "@vue/shared@3.2.11", "@vue/shared@^3.2.6":
  270. version "3.2.11"
  271. resolved "https://registry.nlark.com/@vue/shared/download/@vue/shared-3.2.11.tgz#01899f54949caf1ac241de397bd17069632574de"
  272. integrity sha1-AYmfVJScrxrCQd45e9FwaWMldN4=
  273. acorn-node@^1.6.1:
  274. version "1.8.2"
  275. resolved "https://registry.npm.taobao.org/acorn-node/download/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8"
  276. integrity sha1-EUyV1kU55T3t4j3oudlt98euKvg=
  277. dependencies:
  278. acorn "^7.0.0"
  279. acorn-walk "^7.0.0"
  280. xtend "^4.0.2"
  281. acorn-walk@^7.0.0:
  282. version "7.2.0"
  283. 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"
  284. integrity sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w=
  285. acorn@^7.0.0, acorn@^7.1.1:
  286. version "7.4.1"
  287. 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"
  288. integrity sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=
  289. ansi-styles@^3.2.1:
  290. version "3.2.1"
  291. resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
  292. integrity sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=
  293. dependencies:
  294. color-convert "^1.9.0"
  295. ansi-styles@^4.1.0:
  296. version "4.3.0"
  297. resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
  298. integrity sha1-7dgDYornHATIWuegkG7a00tkiTc=
  299. dependencies:
  300. color-convert "^2.0.1"
  301. ant-design-vue@2.2.6:
  302. version "2.2.6"
  303. 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"
  304. integrity sha1-Ks9F6ouyu4oOSKg/qcaoJ/71I28=
  305. dependencies:
  306. "@ant-design/icons-vue" "^6.0.0"
  307. "@babel/runtime" "^7.10.5"
  308. "@simonwep/pickr" "~1.8.0"
  309. array-tree-filter "^2.1.0"
  310. async-validator "^3.3.0"
  311. dom-align "^1.12.1"
  312. dom-scroll-into-view "^2.0.0"
  313. lodash "^4.17.21"
  314. lodash-es "^4.17.15"
  315. moment "^2.27.0"
  316. omit.js "^2.0.0"
  317. resize-observer-polyfill "^1.5.1"
  318. scroll-into-view-if-needed "^2.2.25"
  319. shallow-equal "^1.0.0"
  320. vue-types "^3.0.0"
  321. warning "^4.0.0"
  322. anymatch@~3.1.2:
  323. version "3.1.2"
  324. resolved "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
  325. integrity sha1-wFV8CWrzLxBhmPT04qODU343hxY=
  326. dependencies:
  327. normalize-path "^3.0.0"
  328. picomatch "^2.0.4"
  329. arg@^5.0.1:
  330. version "5.0.1"
  331. 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"
  332. integrity sha1-6wyaj3d4bK0q+P8rhiiZhC17ats=
  333. array-tree-filter@^2.1.0:
  334. version "2.1.0"
  335. resolved "https://registry.nlark.com/array-tree-filter/download/array-tree-filter-2.1.0.tgz#873ac00fec83749f255ac8dd083814b4f6329190"
  336. integrity sha1-hzrAD+yDdJ8lWsjdCDgUtPYykZA=
  337. asap@~2.0.3:
  338. version "2.0.6"
  339. resolved "https://registry.nlark.com/asap/download/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
  340. integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
  341. assert-never@^1.2.1:
  342. version "1.2.1"
  343. resolved "https://registry.npm.taobao.org/assert-never/download/assert-never-1.2.1.tgz#11f0e363bf146205fb08193b5c7b90f4d1cf44fe"
  344. integrity sha1-EfDjY78UYgX7CBk7XHuQ9NHPRP4=
  345. async-validator@^3.3.0:
  346. version "3.5.2"
  347. 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"
  348. integrity sha1-aOhmqWgk6LJpT/eoMcGiXETV5QA=
  349. autoprefixer@^10.3.4:
  350. version "10.3.4"
  351. resolved "https://registry.nlark.com/autoprefixer/download/autoprefixer-10.3.4.tgz#29efe5d19f51c281953178ddb5b84c5f1ca24c86"
  352. integrity sha1-Ke/l0Z9RwoGVMXjdtbhMXxyiTIY=
  353. dependencies:
  354. browserslist "^4.16.8"
  355. caniuse-lite "^1.0.30001252"
  356. colorette "^1.3.0"
  357. fraction.js "^4.1.1"
  358. normalize-range "^0.1.2"
  359. postcss-value-parser "^4.1.0"
  360. axios-progress-bar@^1.2.0:
  361. version "1.2.0"
  362. resolved "https://registry.nlark.com/axios-progress-bar/download/axios-progress-bar-1.2.0.tgz#f9ee88dc9af977246be1ef07eedfa4c990c639c5"
  363. integrity sha1-+e6I3Jr5dyRr4e8H7t+kyZDGOcU=
  364. axios-retry@^3.1.9:
  365. version "3.1.9"
  366. resolved "https://registry.npm.taobao.org/axios-retry/download/axios-retry-3.1.9.tgz#6c30fc9aeb4519aebaec758b90ef56fa03fe72e8"
  367. integrity sha1-bDD8mutFGa667HWLkO9W+gP+cug=
  368. dependencies:
  369. is-retry-allowed "^1.1.0"
  370. axios@^0.21.4:
  371. version "0.21.4"
  372. 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"
  373. integrity sha1-xnuQ3AVo5cHPKwuFjEO6KOLtpXU=
  374. dependencies:
  375. follow-redirects "^1.14.0"
  376. babel-walk@3.0.0-canary-5:
  377. version "3.0.0-canary-5"
  378. resolved "https://registry.npm.taobao.org/babel-walk/download/babel-walk-3.0.0-canary-5.tgz#f66ecd7298357aee44955f235a6ef54219104b11"
  379. integrity sha1-9m7Ncpg1eu5ElV8jWm71QhkQSxE=
  380. dependencies:
  381. "@babel/types" "^7.9.6"
  382. balanced-match@^1.0.0:
  383. version "1.0.2"
  384. resolved "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
  385. integrity sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=
  386. big.js@^5.2.2:
  387. version "5.2.2"
  388. resolved "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
  389. integrity sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=
  390. binary-extensions@^2.0.0:
  391. version "2.2.0"
  392. resolved "https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
  393. integrity sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=
  394. bluebird@^3.7.2:
  395. version "3.7.2"
  396. 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"
  397. integrity sha1-nyKcFb4nJFT/qXOs4NvueaGww28=
  398. brace-expansion@^1.1.7:
  399. version "1.1.11"
  400. resolved "https://registry.nlark.com/brace-expansion/download/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
  401. integrity sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=
  402. dependencies:
  403. balanced-match "^1.0.0"
  404. concat-map "0.0.1"
  405. braces@^3.0.1, braces@~3.0.2:
  406. version "3.0.2"
  407. resolved "https://registry.nlark.com/braces/download/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
  408. integrity sha1-NFThpGLujVmeI23zNs2epPiv4Qc=
  409. dependencies:
  410. fill-range "^7.0.1"
  411. browserslist@^4.16.8:
  412. version "4.17.0"
  413. 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"
  414. integrity sha1-H82B7HW0HW1JlPsIMbkqwYwBZJw=
  415. dependencies:
  416. caniuse-lite "^1.0.30001254"
  417. colorette "^1.3.0"
  418. electron-to-chromium "^1.3.830"
  419. escalade "^3.1.1"
  420. node-releases "^1.1.75"
  421. bytes@^3.0.0:
  422. version "3.1.0"
  423. resolved "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
  424. integrity sha1-9s95M6Ng4FiPqf3oVlHNx/gF0fY=
  425. call-bind@^1.0.2:
  426. version "1.0.2"
  427. resolved "https://registry.nlark.com/call-bind/download/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
  428. integrity sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=
  429. dependencies:
  430. function-bind "^1.1.1"
  431. get-intrinsic "^1.0.2"
  432. callsites@^3.0.0:
  433. version "3.1.0"
  434. 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"
  435. integrity sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=
  436. camelcase-css@^2.0.1:
  437. version "2.0.1"
  438. resolved "https://registry.npm.taobao.org/camelcase-css/download/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
  439. integrity sha1-7pePaUeRTMMMa0R0G27R338EP9U=
  440. caniuse-lite@^1.0.30001252, caniuse-lite@^1.0.30001254:
  441. version "1.0.30001257"
  442. resolved "https://registry.nlark.com/caniuse-lite/download/caniuse-lite-1.0.30001257.tgz#150aaf649a48bee531104cfeda57f92ce587f6e5"
  443. integrity sha1-FQqvZJpIvuUxEEz+2lf5LOWH9uU=
  444. chalk@^2.0.0:
  445. version "2.4.2"
  446. 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"
  447. integrity sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=
  448. dependencies:
  449. ansi-styles "^3.2.1"
  450. escape-string-regexp "^1.0.5"
  451. supports-color "^5.3.0"
  452. chalk@^4.1.2:
  453. version "4.1.2"
  454. 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"
  455. integrity sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=
  456. dependencies:
  457. ansi-styles "^4.1.0"
  458. supports-color "^7.1.0"
  459. character-parser@^2.2.0:
  460. version "2.2.0"
  461. resolved "https://registry.nlark.com/character-parser/download/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0"
  462. integrity sha1-x84o821LzZdE5f/CxfzeHHMmH8A=
  463. dependencies:
  464. is-regex "^1.0.3"
  465. chokidar@^3.5.2:
  466. version "3.5.2"
  467. 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"
  468. integrity sha1-26OXb8rbAW9m/TZQIdkWANAcHnU=
  469. dependencies:
  470. anymatch "~3.1.2"
  471. braces "~3.0.2"
  472. glob-parent "~5.1.2"
  473. is-binary-path "~2.1.0"
  474. is-glob "~4.0.1"
  475. normalize-path "~3.0.0"
  476. readdirp "~3.6.0"
  477. optionalDependencies:
  478. fsevents "~2.3.2"
  479. color-convert@^1.9.0:
  480. version "1.9.3"
  481. resolved "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
  482. integrity sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=
  483. dependencies:
  484. color-name "1.1.3"
  485. color-convert@^2.0.1:
  486. version "2.0.1"
  487. resolved "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
  488. integrity sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=
  489. dependencies:
  490. color-name "~1.1.4"
  491. color-name@1.1.3:
  492. version "1.1.3"
  493. resolved "https://registry.nlark.com/color-name/download/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
  494. integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
  495. color-name@^1.0.0, color-name@~1.1.4:
  496. version "1.1.4"
  497. resolved "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
  498. integrity sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=
  499. color-string@^1.6.0:
  500. version "1.6.0"
  501. 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"
  502. integrity sha1-w5FfYf4mdnLLfh4GTJ1pIhn2wxI=
  503. dependencies:
  504. color-name "^1.0.0"
  505. simple-swizzle "^0.2.2"
  506. color@^4.0.1:
  507. version "4.0.1"
  508. 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"
  509. integrity sha1-Id9EzRAkWpGxzPW6AxYJsOEOfWc=
  510. dependencies:
  511. color-convert "^2.0.1"
  512. color-string "^1.6.0"
  513. colorette@^1.2.2, colorette@^1.3.0:
  514. version "1.4.0"
  515. 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"
  516. integrity sha1-UZD7uHJ2JZqGrXAL/yxtb6o/ykA=
  517. commander@^6.0.0:
  518. version "6.2.1"
  519. resolved "https://registry.nlark.com/commander/download/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c"
  520. integrity sha1-B5LraC37wyWZm7K4T93duhEKxzw=
  521. compute-scroll-into-view@^1.0.17:
  522. version "1.0.17"
  523. resolved "https://registry.nlark.com/compute-scroll-into-view/download/compute-scroll-into-view-1.0.17.tgz#6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab"
  524. integrity sha1-aojxis2dQunPS6pr7H4FImB6t6s=
  525. concat-map@0.0.1:
  526. version "0.0.1"
  527. resolved "https://registry.nlark.com/concat-map/download/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
  528. integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
  529. consolidate@^0.16.0:
  530. version "0.16.0"
  531. resolved "https://registry.npm.taobao.org/consolidate/download/consolidate-0.16.0.tgz#a11864768930f2f19431660a65906668f5fbdc16"
  532. integrity sha1-oRhkdokw8vGUMWYKZZBmaPX73BY=
  533. dependencies:
  534. bluebird "^3.7.2"
  535. constantinople@^4.0.1:
  536. version "4.0.1"
  537. resolved "https://registry.npm.taobao.org/constantinople/download/constantinople-4.0.1.tgz#0def113fa0e4dc8de83331a5cf79c8b325213151"
  538. integrity sha1-De8RP6Dk3I3oMzGlz3nIsyUhMVE=
  539. dependencies:
  540. "@babel/parser" "^7.6.0"
  541. "@babel/types" "^7.6.1"
  542. core-js@^3.15.1:
  543. version "3.17.3"
  544. 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"
  545. integrity sha1-jovSDpHfmVHpA8q+kfmvSgiVvB4=
  546. cosmiconfig@^7.0.1:
  547. version "7.0.1"
  548. 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"
  549. integrity sha1-cU11ZSLKzoZ4Z8y0R0xdAbuuXW0=
  550. dependencies:
  551. "@types/parse-json" "^4.0.0"
  552. import-fresh "^3.2.1"
  553. parse-json "^5.0.0"
  554. path-type "^4.0.0"
  555. yaml "^1.10.0"
  556. css-color-names@^0.0.4:
  557. version "0.0.4"
  558. resolved "https://registry.nlark.com/css-color-names/download/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
  559. integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=
  560. css-unit-converter@^1.1.1:
  561. version "1.1.2"
  562. resolved "https://registry.npm.taobao.org/css-unit-converter/download/css-unit-converter-1.1.2.tgz#4c77f5a1954e6dbff60695ecb214e3270436ab21"
  563. integrity sha1-THf1oZVObb/2BpXsshTjJwQ2qyE=
  564. cssesc@^3.0.0:
  565. version "3.0.0"
  566. resolved "https://registry.npm.taobao.org/cssesc/download/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
  567. integrity sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=
  568. csstype@^2.6.8:
  569. version "2.6.18"
  570. 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"
  571. integrity sha1-mAqLUwhfNK8xNBCvBk8r0kF4Qhg=
  572. custom-cursor.js@1.3.6:
  573. version "1.3.6"
  574. resolved "https://registry.nlark.com/custom-cursor.js/download/custom-cursor.js-1.3.6.tgz#95c05fbbecac134e12c65a488cc8f952300014d6"
  575. integrity sha1-lcBfu+ysE04SxlpIjMj5UjAAFNY=
  576. debug@^4.3.2:
  577. version "4.3.2"
  578. 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"
  579. integrity sha1-8KScGKyHeeMdSgxgKd+3aHPHQos=
  580. dependencies:
  581. ms "2.1.2"
  582. defined@^1.0.0:
  583. version "1.0.0"
  584. resolved "https://registry.npm.taobao.org/defined/download/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
  585. integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=
  586. detective@^5.2.0:
  587. version "5.2.0"
  588. resolved "https://registry.nlark.com/detective/download/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b"
  589. integrity sha1-/rKnfoW5BOzepFmtiXzJCpm9Kns=
  590. dependencies:
  591. acorn-node "^1.6.1"
  592. defined "^1.0.0"
  593. minimist "^1.1.1"
  594. didyoumean@^1.2.2:
  595. version "1.2.2"
  596. resolved "https://registry.nlark.com/didyoumean/download/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037"
  597. integrity sha1-mJNG/+noObRVXs9WZu3qDT6K0Dc=
  598. dlv@^1.1.3:
  599. version "1.1.3"
  600. resolved "https://registry.npm.taobao.org/dlv/download/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79"
  601. integrity sha1-XBmKihFFNZbnUUlNSYdLx3MvLnk=
  602. doctypes@^1.1.0:
  603. version "1.1.0"
  604. resolved "https://registry.npm.taobao.org/doctypes/download/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9"
  605. integrity sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=
  606. dom-align@^1.12.1:
  607. version "1.12.2"
  608. resolved "https://registry.nlark.com/dom-align/download/dom-align-1.12.2.tgz#0f8164ebd0c9c21b0c790310493cd855892acd4b"
  609. integrity sha1-D4Fk69DJwhsMeQMQSTzYVYkqzUs=
  610. dom-scroll-into-view@^2.0.0:
  611. version "2.0.1"
  612. resolved "https://registry.npm.taobao.org/dom-scroll-into-view/download/dom-scroll-into-view-2.0.1.tgz#0decc8522801fd8d3f1c6ba355a74d382c5f989b"
  613. integrity sha1-DezIUigB/Y0/HGujVadNOCxfmJs=
  614. dom-serializer@^1.0.1:
  615. version "1.3.2"
  616. 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"
  617. integrity sha1-YgZDfTLO767HFhgDIwx6ILwbTZE=
  618. dependencies:
  619. domelementtype "^2.0.1"
  620. domhandler "^4.2.0"
  621. entities "^2.0.0"
  622. domelementtype@^2.0.1, domelementtype@^2.2.0:
  623. version "2.2.0"
  624. 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"
  625. integrity sha1-mgtsJ4LtahxzI9QiZxg9+b2LHVc=
  626. domhandler@^4.0.0, domhandler@^4.2.0:
  627. version "4.2.2"
  628. resolved "https://registry.nlark.com/domhandler/download/domhandler-4.2.2.tgz#e825d721d19a86b8c201a35264e226c678ee755f"
  629. integrity sha1-6CXXIdGahrjCAaNSZOImxnjudV8=
  630. dependencies:
  631. domelementtype "^2.2.0"
  632. domutils@^2.5.2:
  633. version "2.8.0"
  634. 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"
  635. integrity sha1-RDfe9dtuLR9dbuhZvZXKfQIEgTU=
  636. dependencies:
  637. dom-serializer "^1.0.1"
  638. domelementtype "^2.2.0"
  639. domhandler "^4.2.0"
  640. electron-to-chromium@^1.3.830:
  641. version "1.3.842"
  642. resolved "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.842.tgz#641e414012dded277468892c0156cb01984f4f6f"
  643. integrity sha1-ZB5BQBLd7Sd0aIksAVbLAZhPT28=
  644. emmet@^2.3.0:
  645. version "2.3.4"
  646. resolved "https://registry.nlark.com/emmet/download/emmet-2.3.4.tgz#5ba0d7a5569a68c7697dfa890c772e4f3179d123"
  647. integrity sha1-W6DXpVaaaMdpffqJDHcuTzF50SM=
  648. dependencies:
  649. "@emmetio/abbreviation" "^2.2.2"
  650. "@emmetio/css-abbreviation" "^2.1.4"
  651. emojis-list@^3.0.0:
  652. version "3.0.0"
  653. resolved "https://registry.nlark.com/emojis-list/download/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
  654. integrity sha1-VXBmIEatKeLpFucariYKvf9Pang=
  655. entities@^2.0.0:
  656. version "2.2.0"
  657. resolved "https://registry.nlark.com/entities/download/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
  658. integrity sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=
  659. error-ex@^1.3.1:
  660. version "1.3.2"
  661. resolved "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
  662. integrity sha1-tKxAZIEH/c3PriQvQovqihTU8b8=
  663. dependencies:
  664. is-arrayish "^0.2.1"
  665. esbuild@^0.12.17:
  666. version "0.12.28"
  667. resolved "https://registry.nlark.com/esbuild/download/esbuild-0.12.28.tgz#84da0d2a0d0dee181281545271e0d65cf6fab1ef"
  668. integrity sha1-hNoNKg0N7hgSgVRSceDWXPb6se8=
  669. escalade@^3.1.1:
  670. version "3.1.1"
  671. resolved "https://registry.nlark.com/escalade/download/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
  672. integrity sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=
  673. escape-string-regexp@^1.0.5:
  674. version "1.0.5"
  675. resolved "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
  676. integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
  677. estree-walker@^2.0.1, estree-walker@^2.0.2:
  678. version "2.0.2"
  679. resolved "https://registry.npm.taobao.org/estree-walker/download/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
  680. integrity sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw=
  681. fast-glob@^3.2.7:
  682. version "3.2.7"
  683. resolved "https://registry.nlark.com/fast-glob/download/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1"
  684. integrity sha1-/Wy3otfpqnp4RhEehaGW1rL3ZqE=
  685. dependencies:
  686. "@nodelib/fs.stat" "^2.0.2"
  687. "@nodelib/fs.walk" "^1.2.3"
  688. glob-parent "^5.1.2"
  689. merge2 "^1.3.0"
  690. micromatch "^4.0.4"
  691. fastq@^1.6.0:
  692. version "1.13.0"
  693. resolved "https://registry.nlark.com/fastq/download/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
  694. integrity sha1-YWdg+Ip1Jr38WWt8q4wYk4w2uYw=
  695. dependencies:
  696. reusify "^1.0.4"
  697. fill-range@^7.0.1:
  698. version "7.0.1"
  699. resolved "https://registry.nlark.com/fill-range/download/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
  700. integrity sha1-GRmmp8df44ssfHflGYU12prN2kA=
  701. dependencies:
  702. to-regex-range "^5.0.1"
  703. follow-redirects@^1.14.0:
  704. version "1.14.4"
  705. 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"
  706. integrity sha1-g4/fSKi73XnlLuUfsclOPtmLk3k=
  707. fraction.js@^4.1.1:
  708. version "4.1.1"
  709. 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"
  710. integrity sha1-rE5SBHPa5nAS1hiquR7aCby0AP8=
  711. fs-extra@^10.0.0:
  712. version "10.0.0"
  713. resolved "https://registry.nlark.com/fs-extra/download/fs-extra-10.0.0.tgz#9ff61b655dde53fb34a82df84bb214ce802e17c1"
  714. integrity sha1-n/YbZV3eU/s0qC34S7IUzoAuF8E=
  715. dependencies:
  716. graceful-fs "^4.2.0"
  717. jsonfile "^6.0.1"
  718. universalify "^2.0.0"
  719. fs.realpath@^1.0.0:
  720. version "1.0.0"
  721. resolved "https://registry.nlark.com/fs.realpath/download/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
  722. integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
  723. fsevents@~2.3.2:
  724. version "2.3.2"
  725. resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
  726. integrity sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=
  727. function-bind@^1.1.1:
  728. version "1.1.1"
  729. resolved "https://registry.nlark.com/function-bind/download/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
  730. integrity sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=
  731. generic-names@^2.0.1:
  732. version "2.0.1"
  733. resolved "https://registry.nlark.com/generic-names/download/generic-names-2.0.1.tgz#f8a378ead2ccaa7a34f0317b05554832ae41b872"
  734. integrity sha1-+KN46tLMqno08DF7BVVIMq5BuHI=
  735. dependencies:
  736. loader-utils "^1.1.0"
  737. get-intrinsic@^1.0.2:
  738. version "1.1.1"
  739. resolved "https://registry.nlark.com/get-intrinsic/download/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
  740. integrity sha1-FfWfN2+FXERpY5SPDSTNNje0q8Y=
  741. dependencies:
  742. function-bind "^1.1.1"
  743. has "^1.0.3"
  744. has-symbols "^1.0.1"
  745. glob-parent@^5.1.2, glob-parent@~5.1.2:
  746. version "5.1.2"
  747. 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"
  748. integrity sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=
  749. dependencies:
  750. is-glob "^4.0.1"
  751. glob-parent@^6.0.1:
  752. version "6.0.1"
  753. 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"
  754. integrity sha1-QgVPaF62pE56fRialu+kClSXGqc=
  755. dependencies:
  756. is-glob "^4.0.1"
  757. glob@^7.0.0, glob@^7.1.3:
  758. version "7.1.7"
  759. resolved "https://registry.nlark.com/glob/download/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
  760. integrity sha1-Oxk+kjPwHULQs/eClLvutBj5SpA=
  761. dependencies:
  762. fs.realpath "^1.0.0"
  763. inflight "^1.0.4"
  764. inherits "2"
  765. minimatch "^3.0.4"
  766. once "^1.3.0"
  767. path-is-absolute "^1.0.0"
  768. graceful-fs@^4.1.6, graceful-fs@^4.2.0:
  769. version "4.2.8"
  770. 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"
  771. integrity sha1-5BK40z9eAGWTy9PO5t+fLOu+gCo=
  772. gsap@^3.7.1:
  773. version "3.7.1"
  774. 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"
  775. integrity sha1-HFhX9PvL0/XKC1E+96v4KPuqIKg=
  776. has-flag@^3.0.0:
  777. version "3.0.0"
  778. resolved "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
  779. integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
  780. has-flag@^4.0.0:
  781. version "4.0.0"
  782. resolved "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
  783. integrity sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=
  784. has-pkg@^0.0.1:
  785. version "0.0.1"
  786. resolved "https://registry.nlark.com/has-pkg/download/has-pkg-0.0.1.tgz#f9d9139ed83e2487deae5eb4ac13182a2e903857"
  787. integrity sha1-+dkTntg+JIferl60rBMYKi6QOFc=
  788. has-symbols@^1.0.1, has-symbols@^1.0.2:
  789. version "1.0.2"
  790. resolved "https://registry.nlark.com/has-symbols/download/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
  791. integrity sha1-Fl0wcMADCXUqEjakeTMeOsVvFCM=
  792. has-tostringtag@^1.0.0:
  793. version "1.0.0"
  794. 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"
  795. integrity sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU=
  796. dependencies:
  797. has-symbols "^1.0.2"
  798. has@^1.0.3:
  799. version "1.0.3"
  800. resolved "https://registry.nlark.com/has/download/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
  801. integrity sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=
  802. dependencies:
  803. function-bind "^1.1.1"
  804. hash-sum@^2.0.0:
  805. version "2.0.0"
  806. resolved "https://registry.npm.taobao.org/hash-sum/download/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a"
  807. integrity sha1-gdAbtd6OpKIUrV1urRtSNGCwtFo=
  808. hex-color-regex@^1.1.0:
  809. version "1.1.0"
  810. resolved "https://registry.nlark.com/hex-color-regex/download/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
  811. integrity sha1-TAb8y0YC/iYCs8k9+C1+fb8aio4=
  812. hsl-regex@^1.0.0:
  813. version "1.0.0"
  814. resolved "https://registry.nlark.com/hsl-regex/download/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e"
  815. integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=
  816. hsla-regex@^1.0.0:
  817. version "1.0.0"
  818. resolved "https://registry.npm.taobao.org/hsla-regex/download/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"
  819. integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg=
  820. html-tags@^3.1.0:
  821. version "3.1.0"
  822. resolved "https://registry.npm.taobao.org/html-tags/download/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140"
  823. integrity sha1-e15vfmZen7QfMAB+2eDUHpf7IUA=
  824. htmlparser2@^6.1.0:
  825. version "6.1.0"
  826. 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"
  827. integrity sha1-xNditsM3GgXb5l6UrkOp+EX7j7c=
  828. dependencies:
  829. domelementtype "^2.0.1"
  830. domhandler "^4.0.0"
  831. domutils "^2.5.2"
  832. entities "^2.0.0"
  833. icss-replace-symbols@^1.1.0:
  834. version "1.1.0"
  835. resolved "https://registry.npm.taobao.org/icss-replace-symbols/download/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
  836. integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
  837. icss-utils@^5.0.0:
  838. version "5.1.0"
  839. resolved "https://registry.npm.taobao.org/icss-utils/download/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
  840. integrity sha1-xr5oWKvQE9do6YNmrkfiXViHsa4=
  841. import-cwd@^3.0.0:
  842. version "3.0.0"
  843. 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"
  844. integrity sha1-IIRVR3GAFRJuqbNna3WS+4vUz5I=
  845. dependencies:
  846. import-from "^3.0.0"
  847. import-fresh@^3.2.1:
  848. version "3.3.0"
  849. resolved "https://registry.npm.taobao.org/import-fresh/download/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
  850. integrity sha1-NxYsJfy566oublPVtNiM4X2eDCs=
  851. dependencies:
  852. parent-module "^1.0.0"
  853. resolve-from "^4.0.0"
  854. import-from@^3.0.0:
  855. version "3.0.0"
  856. resolved "https://registry.nlark.com/import-from/download/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966"
  857. integrity sha1-BVz+w4zVon2AV8pRN219O/CJGWY=
  858. dependencies:
  859. resolve-from "^5.0.0"
  860. inflight@^1.0.4:
  861. version "1.0.6"
  862. resolved "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
  863. integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
  864. dependencies:
  865. once "^1.3.0"
  866. wrappy "1"
  867. inherits@2:
  868. version "2.0.4"
  869. resolved "https://registry.nlark.com/inherits/download/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
  870. integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=
  871. is-arrayish@^0.2.1:
  872. version "0.2.1"
  873. resolved "https://registry.npm.taobao.org/is-arrayish/download/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
  874. integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
  875. is-arrayish@^0.3.1:
  876. version "0.3.2"
  877. resolved "https://registry.npm.taobao.org/is-arrayish/download/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
  878. integrity sha1-RXSirlb3qyBolvtDHq7tBm/fjwM=
  879. is-binary-path@~2.1.0:
  880. version "2.1.0"
  881. resolved "https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
  882. integrity sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=
  883. dependencies:
  884. binary-extensions "^2.0.0"
  885. is-color-stop@^1.1.0:
  886. version "1.1.0"
  887. resolved "https://registry.nlark.com/is-color-stop/download/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345"
  888. integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=
  889. dependencies:
  890. css-color-names "^0.0.4"
  891. hex-color-regex "^1.1.0"
  892. hsl-regex "^1.0.0"
  893. hsla-regex "^1.0.0"
  894. rgb-regex "^1.0.1"
  895. rgba-regex "^1.0.0"
  896. is-core-module@^2.2.0:
  897. version "2.6.0"
  898. 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"
  899. integrity sha1-11U7JSb+Wbkro+QMjfdX7Ipwnhk=
  900. dependencies:
  901. has "^1.0.3"
  902. is-expression@^4.0.0:
  903. version "4.0.0"
  904. resolved "https://registry.npm.taobao.org/is-expression/download/is-expression-4.0.0.tgz#c33155962abf21d0afd2552514d67d2ec16fd2ab"
  905. integrity sha1-wzFVliq/IdCv0lUlFNZ9LsFv0qs=
  906. dependencies:
  907. acorn "^7.1.1"
  908. object-assign "^4.1.1"
  909. is-extglob@^2.1.1:
  910. version "2.1.1"
  911. resolved "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
  912. integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
  913. is-glob@^4.0.1, is-glob@~4.0.1:
  914. version "4.0.1"
  915. resolved "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
  916. integrity sha1-dWfb6fL14kZ7x3q4PEopSCQHpdw=
  917. dependencies:
  918. is-extglob "^2.1.1"
  919. is-number@^7.0.0:
  920. version "7.0.0"
  921. resolved "https://registry.nlark.com/is-number/download/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
  922. integrity sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=
  923. is-plain-object@3.0.1:
  924. version "3.0.1"
  925. resolved "https://registry.npm.taobao.org/is-plain-object/download/is-plain-object-3.0.1.tgz#662d92d24c0aa4302407b0d45d21f2251c85f85b"
  926. integrity sha1-Zi2S0kwKpDAkB7DUXSHyJRyF+Fs=
  927. is-promise@^2.0.0:
  928. version "2.2.2"
  929. resolved "https://registry.nlark.com/is-promise/download/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
  930. integrity sha1-OauVnMv5p3TPB597QMeib3YxNfE=
  931. is-regex@^1.0.3:
  932. version "1.1.4"
  933. 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"
  934. integrity sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=
  935. dependencies:
  936. call-bind "^1.0.2"
  937. has-tostringtag "^1.0.0"
  938. is-retry-allowed@^1.1.0:
  939. version "1.2.0"
  940. resolved "https://registry.npm.taobao.org/is-retry-allowed/download/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
  941. integrity sha1-13hIi9CkZmo76KFIK58rqv7eqLQ=
  942. js-stringify@^1.0.2:
  943. version "1.0.2"
  944. resolved "https://registry.nlark.com/js-stringify/download/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db"
  945. integrity sha1-Fzb939lyTyijaCrcYjCufk6Weds=
  946. "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
  947. version "4.0.0"
  948. 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"
  949. integrity sha1-GSA/tZmR35jjoocFDUZHzerzJJk=
  950. json-parse-even-better-errors@^2.3.0:
  951. version "2.3.1"
  952. resolved "https://registry.nlark.com/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
  953. integrity sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=
  954. json5@^1.0.1:
  955. version "1.0.1"
  956. resolved "https://registry.npm.taobao.org/json5/download/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
  957. integrity sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=
  958. dependencies:
  959. minimist "^1.2.0"
  960. jsonc-parser@^2.3.0:
  961. version "2.3.1"
  962. resolved "https://registry.nlark.com/jsonc-parser/download/jsonc-parser-2.3.1.tgz#59549150b133f2efacca48fe9ce1ec0659af2342"
  963. integrity sha1-WVSRULEz8u+sykj+nOHsBlmvI0I=
  964. jsonc-parser@^3.0.0:
  965. version "3.0.0"
  966. resolved "https://registry.nlark.com/jsonc-parser/download/jsonc-parser-3.0.0.tgz#abdd785701c7e7eaca8a9ec8cf070ca51a745a22"
  967. integrity sha1-q914VwHH5+rKip7IzwcMpRp0WiI=
  968. jsonfile@^6.0.1:
  969. version "6.1.0"
  970. resolved "https://registry.nlark.com/jsonfile/download/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
  971. integrity sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4=
  972. dependencies:
  973. universalify "^2.0.0"
  974. optionalDependencies:
  975. graceful-fs "^4.1.6"
  976. jstransformer@1.0.0:
  977. version "1.0.0"
  978. resolved "https://registry.nlark.com/jstransformer/download/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3"
  979. integrity sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=
  980. dependencies:
  981. is-promise "^2.0.0"
  982. promise "^7.0.1"
  983. lilconfig@^2.0.3:
  984. version "2.0.3"
  985. resolved "https://registry.nlark.com/lilconfig/download/lilconfig-2.0.3.tgz#68f3005e921dafbd2a2afb48379986aa6d2579fd"
  986. integrity sha1-aPMAXpIdr70qKvtIN5mGqm0lef0=
  987. lines-and-columns@^1.1.6:
  988. version "1.1.6"
  989. resolved "https://registry.nlark.com/lines-and-columns/download/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
  990. integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
  991. loader-utils@^1.1.0:
  992. version "1.4.0"
  993. 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"
  994. integrity sha1-xXm140yzSxp07cbB+za/o3HVphM=
  995. dependencies:
  996. big.js "^5.2.2"
  997. emojis-list "^3.0.0"
  998. json5 "^1.0.1"
  999. lodash-es@^4.17.15, lodash-es@^4.17.21:
  1000. version "4.17.21"
  1001. resolved "https://registry.nlark.com/lodash-es/download/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee"
  1002. integrity sha1-Q+YmxG5lkbd1C+srUBFzkMYJ4+4=
  1003. lodash.camelcase@^4.3.0:
  1004. version "4.3.0"
  1005. resolved "https://registry.npm.taobao.org/lodash.camelcase/download/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
  1006. integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY=
  1007. lodash.topath@^4.5.2:
  1008. version "4.5.2"
  1009. resolved "https://registry.npm.taobao.org/lodash.topath/download/lodash.topath-4.5.2.tgz#3616351f3bba61994a0931989660bd03254fd009"
  1010. integrity sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=
  1011. lodash@^4.17.15, lodash@^4.17.21:
  1012. version "4.17.21"
  1013. resolved "https://registry.nlark.com/lodash/download/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
  1014. integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=
  1015. loose-envify@^1.0.0:
  1016. version "1.4.0"
  1017. resolved "https://registry.nlark.com/loose-envify/download/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
  1018. integrity sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=
  1019. dependencies:
  1020. js-tokens "^3.0.0 || ^4.0.0"
  1021. lru-cache@^5.1.1:
  1022. version "5.1.1"
  1023. resolved "https://registry.nlark.com/lru-cache/download/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
  1024. integrity sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=
  1025. dependencies:
  1026. yallist "^3.0.2"
  1027. lru-cache@^6.0.0:
  1028. version "6.0.0"
  1029. resolved "https://registry.nlark.com/lru-cache/download/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
  1030. integrity sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=
  1031. dependencies:
  1032. yallist "^4.0.0"
  1033. magic-string@^0.25.7:
  1034. version "0.25.7"
  1035. 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"
  1036. integrity sha1-P0l9b9NMZpxnmNy4IfLvMfVEUFE=
  1037. dependencies:
  1038. sourcemap-codec "^1.4.4"
  1039. merge-source-map@^1.1.0:
  1040. version "1.1.0"
  1041. resolved "https://registry.nlark.com/merge-source-map/download/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646"
  1042. integrity sha1-L93n5gIJOfcJBqaPLXrmheTIxkY=
  1043. dependencies:
  1044. source-map "^0.6.1"
  1045. merge2@^1.3.0:
  1046. version "1.4.1"
  1047. resolved "https://registry.npm.taobao.org/merge2/download/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
  1048. integrity sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=
  1049. micromatch@^4.0.4:
  1050. version "4.0.4"
  1051. resolved "https://registry.nlark.com/micromatch/download/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
  1052. integrity sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k=
  1053. dependencies:
  1054. braces "^3.0.1"
  1055. picomatch "^2.2.3"
  1056. minimatch@^3.0.4:
  1057. version "3.0.4"
  1058. resolved "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
  1059. integrity sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=
  1060. dependencies:
  1061. brace-expansion "^1.1.7"
  1062. minimist@^1.1.1, minimist@^1.2.0:
  1063. version "1.2.5"
  1064. 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"
  1065. integrity sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=
  1066. mitt@^3.0.0:
  1067. version "3.0.0"
  1068. 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"
  1069. integrity sha1-ae+b1cgP9vV0c+jYkybQHEFL4L0=
  1070. modern-normalize@^1.1.0:
  1071. version "1.1.0"
  1072. 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"
  1073. integrity sha1-2o6AFA2SIUJr1PclxuESg9NPkLc=
  1074. moment@^2.27.0, moment@^2.29.1:
  1075. version "2.29.1"
  1076. resolved "https://registry.nlark.com/moment/download/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3"
  1077. integrity sha1-sr52n6MZQL6e7qZGnAdeNQBvo9M=
  1078. ms@2.1.2:
  1079. version "2.1.2"
  1080. resolved "https://registry.nlark.com/ms/download/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
  1081. integrity sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=
  1082. nanoid@^3.1.23:
  1083. version "3.1.25"
  1084. 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"
  1085. integrity sha1-CcoydHwOVD8OGBS303k0d/nI4VI=
  1086. nanopop@^2.1.0:
  1087. version "2.1.0"
  1088. resolved "https://registry.npm.taobao.org/nanopop/download/nanopop-2.1.0.tgz#23476513cee2405888afd2e8a4b54066b70b9e60"
  1089. integrity sha1-I0dlE87iQFiIr9LopLVAZrcLnmA=
  1090. node-emoji@^1.11.0:
  1091. version "1.11.0"
  1092. resolved "https://registry.nlark.com/node-emoji/download/node-emoji-1.11.0.tgz#69a0150e6946e2f115e9d7ea4df7971e2628301c"
  1093. integrity sha1-aaAVDmlG4vEV6dfqTfeXHiYoMBw=
  1094. dependencies:
  1095. lodash "^4.17.21"
  1096. node-releases@^1.1.75:
  1097. version "1.1.75"
  1098. 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"
  1099. integrity sha1-bdjIdrmJehuOWgLeJq+nm7VOu/4=
  1100. normalize-path@^3.0.0, normalize-path@~3.0.0:
  1101. version "3.0.0"
  1102. resolved "https://registry.npm.taobao.org/normalize-path/download/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
  1103. integrity sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=
  1104. normalize-range@^0.1.2:
  1105. version "0.1.2"
  1106. resolved "https://registry.nlark.com/normalize-range/download/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
  1107. integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
  1108. object-assign@^4.1.1:
  1109. version "4.1.1"
  1110. 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"
  1111. integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
  1112. object-hash@^2.2.0:
  1113. version "2.2.0"
  1114. resolved "https://registry.nlark.com/object-hash/download/object-hash-2.2.0.tgz#5ad518581eefc443bd763472b8ff2e9c2c0d54a5"
  1115. integrity sha1-WtUYWB7vxEO9djRyuP8unCwNVKU=
  1116. omit.js@^2.0.0:
  1117. version "2.0.2"
  1118. resolved "https://registry.npm.taobao.org/omit.js/download/omit.js-2.0.2.tgz#dd9b8436fab947a5f3ff214cb2538631e313ec2f"
  1119. integrity sha1-3ZuENvq5R6Xz/yFMslOGMeMT7C8=
  1120. once@^1.3.0:
  1121. version "1.4.0"
  1122. resolved "https://registry.nlark.com/once/download/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
  1123. integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
  1124. dependencies:
  1125. wrappy "1"
  1126. parent-module@^1.0.0:
  1127. version "1.0.1"
  1128. resolved "https://registry.npm.taobao.org/parent-module/download/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
  1129. integrity sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=
  1130. dependencies:
  1131. callsites "^3.0.0"
  1132. parse-json@^5.0.0:
  1133. version "5.2.0"
  1134. resolved "https://registry.nlark.com/parse-json/download/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
  1135. integrity sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=
  1136. dependencies:
  1137. "@babel/code-frame" "^7.0.0"
  1138. error-ex "^1.3.1"
  1139. json-parse-even-better-errors "^2.3.0"
  1140. lines-and-columns "^1.1.6"
  1141. path-is-absolute@^1.0.0:
  1142. version "1.0.1"
  1143. resolved "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
  1144. integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
  1145. path-parse@^1.0.6:
  1146. version "1.0.7"
  1147. resolved "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
  1148. integrity sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=
  1149. path-type@^4.0.0:
  1150. version "4.0.0"
  1151. resolved "https://registry.npm.taobao.org/path-type/download/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
  1152. integrity sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=
  1153. picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3:
  1154. version "2.3.0"
  1155. 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"
  1156. integrity sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI=
  1157. postcss-js@^3.0.3:
  1158. version "3.0.3"
  1159. resolved "https://registry.npm.taobao.org/postcss-js/download/postcss-js-3.0.3.tgz#2f0bd370a2e8599d45439f6970403b5873abda33"
  1160. integrity sha1-LwvTcKLoWZ1FQ59pcEA7WHOr2jM=
  1161. dependencies:
  1162. camelcase-css "^2.0.1"
  1163. postcss "^8.1.6"
  1164. postcss-load-config@^3.1.0:
  1165. version "3.1.0"
  1166. resolved "https://registry.nlark.com/postcss-load-config/download/postcss-load-config-3.1.0.tgz#d39c47091c4aec37f50272373a6a648ef5e97829"
  1167. integrity sha1-05xHCRxK7Df1AnI3OmpkjvXpeCk=
  1168. dependencies:
  1169. import-cwd "^3.0.0"
  1170. lilconfig "^2.0.3"
  1171. yaml "^1.10.2"
  1172. postcss-modules-extract-imports@^3.0.0:
  1173. version "3.0.0"
  1174. resolved "https://registry.nlark.com/postcss-modules-extract-imports/download/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d"
  1175. integrity sha1-zaHwR8CugMl9vijD52pDuIAldB0=
  1176. postcss-modules-local-by-default@^4.0.0:
  1177. version "4.0.0"
  1178. resolved "https://registry.nlark.com/postcss-modules-local-by-default/download/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c"
  1179. integrity sha1-67tU+uFZjuz99pGgKz/zs5ClpRw=
  1180. dependencies:
  1181. icss-utils "^5.0.0"
  1182. postcss-selector-parser "^6.0.2"
  1183. postcss-value-parser "^4.1.0"
  1184. postcss-modules-scope@^3.0.0:
  1185. version "3.0.0"
  1186. resolved "https://registry.npm.taobao.org/postcss-modules-scope/download/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06"
  1187. integrity sha1-nvMVFFbTu/oSDKRImN/Kby+gHwY=
  1188. dependencies:
  1189. postcss-selector-parser "^6.0.4"
  1190. postcss-modules-values@^4.0.0:
  1191. version "4.0.0"
  1192. resolved "https://registry.nlark.com/postcss-modules-values/download/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c"
  1193. integrity sha1-18Xn5ow7s8myfL9Iyguz/7RgLJw=
  1194. dependencies:
  1195. icss-utils "^5.0.0"
  1196. postcss-modules@^4.0.0:
  1197. version "4.2.2"
  1198. 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"
  1199. integrity sha1-Xnd3xaiWTqF2kZ2QsuVO+JEyHOU=
  1200. dependencies:
  1201. generic-names "^2.0.1"
  1202. icss-replace-symbols "^1.1.0"
  1203. lodash.camelcase "^4.3.0"
  1204. postcss-modules-extract-imports "^3.0.0"
  1205. postcss-modules-local-by-default "^4.0.0"
  1206. postcss-modules-scope "^3.0.0"
  1207. postcss-modules-values "^4.0.0"
  1208. string-hash "^1.1.1"
  1209. postcss-nested@5.0.6:
  1210. version "5.0.6"
  1211. 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"
  1212. integrity sha1-RmND9/yNPUavPn26P81H0FKpRbw=
  1213. dependencies:
  1214. postcss-selector-parser "^6.0.6"
  1215. postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.6:
  1216. version "6.0.6"
  1217. 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"
  1218. integrity sha1-LFu6gXSsL2mBq2MaQqsO5UrzMuo=
  1219. dependencies:
  1220. cssesc "^3.0.0"
  1221. util-deprecate "^1.0.2"
  1222. postcss-value-parser@^3.3.0:
  1223. version "3.3.1"
  1224. 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"
  1225. integrity sha1-n/giVH4okyE88cMO+lGsX9G6goE=
  1226. postcss-value-parser@^4.1.0:
  1227. version "4.1.0"
  1228. 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"
  1229. integrity sha1-RD9qIM7WSBor2k+oUypuVdeJoss=
  1230. postcss@^8.1.10, postcss@^8.1.6, postcss@^8.2.1, postcss@^8.3.6:
  1231. version "8.3.6"
  1232. 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"
  1233. integrity sha1-JzDddql5afN/U7mmCWGXvjEcxOo=
  1234. dependencies:
  1235. colorette "^1.2.2"
  1236. nanoid "^3.1.23"
  1237. source-map-js "^0.6.2"
  1238. pretty-hrtime@^1.0.3:
  1239. version "1.0.3"
  1240. resolved "https://registry.npm.taobao.org/pretty-hrtime/download/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
  1241. integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
  1242. promise@^7.0.1:
  1243. version "7.3.1"
  1244. resolved "https://registry.nlark.com/promise/download/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
  1245. integrity sha1-BktyYCsY+Q8pGSuLG8QY/9Hr078=
  1246. dependencies:
  1247. asap "~2.0.3"
  1248. pug-attrs@^3.0.0:
  1249. version "3.0.0"
  1250. resolved "https://registry.npm.taobao.org/pug-attrs/download/pug-attrs-3.0.0.tgz#b10451e0348165e31fad1cc23ebddd9dc7347c41"
  1251. integrity sha1-sQRR4DSBZeMfrRzCPr3dncc0fEE=
  1252. dependencies:
  1253. constantinople "^4.0.1"
  1254. js-stringify "^1.0.2"
  1255. pug-runtime "^3.0.0"
  1256. pug-code-gen@^3.0.2:
  1257. version "3.0.2"
  1258. resolved "https://registry.npm.taobao.org/pug-code-gen/download/pug-code-gen-3.0.2.tgz#ad190f4943133bf186b60b80de483100e132e2ce"
  1259. integrity sha1-rRkPSUMTO/GGtguA3kgxAOEy4s4=
  1260. dependencies:
  1261. constantinople "^4.0.1"
  1262. doctypes "^1.1.0"
  1263. js-stringify "^1.0.2"
  1264. pug-attrs "^3.0.0"
  1265. pug-error "^2.0.0"
  1266. pug-runtime "^3.0.0"
  1267. void-elements "^3.1.0"
  1268. with "^7.0.0"
  1269. pug-error@^2.0.0:
  1270. version "2.0.0"
  1271. resolved "https://registry.nlark.com/pug-error/download/pug-error-2.0.0.tgz#5c62173cb09c34de2a2ce04f17b8adfec74d8ca5"
  1272. integrity sha1-XGIXPLCcNN4qLOBPF7it/sdNjKU=
  1273. pug-filters@^4.0.0:
  1274. version "4.0.0"
  1275. resolved "https://registry.npm.taobao.org/pug-filters/download/pug-filters-4.0.0.tgz#d3e49af5ba8472e9b7a66d980e707ce9d2cc9b5e"
  1276. integrity sha1-0+Sa9bqEcum3pm2YDnB86dLMm14=
  1277. dependencies:
  1278. constantinople "^4.0.1"
  1279. jstransformer "1.0.0"
  1280. pug-error "^2.0.0"
  1281. pug-walk "^2.0.0"
  1282. resolve "^1.15.1"
  1283. pug-lexer@^5.0.1:
  1284. version "5.0.1"
  1285. resolved "https://registry.npm.taobao.org/pug-lexer/download/pug-lexer-5.0.1.tgz#ae44628c5bef9b190b665683b288ca9024b8b0d5"
  1286. integrity sha1-rkRijFvvmxkLZlaDsojKkCS4sNU=
  1287. dependencies:
  1288. character-parser "^2.2.0"
  1289. is-expression "^4.0.0"
  1290. pug-error "^2.0.0"
  1291. pug-linker@^4.0.0:
  1292. version "4.0.0"
  1293. resolved "https://registry.npm.taobao.org/pug-linker/download/pug-linker-4.0.0.tgz#12cbc0594fc5a3e06b9fc59e6f93c146962a7708"
  1294. integrity sha1-EsvAWU/Fo+Brn8Web5PBRpYqdwg=
  1295. dependencies:
  1296. pug-error "^2.0.0"
  1297. pug-walk "^2.0.0"
  1298. pug-load@^3.0.0:
  1299. version "3.0.0"
  1300. resolved "https://registry.npm.taobao.org/pug-load/download/pug-load-3.0.0.tgz#9fd9cda52202b08adb11d25681fb9f34bd41b662"
  1301. integrity sha1-n9nNpSICsIrbEdJWgfufNL1BtmI=
  1302. dependencies:
  1303. object-assign "^4.1.1"
  1304. pug-walk "^2.0.0"
  1305. pug-parser@^6.0.0:
  1306. version "6.0.0"
  1307. resolved "https://registry.npm.taobao.org/pug-parser/download/pug-parser-6.0.0.tgz#a8fdc035863a95b2c1dc5ebf4ecf80b4e76a1260"
  1308. integrity sha1-qP3ANYY6lbLB3F6/Ts+AtOdqEmA=
  1309. dependencies:
  1310. pug-error "^2.0.0"
  1311. token-stream "1.0.0"
  1312. pug-runtime@^3.0.0, pug-runtime@^3.0.1:
  1313. version "3.0.1"
  1314. resolved "https://registry.npm.taobao.org/pug-runtime/download/pug-runtime-3.0.1.tgz#f636976204723f35a8c5f6fad6acda2a191b83d7"
  1315. integrity sha1-9jaXYgRyPzWoxfb61qzaKhkbg9c=
  1316. pug-strip-comments@^2.0.0:
  1317. version "2.0.0"
  1318. resolved "https://registry.npm.taobao.org/pug-strip-comments/download/pug-strip-comments-2.0.0.tgz#f94b07fd6b495523330f490a7f554b4ff876303e"
  1319. integrity sha1-+UsH/WtJVSMzD0kKf1VLT/h2MD4=
  1320. dependencies:
  1321. pug-error "^2.0.0"
  1322. pug-walk@^2.0.0:
  1323. version "2.0.0"
  1324. resolved "https://registry.npm.taobao.org/pug-walk/download/pug-walk-2.0.0.tgz#417aabc29232bb4499b5b5069a2b2d2a24d5f5fe"
  1325. integrity sha1-QXqrwpIyu0SZtbUGmistKiTV9f4=
  1326. pug@^3.0.2:
  1327. version "3.0.2"
  1328. resolved "https://registry.npm.taobao.org/pug/download/pug-3.0.2.tgz#f35c7107343454e43bc27ae0ff76c731b78ea535"
  1329. integrity sha1-81xxBzQ0VOQ7wnrg/3bHMbeOpTU=
  1330. dependencies:
  1331. pug-code-gen "^3.0.2"
  1332. pug-filters "^4.0.0"
  1333. pug-lexer "^5.0.1"
  1334. pug-linker "^4.0.0"
  1335. pug-load "^3.0.0"
  1336. pug-parser "^6.0.0"
  1337. pug-runtime "^3.0.1"
  1338. pug-strip-comments "^2.0.0"
  1339. purgecss@^4.0.3:
  1340. version "4.0.3"
  1341. resolved "https://registry.npm.taobao.org/purgecss/download/purgecss-4.0.3.tgz#8147b429f9c09db719e05d64908ea8b672913742"
  1342. integrity sha1-gUe0KfnAnbcZ4F1kkI6otnKRN0I=
  1343. dependencies:
  1344. commander "^6.0.0"
  1345. glob "^7.0.0"
  1346. postcss "^8.2.1"
  1347. postcss-selector-parser "^6.0.2"
  1348. queue-microtask@^1.2.2:
  1349. version "1.2.3"
  1350. resolved "https://registry.nlark.com/queue-microtask/download/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
  1351. integrity sha1-SSkii7xyTfrEPg77BYyve2z7YkM=
  1352. quick-lru@^5.1.1:
  1353. version "5.1.1"
  1354. resolved "https://registry.nlark.com/quick-lru/download/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932"
  1355. integrity sha1-NmST5rPkKjpoheLpnRj4D7eoyTI=
  1356. readdirp@~3.6.0:
  1357. version "3.6.0"
  1358. resolved "https://registry.nlark.com/readdirp/download/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
  1359. integrity sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=
  1360. dependencies:
  1361. picomatch "^2.2.1"
  1362. reduce-css-calc@^2.1.8:
  1363. version "2.1.8"
  1364. resolved "https://registry.nlark.com/reduce-css-calc/download/reduce-css-calc-2.1.8.tgz#7ef8761a28d614980dc0c982f772c93f7a99de03"
  1365. integrity sha1-fvh2GijWFJgNwMmC93LJP3qZ3gM=
  1366. dependencies:
  1367. css-unit-converter "^1.1.1"
  1368. postcss-value-parser "^3.3.0"
  1369. regenerator-runtime@^0.13.4:
  1370. version "0.13.9"
  1371. 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"
  1372. integrity sha1-iSV0Kpj/2QgUmI11Zq0wyjsmO1I=
  1373. request-light@^0.5.4:
  1374. version "0.5.4"
  1375. resolved "https://registry.nlark.com/request-light/download/request-light-0.5.4.tgz#497a98c6d8ae49536417a5e2d7f383b934f3e38c"
  1376. integrity sha1-SXqYxtiuSVNkF6Xi1/ODuTTz44w=
  1377. resize-observer-polyfill@^1.5.1:
  1378. version "1.5.1"
  1379. resolved "https://registry.nlark.com/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
  1380. integrity sha1-DpAg3T0hAkRY1OvSfiPkAmmBBGQ=
  1381. resolve-from@^4.0.0:
  1382. version "4.0.0"
  1383. 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"
  1384. integrity sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=
  1385. resolve-from@^5.0.0:
  1386. version "5.0.0"
  1387. 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"
  1388. integrity sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=
  1389. resolve@^1.15.1, resolve@^1.20.0:
  1390. version "1.20.0"
  1391. resolved "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
  1392. integrity sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=
  1393. dependencies:
  1394. is-core-module "^2.2.0"
  1395. path-parse "^1.0.6"
  1396. reusify@^1.0.4:
  1397. version "1.0.4"
  1398. resolved "https://registry.nlark.com/reusify/download/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
  1399. integrity sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=
  1400. rgb-regex@^1.0.1:
  1401. version "1.0.1"
  1402. resolved "https://registry.npm.taobao.org/rgb-regex/download/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1"
  1403. integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE=
  1404. rgba-regex@^1.0.0:
  1405. version "1.0.0"
  1406. resolved "https://registry.npm.taobao.org/rgba-regex/download/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
  1407. integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
  1408. rimraf@^3.0.0:
  1409. version "3.0.2"
  1410. resolved "https://registry.npm.taobao.org/rimraf/download/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
  1411. integrity sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=
  1412. dependencies:
  1413. glob "^7.1.3"
  1414. rollup@^2.38.5:
  1415. version "2.56.3"
  1416. resolved "https://registry.nlark.com/rollup/download/rollup-2.56.3.tgz#b63edadd9851b0d618a6d0e6af8201955a77aeff"
  1417. integrity sha1-tj7a3ZhRsNYYptDmr4IBlVp3rv8=
  1418. optionalDependencies:
  1419. fsevents "~2.3.2"
  1420. run-parallel@^1.1.9:
  1421. version "1.2.0"
  1422. resolved "https://registry.npm.taobao.org/run-parallel/download/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
  1423. integrity sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=
  1424. dependencies:
  1425. queue-microtask "^1.2.2"
  1426. scroll-into-view-if-needed@^2.2.25:
  1427. version "2.2.28"
  1428. resolved "https://registry.nlark.com/scroll-into-view-if-needed/download/scroll-into-view-if-needed-2.2.28.tgz#5a15b2f58a52642c88c8eca584644e01703d645a"
  1429. integrity sha1-WhWy9YpSZCyIyOylhGROAXA9ZFo=
  1430. dependencies:
  1431. compute-scroll-into-view "^1.0.17"
  1432. semver@^7.3.5:
  1433. version "7.3.5"
  1434. 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"
  1435. integrity sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=
  1436. dependencies:
  1437. lru-cache "^6.0.0"
  1438. shallow-equal@^1.0.0:
  1439. version "1.2.1"
  1440. resolved "https://registry.nlark.com/shallow-equal/download/shallow-equal-1.2.1.tgz#4c16abfa56043aa20d050324efa68940b0da79da"
  1441. integrity sha1-TBar+lYEOqINBQMk76aJQLDaedo=
  1442. simple-swizzle@^0.2.2:
  1443. version "0.2.2"
  1444. resolved "https://registry.nlark.com/simple-swizzle/download/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
  1445. integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=
  1446. dependencies:
  1447. is-arrayish "^0.3.1"
  1448. source-map-js@^0.6.2:
  1449. version "0.6.2"
  1450. resolved "https://registry.npm.taobao.org/source-map-js/download/source-map-js-0.6.2.tgz#0bb5de631b41cfbda6cfba8bd05a80efdfd2385e"
  1451. integrity sha1-C7XeYxtBz72mz7qL0FqA79/SOF4=
  1452. source-map@^0.6.1:
  1453. version "0.6.1"
  1454. resolved "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
  1455. integrity sha1-dHIq8y6WFOnCh6jQu95IteLxomM=
  1456. sourcemap-codec@^1.4.4:
  1457. version "1.4.8"
  1458. resolved "https://registry.nlark.com/sourcemap-codec/download/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
  1459. integrity sha1-6oBL2UhXQC5pktBaOO8a41qatMQ=
  1460. string-hash@^1.1.1:
  1461. version "1.1.3"
  1462. 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"
  1463. integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
  1464. supports-color@^5.3.0:
  1465. version "5.5.0"
  1466. 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"
  1467. integrity sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=
  1468. dependencies:
  1469. has-flag "^3.0.0"
  1470. supports-color@^7.1.0:
  1471. version "7.2.0"
  1472. 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"
  1473. integrity sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=
  1474. dependencies:
  1475. has-flag "^4.0.0"
  1476. tailwindcss@^2.2.10:
  1477. version "2.2.15"
  1478. 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"
  1479. integrity sha1-i+4+vmi5iMBQUIziBjPzWwQN2f4=
  1480. dependencies:
  1481. arg "^5.0.1"
  1482. bytes "^3.0.0"
  1483. chalk "^4.1.2"
  1484. chokidar "^3.5.2"
  1485. color "^4.0.1"
  1486. cosmiconfig "^7.0.1"
  1487. detective "^5.2.0"
  1488. didyoumean "^1.2.2"
  1489. dlv "^1.1.3"
  1490. fast-glob "^3.2.7"
  1491. fs-extra "^10.0.0"
  1492. glob-parent "^6.0.1"
  1493. html-tags "^3.1.0"
  1494. is-color-stop "^1.1.0"
  1495. is-glob "^4.0.1"
  1496. lodash "^4.17.21"
  1497. lodash.topath "^4.5.2"
  1498. modern-normalize "^1.1.0"
  1499. node-emoji "^1.11.0"
  1500. normalize-path "^3.0.0"
  1501. object-hash "^2.2.0"
  1502. postcss-js "^3.0.3"
  1503. postcss-load-config "^3.1.0"
  1504. postcss-nested "5.0.6"
  1505. postcss-selector-parser "^6.0.6"
  1506. postcss-value-parser "^4.1.0"
  1507. pretty-hrtime "^1.0.3"
  1508. purgecss "^4.0.3"
  1509. quick-lru "^5.1.1"
  1510. reduce-css-calc "^2.1.8"
  1511. resolve "^1.20.0"
  1512. tmp "^0.2.1"
  1513. tmp@^0.2.1:
  1514. version "0.2.1"
  1515. 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"
  1516. integrity sha1-hFf8MDfc9HGcJRNnoa9lAO4czxQ=
  1517. dependencies:
  1518. rimraf "^3.0.0"
  1519. to-fast-properties@^2.0.0:
  1520. version "2.0.0"
  1521. 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"
  1522. integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
  1523. to-regex-range@^5.0.1:
  1524. version "5.0.1"
  1525. resolved "https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
  1526. integrity sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=
  1527. dependencies:
  1528. is-number "^7.0.0"
  1529. token-stream@1.0.0:
  1530. version "1.0.0"
  1531. resolved "https://registry.npm.taobao.org/token-stream/download/token-stream-1.0.0.tgz#cc200eab2613f4166d27ff9afc7ca56d49df6eb4"
  1532. integrity sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=
  1533. typescript@^4.3.5:
  1534. version "4.4.3"
  1535. 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"
  1536. integrity sha1-vcVAfKorEJ79T4L+EwZW+XeikyQ=
  1537. ua-parser-js@^0.7.28:
  1538. version "0.7.28"
  1539. resolved "https://registry.nlark.com/ua-parser-js/download/ua-parser-js-0.7.28.tgz#8ba04e653f35ce210239c64661685bf9121dec31"
  1540. integrity sha1-i6BOZT81ziECOcZGYWhb+RId7DE=
  1541. universalify@^2.0.0:
  1542. version "2.0.0"
  1543. resolved "https://registry.nlark.com/universalify/download/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
  1544. integrity sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc=
  1545. unplugin-vue-components@^0.15.0:
  1546. version "0.15.1"
  1547. resolved "https://registry.nlark.com/unplugin-vue-components/download/unplugin-vue-components-0.15.1.tgz#60833df9f54e5eedde7d916c2ba66e9a263798a7"
  1548. integrity sha1-YIM9+fVOXu3efZFsK6ZumiY3mKc=
  1549. dependencies:
  1550. "@rollup/pluginutils" "^4.1.1"
  1551. chokidar "^3.5.2"
  1552. debug "^4.3.2"
  1553. fast-glob "^3.2.7"
  1554. has-pkg "^0.0.1"
  1555. magic-string "^0.25.7"
  1556. minimatch "^3.0.4"
  1557. resolve "^1.20.0"
  1558. unplugin "^0.2.7"
  1559. unplugin@^0.2.7:
  1560. version "0.2.11"
  1561. resolved "https://registry.nlark.com/unplugin/download/unplugin-0.2.11.tgz#f9f3f8b2b5a7c1b16325dbdea9568ee3652f6e49"
  1562. integrity sha1-+fP4srWnwbFjJdveqVaO42Uvbkk=
  1563. dependencies:
  1564. upath "^2.0.1"
  1565. webpack-virtual-modules "^0.4.3"
  1566. upath@^2.0.1:
  1567. version "2.0.1"
  1568. resolved "https://registry.npm.taobao.org/upath/download/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b"
  1569. integrity sha1-UMc96mjW9rmQ9R0nnOYIFmXWGos=
  1570. util-deprecate@^1.0.2:
  1571. version "1.0.2"
  1572. resolved "https://registry.nlark.com/util-deprecate/download/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
  1573. integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
  1574. viewerjs@^1.10.1:
  1575. version "1.10.1"
  1576. resolved "https://registry.nlark.com/viewerjs/download/viewerjs-1.10.1.tgz#07499ed043d0a29e3002b90f55c5b228bd1a742c"
  1577. integrity sha1-B0me0EPQop4wArkPVcWyKL0adCw=
  1578. vite@^2.5.4:
  1579. version "2.5.8"
  1580. 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"
  1581. integrity sha1-4tohVAQR6RyxxKYuEzxlKnh88RY=
  1582. dependencies:
  1583. esbuild "^0.12.17"
  1584. postcss "^8.3.6"
  1585. resolve "^1.20.0"
  1586. rollup "^2.38.5"
  1587. optionalDependencies:
  1588. fsevents "~2.3.2"
  1589. void-elements@^3.1.0:
  1590. version "3.1.0"
  1591. resolved "https://registry.npm.taobao.org/void-elements/download/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09"
  1592. integrity sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=
  1593. vscode-css-languageservice@^5.1.4:
  1594. version "5.1.5"
  1595. 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"
  1596. integrity sha1-QAsvY6T3PGD1sK/EjEeMGzJrJ8Y=
  1597. dependencies:
  1598. vscode-languageserver-textdocument "^1.0.1"
  1599. vscode-languageserver-types "^3.16.0"
  1600. vscode-nls "^5.0.0"
  1601. vscode-uri "^3.0.2"
  1602. vscode-html-languageservice@^4.0.7:
  1603. version "4.0.8"
  1604. resolved "https://registry.nlark.com/vscode-html-languageservice/download/vscode-html-languageservice-4.0.8.tgz#9429bacce3244dcfcb3a7172903f33b6f418db3b"
  1605. integrity sha1-lCm6zOMkTc/LOnFykD8ztvQY2zs=
  1606. dependencies:
  1607. vscode-languageserver-textdocument "^1.0.1"
  1608. vscode-languageserver-types "^3.16.0"
  1609. vscode-nls "^5.0.0"
  1610. vscode-uri "^3.0.2"
  1611. vscode-json-languageservice@^4.1.7:
  1612. version "4.1.7"
  1613. resolved "https://registry.nlark.com/vscode-json-languageservice/download/vscode-json-languageservice-4.1.7.tgz#18244d62b115a5818c7526ef4339438b7175dfaa"
  1614. integrity sha1-GCRNYrEVpYGMdSbvQzlDi3F136o=
  1615. dependencies:
  1616. jsonc-parser "^3.0.0"
  1617. vscode-languageserver-textdocument "^1.0.1"
  1618. vscode-languageserver-types "^3.16.0"
  1619. vscode-nls "^5.0.0"
  1620. vscode-uri "^3.0.2"
  1621. vscode-jsonrpc@8.0.0-next.2, vscode-jsonrpc@^8.0.0-next.2:
  1622. version "8.0.0-next.2"
  1623. 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"
  1624. integrity sha1-KF/ClL5YbkdorNZ+WkLvxzilysA=
  1625. vscode-languageserver-protocol@3.17.0-next.8:
  1626. version "3.17.0-next.8"
  1627. 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"
  1628. integrity sha1-7y63QjtHTMzRE4QjneJEiOf+gYw=
  1629. dependencies:
  1630. vscode-jsonrpc "8.0.0-next.2"
  1631. vscode-languageserver-types "3.17.0-next.3"
  1632. vscode-languageserver-textdocument@^1.0.1:
  1633. version "1.0.1"
  1634. resolved "https://registry.npm.taobao.org/vscode-languageserver-textdocument/download/vscode-languageserver-textdocument-1.0.1.tgz#178168e87efad6171b372add1dea34f53e5d330f"
  1635. integrity sha1-F4Fo6H761hcbNyrdHeo09T5dMw8=
  1636. vscode-languageserver-types@3.17.0-next.3:
  1637. version "3.17.0-next.3"
  1638. 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"
  1639. integrity sha1-4fQxHgjqMZPoESYVS2o0L8HD26M=
  1640. vscode-languageserver-types@^3.15.1, vscode-languageserver-types@^3.16.0:
  1641. version "3.16.0"
  1642. 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"
  1643. integrity sha1-7POT/BIexpdLLaPvsxVWRMUU4kc=
  1644. vscode-languageserver@^8.0.0-next.2:
  1645. version "8.0.0-next.2"
  1646. 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"
  1647. integrity sha1-Oj2vef8QNQ6pzsXHO1MCkBqVURc=
  1648. dependencies:
  1649. vscode-languageserver-protocol "3.17.0-next.8"
  1650. vscode-nls@^5.0.0:
  1651. version "5.0.0"
  1652. resolved "https://registry.npm.taobao.org/vscode-nls/download/vscode-nls-5.0.0.tgz#99f0da0bd9ea7cda44e565a74c54b1f2bc257840"
  1653. integrity sha1-mfDaC9nqfNpE5WWnTFSx8rwleEA=
  1654. vscode-pug-languageservice@^0.27.21:
  1655. version "0.27.21"
  1656. resolved "https://registry.nlark.com/vscode-pug-languageservice/download/vscode-pug-languageservice-0.27.21.tgz#b5ebdfb3e67fd37bb9ec4801e22161d469722300"
  1657. integrity sha1-tevfs+Z/03u57EgB4iFh1GlyIwA=
  1658. dependencies:
  1659. "@volar/code-gen" "^0.27.14"
  1660. "@volar/shared" "^0.27.14"
  1661. "@volar/source-map" "^0.27.14"
  1662. "@volar/transforms" "^0.27.14"
  1663. pug-lexer "^5.0.1"
  1664. pug-parser "^6.0.0"
  1665. vscode-languageserver "^8.0.0-next.2"
  1666. vscode-typescript-languageservice@^0.27.20:
  1667. version "0.27.20"
  1668. resolved "https://registry.nlark.com/vscode-typescript-languageservice/download/vscode-typescript-languageservice-0.27.20.tgz#491838da6394e57d54bc254e1fb77cf7b3e0818f"
  1669. integrity sha1-SRg42mOU5X1UvCVOH7d897PggY8=
  1670. dependencies:
  1671. "@volar/shared" "^0.27.14"
  1672. semver "^7.3.5"
  1673. upath "^2.0.1"
  1674. vscode-languageserver "^8.0.0-next.2"
  1675. vscode-languageserver-textdocument "^1.0.1"
  1676. vscode-uri@^2.1.2:
  1677. version "2.1.2"
  1678. resolved "https://registry.npm.taobao.org/vscode-uri/download/vscode-uri-2.1.2.tgz#c8d40de93eb57af31f3c715dd650e2ca2c096f1c"
  1679. integrity sha1-yNQN6T61evMfPHFd1lDiyiwJbxw=
  1680. vscode-uri@^3.0.2:
  1681. version "3.0.2"
  1682. resolved "https://registry.npm.taobao.org/vscode-uri/download/vscode-uri-3.0.2.tgz#ecfd1d066cb8ef4c3a208decdbab9a8c23d055d0"
  1683. integrity sha1-7P0dBmy470w6II3s26uajCPQVdA=
  1684. vscode-vue-languageservice@^0.27.0:
  1685. version "0.27.21"
  1686. 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"
  1687. integrity sha1-1yw+cwxcfzY6brYkG9vfHbVerh4=
  1688. dependencies:
  1689. "@volar/code-gen" "^0.27.14"
  1690. "@volar/html2pug" "^0.27.13"
  1691. "@volar/shared" "^0.27.14"
  1692. "@volar/source-map" "^0.27.14"
  1693. "@volar/transforms" "^0.27.14"
  1694. "@vscode/emmet-helper" "^2.7.0"
  1695. "@vue/compiler-dom" "^3.2.6"
  1696. "@vue/reactivity" "^3.2.6"
  1697. "@vue/shared" "^3.2.6"
  1698. request-light "^0.5.4"
  1699. upath "^2.0.1"
  1700. vscode-css-languageservice "^5.1.4"
  1701. vscode-html-languageservice "^4.0.7"
  1702. vscode-json-languageservice "^4.1.7"
  1703. vscode-languageserver "^8.0.0-next.2"
  1704. vscode-languageserver-textdocument "^1.0.1"
  1705. vscode-pug-languageservice "^0.27.21"
  1706. vscode-typescript-languageservice "^0.27.20"
  1707. vue-router@4.0.10:
  1708. version "4.0.10"
  1709. 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"
  1710. integrity sha1-7I/aAylJsqMdMnMXD483bobrUqw=
  1711. dependencies:
  1712. "@vue/devtools-api" "^6.0.0-beta.14"
  1713. vue-tsc@^0.3.0:
  1714. version "0.3.0"
  1715. resolved "https://registry.nlark.com/vue-tsc/download/vue-tsc-0.3.0.tgz#3b3872bf4f1d2e4409b57adbd826032e253db406"
  1716. integrity sha1-Ozhyv08dLkQJtXrb2CYDLiU9tAY=
  1717. dependencies:
  1718. vscode-vue-languageservice "^0.27.0"
  1719. vue-types@^3.0.0:
  1720. version "3.0.2"
  1721. 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"
  1722. integrity sha1-7BbgXUEsA4Ji/B76TOuWR+f7YB0=
  1723. dependencies:
  1724. is-plain-object "3.0.1"
  1725. vue@^3.2.9:
  1726. version "3.2.11"
  1727. 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"
  1728. integrity sha1-a5IpUEjfcF3axVj9Pj7VU+VeV8g=
  1729. dependencies:
  1730. "@vue/compiler-dom" "3.2.11"
  1731. "@vue/runtime-dom" "3.2.11"
  1732. "@vue/shared" "3.2.11"
  1733. warning@^4.0.0:
  1734. version "4.0.3"
  1735. resolved "https://registry.nlark.com/warning/download/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3"
  1736. integrity sha1-Fungd+uKhtavfWSqHgX9hbRnjKM=
  1737. dependencies:
  1738. loose-envify "^1.0.0"
  1739. webpack-virtual-modules@^0.4.3:
  1740. version "0.4.3"
  1741. 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"
  1742. integrity sha1-zVl8bVHVpey0c+6hmDpY+ooX3tk=
  1743. with@^7.0.0:
  1744. version "7.0.2"
  1745. resolved "https://registry.npm.taobao.org/with/download/with-7.0.2.tgz#ccee3ad542d25538a7a7a80aad212b9828495bac"
  1746. integrity sha1-zO461ULSVTinp6gKrSErmChJW6w=
  1747. dependencies:
  1748. "@babel/parser" "^7.9.6"
  1749. "@babel/types" "^7.9.6"
  1750. assert-never "^1.2.1"
  1751. babel-walk "3.0.0-canary-5"
  1752. wrappy@1:
  1753. version "1.0.2"
  1754. 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"
  1755. integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
  1756. xtend@^4.0.2:
  1757. version "4.0.2"
  1758. resolved "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
  1759. integrity sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=
  1760. yallist@^3.0.2:
  1761. version "3.1.1"
  1762. 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"
  1763. integrity sha1-27fa+b/YusmrRev2ArjLrQ1dCP0=
  1764. yallist@^4.0.0:
  1765. version "4.0.0"
  1766. 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"
  1767. integrity sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=
  1768. yaml@^1.10.0, yaml@^1.10.2:
  1769. version "1.10.2"
  1770. 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"
  1771. integrity sha1-IwHF/78StGfejaIzOkWeKeeSDks=