package-lock.json 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937
  1. {
  2. "name": "xwsport_web",
  3. "version": "1.0.1",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "xwsport_web",
  9. "version": "1.0.1",
  10. "dependencies": {
  11. "axios": "^1.6.5",
  12. "date-fns": "^3.6.0",
  13. "element-plus": "^2.5.1",
  14. "js-cookie": "^3.0.5",
  15. "nprogress": "^0.2.0",
  16. "pinia": "^2.1.7",
  17. "qrcode.vue": "^3.6.0",
  18. "vconsole": "^3.15.1",
  19. "vue": "^3.3.11",
  20. "vue-router": "^4.2.5"
  21. },
  22. "devDependencies": {
  23. "@types/js-cookie": "^3.0.6",
  24. "@types/nprogress": "^0.2.3",
  25. "@vitejs/plugin-vue": "^4.5.2",
  26. "@vue/tsconfig": "^0.5.0",
  27. "sass": "^1.97.0",
  28. "typescript": "~5.3.0",
  29. "unplugin-auto-import": "^0.17.3",
  30. "unplugin-vue-components": "^0.26.0",
  31. "vite": "^5.4.21"
  32. }
  33. },
  34. "node_modules/@antfu/utils": {
  35. "version": "0.7.10",
  36. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@antfu/utils/-/utils-0.7.10.tgz",
  37. "integrity": "sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==",
  38. "dev": true,
  39. "license": "MIT",
  40. "funding": {
  41. "url": "https://github.com/sponsors/antfu"
  42. }
  43. },
  44. "node_modules/@babel/parser": {
  45. "version": "7.23.6",
  46. "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.23.6.tgz",
  47. "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==",
  48. "license": "MIT",
  49. "bin": {
  50. "parser": "bin/babel-parser.js"
  51. },
  52. "engines": {
  53. "node": ">=6.0.0"
  54. }
  55. },
  56. "node_modules/@babel/runtime": {
  57. "version": "7.29.2",
  58. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@babel/runtime/-/runtime-7.29.2.tgz",
  59. "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
  60. "license": "MIT",
  61. "engines": {
  62. "node": ">=6.9.0"
  63. }
  64. },
  65. "node_modules/@ctrl/tinycolor": {
  66. "version": "3.6.1",
  67. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz",
  68. "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==",
  69. "license": "MIT",
  70. "engines": {
  71. "node": ">=10"
  72. }
  73. },
  74. "node_modules/@element-plus/icons-vue": {
  75. "version": "2.3.2",
  76. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz",
  77. "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==",
  78. "license": "MIT",
  79. "peerDependencies": {
  80. "vue": "^3.2.0"
  81. }
  82. },
  83. "node_modules/@esbuild/aix-ppc64": {
  84. "version": "0.21.5",
  85. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
  86. "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
  87. "cpu": [
  88. "ppc64"
  89. ],
  90. "dev": true,
  91. "license": "MIT",
  92. "optional": true,
  93. "os": [
  94. "aix"
  95. ],
  96. "engines": {
  97. "node": ">=12"
  98. }
  99. },
  100. "node_modules/@esbuild/android-arm": {
  101. "version": "0.21.5",
  102. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
  103. "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
  104. "cpu": [
  105. "arm"
  106. ],
  107. "dev": true,
  108. "license": "MIT",
  109. "optional": true,
  110. "os": [
  111. "android"
  112. ],
  113. "engines": {
  114. "node": ">=12"
  115. }
  116. },
  117. "node_modules/@esbuild/android-arm64": {
  118. "version": "0.21.5",
  119. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
  120. "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
  121. "cpu": [
  122. "arm64"
  123. ],
  124. "dev": true,
  125. "license": "MIT",
  126. "optional": true,
  127. "os": [
  128. "android"
  129. ],
  130. "engines": {
  131. "node": ">=12"
  132. }
  133. },
  134. "node_modules/@esbuild/android-x64": {
  135. "version": "0.21.5",
  136. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
  137. "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
  138. "cpu": [
  139. "x64"
  140. ],
  141. "dev": true,
  142. "license": "MIT",
  143. "optional": true,
  144. "os": [
  145. "android"
  146. ],
  147. "engines": {
  148. "node": ">=12"
  149. }
  150. },
  151. "node_modules/@esbuild/darwin-arm64": {
  152. "version": "0.21.5",
  153. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
  154. "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
  155. "cpu": [
  156. "arm64"
  157. ],
  158. "dev": true,
  159. "license": "MIT",
  160. "optional": true,
  161. "os": [
  162. "darwin"
  163. ],
  164. "engines": {
  165. "node": ">=12"
  166. }
  167. },
  168. "node_modules/@esbuild/darwin-x64": {
  169. "version": "0.21.5",
  170. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
  171. "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
  172. "cpu": [
  173. "x64"
  174. ],
  175. "dev": true,
  176. "license": "MIT",
  177. "optional": true,
  178. "os": [
  179. "darwin"
  180. ],
  181. "engines": {
  182. "node": ">=12"
  183. }
  184. },
  185. "node_modules/@esbuild/freebsd-arm64": {
  186. "version": "0.21.5",
  187. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
  188. "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
  189. "cpu": [
  190. "arm64"
  191. ],
  192. "dev": true,
  193. "license": "MIT",
  194. "optional": true,
  195. "os": [
  196. "freebsd"
  197. ],
  198. "engines": {
  199. "node": ">=12"
  200. }
  201. },
  202. "node_modules/@esbuild/freebsd-x64": {
  203. "version": "0.21.5",
  204. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
  205. "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
  206. "cpu": [
  207. "x64"
  208. ],
  209. "dev": true,
  210. "license": "MIT",
  211. "optional": true,
  212. "os": [
  213. "freebsd"
  214. ],
  215. "engines": {
  216. "node": ">=12"
  217. }
  218. },
  219. "node_modules/@esbuild/linux-arm": {
  220. "version": "0.21.5",
  221. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
  222. "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
  223. "cpu": [
  224. "arm"
  225. ],
  226. "dev": true,
  227. "license": "MIT",
  228. "optional": true,
  229. "os": [
  230. "linux"
  231. ],
  232. "engines": {
  233. "node": ">=12"
  234. }
  235. },
  236. "node_modules/@esbuild/linux-arm64": {
  237. "version": "0.21.5",
  238. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
  239. "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
  240. "cpu": [
  241. "arm64"
  242. ],
  243. "dev": true,
  244. "license": "MIT",
  245. "optional": true,
  246. "os": [
  247. "linux"
  248. ],
  249. "engines": {
  250. "node": ">=12"
  251. }
  252. },
  253. "node_modules/@esbuild/linux-ia32": {
  254. "version": "0.21.5",
  255. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
  256. "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
  257. "cpu": [
  258. "ia32"
  259. ],
  260. "dev": true,
  261. "license": "MIT",
  262. "optional": true,
  263. "os": [
  264. "linux"
  265. ],
  266. "engines": {
  267. "node": ">=12"
  268. }
  269. },
  270. "node_modules/@esbuild/linux-loong64": {
  271. "version": "0.21.5",
  272. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
  273. "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
  274. "cpu": [
  275. "loong64"
  276. ],
  277. "dev": true,
  278. "license": "MIT",
  279. "optional": true,
  280. "os": [
  281. "linux"
  282. ],
  283. "engines": {
  284. "node": ">=12"
  285. }
  286. },
  287. "node_modules/@esbuild/linux-mips64el": {
  288. "version": "0.21.5",
  289. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
  290. "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
  291. "cpu": [
  292. "mips64el"
  293. ],
  294. "dev": true,
  295. "license": "MIT",
  296. "optional": true,
  297. "os": [
  298. "linux"
  299. ],
  300. "engines": {
  301. "node": ">=12"
  302. }
  303. },
  304. "node_modules/@esbuild/linux-ppc64": {
  305. "version": "0.21.5",
  306. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
  307. "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
  308. "cpu": [
  309. "ppc64"
  310. ],
  311. "dev": true,
  312. "license": "MIT",
  313. "optional": true,
  314. "os": [
  315. "linux"
  316. ],
  317. "engines": {
  318. "node": ">=12"
  319. }
  320. },
  321. "node_modules/@esbuild/linux-riscv64": {
  322. "version": "0.21.5",
  323. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
  324. "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
  325. "cpu": [
  326. "riscv64"
  327. ],
  328. "dev": true,
  329. "license": "MIT",
  330. "optional": true,
  331. "os": [
  332. "linux"
  333. ],
  334. "engines": {
  335. "node": ">=12"
  336. }
  337. },
  338. "node_modules/@esbuild/linux-s390x": {
  339. "version": "0.21.5",
  340. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
  341. "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
  342. "cpu": [
  343. "s390x"
  344. ],
  345. "dev": true,
  346. "license": "MIT",
  347. "optional": true,
  348. "os": [
  349. "linux"
  350. ],
  351. "engines": {
  352. "node": ">=12"
  353. }
  354. },
  355. "node_modules/@esbuild/linux-x64": {
  356. "version": "0.21.5",
  357. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
  358. "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
  359. "cpu": [
  360. "x64"
  361. ],
  362. "dev": true,
  363. "license": "MIT",
  364. "optional": true,
  365. "os": [
  366. "linux"
  367. ],
  368. "engines": {
  369. "node": ">=12"
  370. }
  371. },
  372. "node_modules/@esbuild/netbsd-x64": {
  373. "version": "0.21.5",
  374. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
  375. "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
  376. "cpu": [
  377. "x64"
  378. ],
  379. "dev": true,
  380. "license": "MIT",
  381. "optional": true,
  382. "os": [
  383. "netbsd"
  384. ],
  385. "engines": {
  386. "node": ">=12"
  387. }
  388. },
  389. "node_modules/@esbuild/openbsd-x64": {
  390. "version": "0.21.5",
  391. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
  392. "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
  393. "cpu": [
  394. "x64"
  395. ],
  396. "dev": true,
  397. "license": "MIT",
  398. "optional": true,
  399. "os": [
  400. "openbsd"
  401. ],
  402. "engines": {
  403. "node": ">=12"
  404. }
  405. },
  406. "node_modules/@esbuild/sunos-x64": {
  407. "version": "0.21.5",
  408. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
  409. "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
  410. "cpu": [
  411. "x64"
  412. ],
  413. "dev": true,
  414. "license": "MIT",
  415. "optional": true,
  416. "os": [
  417. "sunos"
  418. ],
  419. "engines": {
  420. "node": ">=12"
  421. }
  422. },
  423. "node_modules/@esbuild/win32-arm64": {
  424. "version": "0.21.5",
  425. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
  426. "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
  427. "cpu": [
  428. "arm64"
  429. ],
  430. "dev": true,
  431. "license": "MIT",
  432. "optional": true,
  433. "os": [
  434. "win32"
  435. ],
  436. "engines": {
  437. "node": ">=12"
  438. }
  439. },
  440. "node_modules/@esbuild/win32-ia32": {
  441. "version": "0.21.5",
  442. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
  443. "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
  444. "cpu": [
  445. "ia32"
  446. ],
  447. "dev": true,
  448. "license": "MIT",
  449. "optional": true,
  450. "os": [
  451. "win32"
  452. ],
  453. "engines": {
  454. "node": ">=12"
  455. }
  456. },
  457. "node_modules/@esbuild/win32-x64": {
  458. "version": "0.21.5",
  459. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
  460. "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
  461. "cpu": [
  462. "x64"
  463. ],
  464. "dev": true,
  465. "license": "MIT",
  466. "optional": true,
  467. "os": [
  468. "win32"
  469. ],
  470. "engines": {
  471. "node": ">=12"
  472. }
  473. },
  474. "node_modules/@floating-ui/core": {
  475. "version": "1.7.3",
  476. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/core/-/core-1.7.3.tgz",
  477. "integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==",
  478. "license": "MIT",
  479. "dependencies": {
  480. "@floating-ui/utils": "^0.2.10"
  481. }
  482. },
  483. "node_modules/@floating-ui/dom": {
  484. "version": "1.7.4",
  485. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/dom/-/dom-1.7.4.tgz",
  486. "integrity": "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==",
  487. "license": "MIT",
  488. "dependencies": {
  489. "@floating-ui/core": "^1.7.3",
  490. "@floating-ui/utils": "^0.2.10"
  491. }
  492. },
  493. "node_modules/@floating-ui/utils": {
  494. "version": "0.2.10",
  495. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@floating-ui/utils/-/utils-0.2.10.tgz",
  496. "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
  497. "license": "MIT"
  498. },
  499. "node_modules/@jridgewell/sourcemap-codec": {
  500. "version": "1.5.0",
  501. "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
  502. "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
  503. "license": "MIT"
  504. },
  505. "node_modules/@nodelib/fs.scandir": {
  506. "version": "2.1.5",
  507. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
  508. "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
  509. "dev": true,
  510. "license": "MIT",
  511. "dependencies": {
  512. "@nodelib/fs.stat": "2.0.5",
  513. "run-parallel": "^1.1.9"
  514. },
  515. "engines": {
  516. "node": ">= 8"
  517. }
  518. },
  519. "node_modules/@nodelib/fs.stat": {
  520. "version": "2.0.5",
  521. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
  522. "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
  523. "dev": true,
  524. "license": "MIT",
  525. "engines": {
  526. "node": ">= 8"
  527. }
  528. },
  529. "node_modules/@nodelib/fs.walk": {
  530. "version": "1.2.8",
  531. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
  532. "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
  533. "dev": true,
  534. "license": "MIT",
  535. "dependencies": {
  536. "@nodelib/fs.scandir": "2.1.5",
  537. "fastq": "^1.6.0"
  538. },
  539. "engines": {
  540. "node": ">= 8"
  541. }
  542. },
  543. "node_modules/@parcel/watcher": {
  544. "version": "2.5.1",
  545. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher/-/watcher-2.5.1.tgz",
  546. "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==",
  547. "dev": true,
  548. "hasInstallScript": true,
  549. "license": "MIT",
  550. "optional": true,
  551. "dependencies": {
  552. "detect-libc": "^1.0.3",
  553. "is-glob": "^4.0.3",
  554. "micromatch": "^4.0.5",
  555. "node-addon-api": "^7.0.0"
  556. },
  557. "engines": {
  558. "node": ">= 10.0.0"
  559. },
  560. "funding": {
  561. "type": "opencollective",
  562. "url": "https://opencollective.com/parcel"
  563. },
  564. "optionalDependencies": {
  565. "@parcel/watcher-android-arm64": "2.5.1",
  566. "@parcel/watcher-darwin-arm64": "2.5.1",
  567. "@parcel/watcher-darwin-x64": "2.5.1",
  568. "@parcel/watcher-freebsd-x64": "2.5.1",
  569. "@parcel/watcher-linux-arm-glibc": "2.5.1",
  570. "@parcel/watcher-linux-arm-musl": "2.5.1",
  571. "@parcel/watcher-linux-arm64-glibc": "2.5.1",
  572. "@parcel/watcher-linux-arm64-musl": "2.5.1",
  573. "@parcel/watcher-linux-x64-glibc": "2.5.1",
  574. "@parcel/watcher-linux-x64-musl": "2.5.1",
  575. "@parcel/watcher-win32-arm64": "2.5.1",
  576. "@parcel/watcher-win32-ia32": "2.5.1",
  577. "@parcel/watcher-win32-x64": "2.5.1"
  578. }
  579. },
  580. "node_modules/@parcel/watcher-android-arm64": {
  581. "version": "2.5.1",
  582. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz",
  583. "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==",
  584. "cpu": [
  585. "arm64"
  586. ],
  587. "dev": true,
  588. "license": "MIT",
  589. "optional": true,
  590. "os": [
  591. "android"
  592. ],
  593. "engines": {
  594. "node": ">= 10.0.0"
  595. },
  596. "funding": {
  597. "type": "opencollective",
  598. "url": "https://opencollective.com/parcel"
  599. }
  600. },
  601. "node_modules/@parcel/watcher-darwin-arm64": {
  602. "version": "2.5.1",
  603. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz",
  604. "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==",
  605. "cpu": [
  606. "arm64"
  607. ],
  608. "dev": true,
  609. "license": "MIT",
  610. "optional": true,
  611. "os": [
  612. "darwin"
  613. ],
  614. "engines": {
  615. "node": ">= 10.0.0"
  616. },
  617. "funding": {
  618. "type": "opencollective",
  619. "url": "https://opencollective.com/parcel"
  620. }
  621. },
  622. "node_modules/@parcel/watcher-darwin-x64": {
  623. "version": "2.5.1",
  624. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz",
  625. "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==",
  626. "cpu": [
  627. "x64"
  628. ],
  629. "dev": true,
  630. "license": "MIT",
  631. "optional": true,
  632. "os": [
  633. "darwin"
  634. ],
  635. "engines": {
  636. "node": ">= 10.0.0"
  637. },
  638. "funding": {
  639. "type": "opencollective",
  640. "url": "https://opencollective.com/parcel"
  641. }
  642. },
  643. "node_modules/@parcel/watcher-freebsd-x64": {
  644. "version": "2.5.1",
  645. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz",
  646. "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==",
  647. "cpu": [
  648. "x64"
  649. ],
  650. "dev": true,
  651. "license": "MIT",
  652. "optional": true,
  653. "os": [
  654. "freebsd"
  655. ],
  656. "engines": {
  657. "node": ">= 10.0.0"
  658. },
  659. "funding": {
  660. "type": "opencollective",
  661. "url": "https://opencollective.com/parcel"
  662. }
  663. },
  664. "node_modules/@parcel/watcher-linux-arm-glibc": {
  665. "version": "2.5.1",
  666. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz",
  667. "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==",
  668. "cpu": [
  669. "arm"
  670. ],
  671. "dev": true,
  672. "license": "MIT",
  673. "optional": true,
  674. "os": [
  675. "linux"
  676. ],
  677. "engines": {
  678. "node": ">= 10.0.0"
  679. },
  680. "funding": {
  681. "type": "opencollective",
  682. "url": "https://opencollective.com/parcel"
  683. }
  684. },
  685. "node_modules/@parcel/watcher-linux-arm-musl": {
  686. "version": "2.5.1",
  687. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz",
  688. "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==",
  689. "cpu": [
  690. "arm"
  691. ],
  692. "dev": true,
  693. "license": "MIT",
  694. "optional": true,
  695. "os": [
  696. "linux"
  697. ],
  698. "engines": {
  699. "node": ">= 10.0.0"
  700. },
  701. "funding": {
  702. "type": "opencollective",
  703. "url": "https://opencollective.com/parcel"
  704. }
  705. },
  706. "node_modules/@parcel/watcher-linux-arm64-glibc": {
  707. "version": "2.5.1",
  708. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz",
  709. "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==",
  710. "cpu": [
  711. "arm64"
  712. ],
  713. "dev": true,
  714. "license": "MIT",
  715. "optional": true,
  716. "os": [
  717. "linux"
  718. ],
  719. "engines": {
  720. "node": ">= 10.0.0"
  721. },
  722. "funding": {
  723. "type": "opencollective",
  724. "url": "https://opencollective.com/parcel"
  725. }
  726. },
  727. "node_modules/@parcel/watcher-linux-arm64-musl": {
  728. "version": "2.5.1",
  729. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz",
  730. "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==",
  731. "cpu": [
  732. "arm64"
  733. ],
  734. "dev": true,
  735. "license": "MIT",
  736. "optional": true,
  737. "os": [
  738. "linux"
  739. ],
  740. "engines": {
  741. "node": ">= 10.0.0"
  742. },
  743. "funding": {
  744. "type": "opencollective",
  745. "url": "https://opencollective.com/parcel"
  746. }
  747. },
  748. "node_modules/@parcel/watcher-linux-x64-glibc": {
  749. "version": "2.5.1",
  750. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz",
  751. "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==",
  752. "cpu": [
  753. "x64"
  754. ],
  755. "dev": true,
  756. "license": "MIT",
  757. "optional": true,
  758. "os": [
  759. "linux"
  760. ],
  761. "engines": {
  762. "node": ">= 10.0.0"
  763. },
  764. "funding": {
  765. "type": "opencollective",
  766. "url": "https://opencollective.com/parcel"
  767. }
  768. },
  769. "node_modules/@parcel/watcher-linux-x64-musl": {
  770. "version": "2.5.1",
  771. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz",
  772. "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==",
  773. "cpu": [
  774. "x64"
  775. ],
  776. "dev": true,
  777. "license": "MIT",
  778. "optional": true,
  779. "os": [
  780. "linux"
  781. ],
  782. "engines": {
  783. "node": ">= 10.0.0"
  784. },
  785. "funding": {
  786. "type": "opencollective",
  787. "url": "https://opencollective.com/parcel"
  788. }
  789. },
  790. "node_modules/@parcel/watcher-win32-arm64": {
  791. "version": "2.5.1",
  792. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz",
  793. "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==",
  794. "cpu": [
  795. "arm64"
  796. ],
  797. "dev": true,
  798. "license": "MIT",
  799. "optional": true,
  800. "os": [
  801. "win32"
  802. ],
  803. "engines": {
  804. "node": ">= 10.0.0"
  805. },
  806. "funding": {
  807. "type": "opencollective",
  808. "url": "https://opencollective.com/parcel"
  809. }
  810. },
  811. "node_modules/@parcel/watcher-win32-ia32": {
  812. "version": "2.5.1",
  813. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz",
  814. "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==",
  815. "cpu": [
  816. "ia32"
  817. ],
  818. "dev": true,
  819. "license": "MIT",
  820. "optional": true,
  821. "os": [
  822. "win32"
  823. ],
  824. "engines": {
  825. "node": ">= 10.0.0"
  826. },
  827. "funding": {
  828. "type": "opencollective",
  829. "url": "https://opencollective.com/parcel"
  830. }
  831. },
  832. "node_modules/@parcel/watcher-win32-x64": {
  833. "version": "2.5.1",
  834. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz",
  835. "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==",
  836. "cpu": [
  837. "x64"
  838. ],
  839. "dev": true,
  840. "license": "MIT",
  841. "optional": true,
  842. "os": [
  843. "win32"
  844. ],
  845. "engines": {
  846. "node": ">= 10.0.0"
  847. },
  848. "funding": {
  849. "type": "opencollective",
  850. "url": "https://opencollective.com/parcel"
  851. }
  852. },
  853. "node_modules/@popperjs/core": {
  854. "name": "@sxzz/popperjs-es",
  855. "version": "2.11.7",
  856. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz",
  857. "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==",
  858. "license": "MIT",
  859. "funding": {
  860. "type": "opencollective",
  861. "url": "https://opencollective.com/popperjs"
  862. }
  863. },
  864. "node_modules/@rollup/pluginutils": {
  865. "version": "5.3.0",
  866. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/pluginutils/-/pluginutils-5.3.0.tgz",
  867. "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==",
  868. "dev": true,
  869. "license": "MIT",
  870. "dependencies": {
  871. "@types/estree": "^1.0.0",
  872. "estree-walker": "^2.0.2",
  873. "picomatch": "^4.0.2"
  874. },
  875. "engines": {
  876. "node": ">=14.0.0"
  877. },
  878. "peerDependencies": {
  879. "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
  880. },
  881. "peerDependenciesMeta": {
  882. "rollup": {
  883. "optional": true
  884. }
  885. }
  886. },
  887. "node_modules/@rollup/rollup-android-arm-eabi": {
  888. "version": "4.53.5",
  889. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.5.tgz",
  890. "integrity": "sha512-iDGS/h7D8t7tvZ1t6+WPK04KD0MwzLZrG0se1hzBjSi5fyxlsiggoJHwh18PCFNn7tG43OWb6pdZ6Y+rMlmyNQ==",
  891. "cpu": [
  892. "arm"
  893. ],
  894. "dev": true,
  895. "license": "MIT",
  896. "optional": true,
  897. "os": [
  898. "android"
  899. ]
  900. },
  901. "node_modules/@rollup/rollup-android-arm64": {
  902. "version": "4.53.5",
  903. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.5.tgz",
  904. "integrity": "sha512-wrSAViWvZHBMMlWk6EJhvg8/rjxzyEhEdgfMMjREHEq11EtJ6IP6yfcCH57YAEca2Oe3FNCE9DSTgU70EIGmVw==",
  905. "cpu": [
  906. "arm64"
  907. ],
  908. "dev": true,
  909. "license": "MIT",
  910. "optional": true,
  911. "os": [
  912. "android"
  913. ]
  914. },
  915. "node_modules/@rollup/rollup-darwin-arm64": {
  916. "version": "4.53.5",
  917. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.5.tgz",
  918. "integrity": "sha512-S87zZPBmRO6u1YXQLwpveZm4JfPpAa6oHBX7/ghSiGH3rz/KDgAu1rKdGutV+WUI6tKDMbaBJomhnT30Y2t4VQ==",
  919. "cpu": [
  920. "arm64"
  921. ],
  922. "dev": true,
  923. "license": "MIT",
  924. "optional": true,
  925. "os": [
  926. "darwin"
  927. ]
  928. },
  929. "node_modules/@rollup/rollup-darwin-x64": {
  930. "version": "4.53.5",
  931. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.5.tgz",
  932. "integrity": "sha512-YTbnsAaHo6VrAczISxgpTva8EkfQus0VPEVJCEaboHtZRIb6h6j0BNxRBOwnDciFTZLDPW5r+ZBmhL/+YpTZgA==",
  933. "cpu": [
  934. "x64"
  935. ],
  936. "dev": true,
  937. "license": "MIT",
  938. "optional": true,
  939. "os": [
  940. "darwin"
  941. ]
  942. },
  943. "node_modules/@rollup/rollup-freebsd-arm64": {
  944. "version": "4.53.5",
  945. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.5.tgz",
  946. "integrity": "sha512-1T8eY2J8rKJWzaznV7zedfdhD1BqVs1iqILhmHDq/bqCUZsrMt+j8VCTHhP0vdfbHK3e1IQ7VYx3jlKqwlf+vw==",
  947. "cpu": [
  948. "arm64"
  949. ],
  950. "dev": true,
  951. "license": "MIT",
  952. "optional": true,
  953. "os": [
  954. "freebsd"
  955. ]
  956. },
  957. "node_modules/@rollup/rollup-freebsd-x64": {
  958. "version": "4.53.5",
  959. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.5.tgz",
  960. "integrity": "sha512-sHTiuXyBJApxRn+VFMaw1U+Qsz4kcNlxQ742snICYPrY+DDL8/ZbaC4DVIB7vgZmp3jiDaKA0WpBdP0aqPJoBQ==",
  961. "cpu": [
  962. "x64"
  963. ],
  964. "dev": true,
  965. "license": "MIT",
  966. "optional": true,
  967. "os": [
  968. "freebsd"
  969. ]
  970. },
  971. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  972. "version": "4.53.5",
  973. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.5.tgz",
  974. "integrity": "sha512-dV3T9MyAf0w8zPVLVBptVlzaXxka6xg1f16VAQmjg+4KMSTWDvhimI/Y6mp8oHwNrmnmVl9XxJ/w/mO4uIQONA==",
  975. "cpu": [
  976. "arm"
  977. ],
  978. "dev": true,
  979. "license": "MIT",
  980. "optional": true,
  981. "os": [
  982. "linux"
  983. ]
  984. },
  985. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  986. "version": "4.53.5",
  987. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.5.tgz",
  988. "integrity": "sha512-wIGYC1x/hyjP+KAu9+ewDI+fi5XSNiUi9Bvg6KGAh2TsNMA3tSEs+Sh6jJ/r4BV/bx/CyWu2ue9kDnIdRyafcQ==",
  989. "cpu": [
  990. "arm"
  991. ],
  992. "dev": true,
  993. "license": "MIT",
  994. "optional": true,
  995. "os": [
  996. "linux"
  997. ]
  998. },
  999. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  1000. "version": "4.53.5",
  1001. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.5.tgz",
  1002. "integrity": "sha512-Y+qVA0D9d0y2FRNiG9oM3Hut/DgODZbU9I8pLLPwAsU0tUKZ49cyV1tzmB/qRbSzGvY8lpgGkJuMyuhH7Ma+Vg==",
  1003. "cpu": [
  1004. "arm64"
  1005. ],
  1006. "dev": true,
  1007. "license": "MIT",
  1008. "optional": true,
  1009. "os": [
  1010. "linux"
  1011. ]
  1012. },
  1013. "node_modules/@rollup/rollup-linux-arm64-musl": {
  1014. "version": "4.53.5",
  1015. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.5.tgz",
  1016. "integrity": "sha512-juaC4bEgJsyFVfqhtGLz8mbopaWD+WeSOYr5E16y+1of6KQjc0BpwZLuxkClqY1i8sco+MdyoXPNiCkQou09+g==",
  1017. "cpu": [
  1018. "arm64"
  1019. ],
  1020. "dev": true,
  1021. "license": "MIT",
  1022. "optional": true,
  1023. "os": [
  1024. "linux"
  1025. ]
  1026. },
  1027. "node_modules/@rollup/rollup-linux-loong64-gnu": {
  1028. "version": "4.53.5",
  1029. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.5.tgz",
  1030. "integrity": "sha512-rIEC0hZ17A42iXtHX+EPJVL/CakHo+tT7W0pbzdAGuWOt2jxDFh7A/lRhsNHBcqL4T36+UiAgwO8pbmn3dE8wA==",
  1031. "cpu": [
  1032. "loong64"
  1033. ],
  1034. "dev": true,
  1035. "license": "MIT",
  1036. "optional": true,
  1037. "os": [
  1038. "linux"
  1039. ]
  1040. },
  1041. "node_modules/@rollup/rollup-linux-ppc64-gnu": {
  1042. "version": "4.53.5",
  1043. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.5.tgz",
  1044. "integrity": "sha512-T7l409NhUE552RcAOcmJHj3xyZ2h7vMWzcwQI0hvn5tqHh3oSoclf9WgTl+0QqffWFG8MEVZZP1/OBglKZx52Q==",
  1045. "cpu": [
  1046. "ppc64"
  1047. ],
  1048. "dev": true,
  1049. "license": "MIT",
  1050. "optional": true,
  1051. "os": [
  1052. "linux"
  1053. ]
  1054. },
  1055. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  1056. "version": "4.53.5",
  1057. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.5.tgz",
  1058. "integrity": "sha512-7OK5/GhxbnrMcxIFoYfhV/TkknarkYC1hqUw1wU2xUN3TVRLNT5FmBv4KkheSG2xZ6IEbRAhTooTV2+R5Tk0lQ==",
  1059. "cpu": [
  1060. "riscv64"
  1061. ],
  1062. "dev": true,
  1063. "license": "MIT",
  1064. "optional": true,
  1065. "os": [
  1066. "linux"
  1067. ]
  1068. },
  1069. "node_modules/@rollup/rollup-linux-riscv64-musl": {
  1070. "version": "4.53.5",
  1071. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.5.tgz",
  1072. "integrity": "sha512-GwuDBE/PsXaTa76lO5eLJTyr2k8QkPipAyOrs4V/KJufHCZBJ495VCGJol35grx9xryk4V+2zd3Ri+3v7NPh+w==",
  1073. "cpu": [
  1074. "riscv64"
  1075. ],
  1076. "dev": true,
  1077. "license": "MIT",
  1078. "optional": true,
  1079. "os": [
  1080. "linux"
  1081. ]
  1082. },
  1083. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  1084. "version": "4.53.5",
  1085. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.5.tgz",
  1086. "integrity": "sha512-IAE1Ziyr1qNfnmiQLHBURAD+eh/zH1pIeJjeShleII7Vj8kyEm2PF77o+lf3WTHDpNJcu4IXJxNO0Zluro8bOw==",
  1087. "cpu": [
  1088. "s390x"
  1089. ],
  1090. "dev": true,
  1091. "license": "MIT",
  1092. "optional": true,
  1093. "os": [
  1094. "linux"
  1095. ]
  1096. },
  1097. "node_modules/@rollup/rollup-linux-x64-gnu": {
  1098. "version": "4.53.5",
  1099. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.5.tgz",
  1100. "integrity": "sha512-Pg6E+oP7GvZ4XwgRJBuSXZjcqpIW3yCBhK4BcsANvb47qMvAbCjR6E+1a/U2WXz1JJxp9/4Dno3/iSJLcm5auw==",
  1101. "cpu": [
  1102. "x64"
  1103. ],
  1104. "dev": true,
  1105. "license": "MIT",
  1106. "optional": true,
  1107. "os": [
  1108. "linux"
  1109. ]
  1110. },
  1111. "node_modules/@rollup/rollup-linux-x64-musl": {
  1112. "version": "4.53.5",
  1113. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.5.tgz",
  1114. "integrity": "sha512-txGtluxDKTxaMDzUduGP0wdfng24y1rygUMnmlUJ88fzCCULCLn7oE5kb2+tRB+MWq1QDZT6ObT5RrR8HFRKqg==",
  1115. "cpu": [
  1116. "x64"
  1117. ],
  1118. "dev": true,
  1119. "license": "MIT",
  1120. "optional": true,
  1121. "os": [
  1122. "linux"
  1123. ]
  1124. },
  1125. "node_modules/@rollup/rollup-openharmony-arm64": {
  1126. "version": "4.53.5",
  1127. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.5.tgz",
  1128. "integrity": "sha512-3DFiLPnTxiOQV993fMc+KO8zXHTcIjgaInrqlG8zDp1TlhYl6WgrOHuJkJQ6M8zHEcntSJsUp1XFZSY8C1DYbg==",
  1129. "cpu": [
  1130. "arm64"
  1131. ],
  1132. "dev": true,
  1133. "license": "MIT",
  1134. "optional": true,
  1135. "os": [
  1136. "openharmony"
  1137. ]
  1138. },
  1139. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  1140. "version": "4.53.5",
  1141. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.5.tgz",
  1142. "integrity": "sha512-nggc/wPpNTgjGg75hu+Q/3i32R00Lq1B6N1DO7MCU340MRKL3WZJMjA9U4K4gzy3dkZPXm9E1Nc81FItBVGRlA==",
  1143. "cpu": [
  1144. "arm64"
  1145. ],
  1146. "dev": true,
  1147. "license": "MIT",
  1148. "optional": true,
  1149. "os": [
  1150. "win32"
  1151. ]
  1152. },
  1153. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  1154. "version": "4.53.5",
  1155. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.5.tgz",
  1156. "integrity": "sha512-U/54pTbdQpPLBdEzCT6NBCFAfSZMvmjr0twhnD9f4EIvlm9wy3jjQ38yQj1AGznrNO65EWQMgm/QUjuIVrYF9w==",
  1157. "cpu": [
  1158. "ia32"
  1159. ],
  1160. "dev": true,
  1161. "license": "MIT",
  1162. "optional": true,
  1163. "os": [
  1164. "win32"
  1165. ]
  1166. },
  1167. "node_modules/@rollup/rollup-win32-x64-gnu": {
  1168. "version": "4.53.5",
  1169. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.5.tgz",
  1170. "integrity": "sha512-2NqKgZSuLH9SXBBV2dWNRCZmocgSOx8OJSdpRaEcRlIfX8YrKxUT6z0F1NpvDVhOsl190UFTRh2F2WDWWCYp3A==",
  1171. "cpu": [
  1172. "x64"
  1173. ],
  1174. "dev": true,
  1175. "license": "MIT",
  1176. "optional": true,
  1177. "os": [
  1178. "win32"
  1179. ]
  1180. },
  1181. "node_modules/@rollup/rollup-win32-x64-msvc": {
  1182. "version": "4.53.5",
  1183. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.5.tgz",
  1184. "integrity": "sha512-JRpZUhCfhZ4keB5v0fe02gQJy05GqboPOaxvjugW04RLSYYoB/9t2lx2u/tMs/Na/1NXfY8QYjgRljRpN+MjTQ==",
  1185. "cpu": [
  1186. "x64"
  1187. ],
  1188. "dev": true,
  1189. "license": "MIT",
  1190. "optional": true,
  1191. "os": [
  1192. "win32"
  1193. ]
  1194. },
  1195. "node_modules/@types/estree": {
  1196. "version": "1.0.8",
  1197. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/estree/-/estree-1.0.8.tgz",
  1198. "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
  1199. "dev": true,
  1200. "license": "MIT"
  1201. },
  1202. "node_modules/@types/js-cookie": {
  1203. "version": "3.0.6",
  1204. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/js-cookie/-/js-cookie-3.0.6.tgz",
  1205. "integrity": "sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==",
  1206. "dev": true,
  1207. "license": "MIT"
  1208. },
  1209. "node_modules/@types/lodash": {
  1210. "version": "4.17.21",
  1211. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/lodash/-/lodash-4.17.21.tgz",
  1212. "integrity": "sha512-FOvQ0YPD5NOfPgMzJihoT+Za5pdkDJWcbpuj1DjaKZIr/gxodQjY/uWEFlTNqW2ugXHUiL8lRQgw63dzKHZdeQ==",
  1213. "license": "MIT"
  1214. },
  1215. "node_modules/@types/lodash-es": {
  1216. "version": "4.17.12",
  1217. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  1218. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  1219. "license": "MIT",
  1220. "dependencies": {
  1221. "@types/lodash": "*"
  1222. }
  1223. },
  1224. "node_modules/@types/node": {
  1225. "version": "20.19.27",
  1226. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/node/-/node-20.19.27.tgz",
  1227. "integrity": "sha512-N2clP5pJhB2YnZJ3PIHFk5RkygRX5WO/5f0WC08tp0wd+sv0rsJk3MqWn3CbNmT2J505a5336jaQj4ph1AdMug==",
  1228. "dev": true,
  1229. "license": "MIT",
  1230. "optional": true,
  1231. "peer": true,
  1232. "dependencies": {
  1233. "undici-types": "~6.21.0"
  1234. }
  1235. },
  1236. "node_modules/@types/nprogress": {
  1237. "version": "0.2.3",
  1238. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@types/nprogress/-/nprogress-0.2.3.tgz",
  1239. "integrity": "sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA==",
  1240. "dev": true,
  1241. "license": "MIT"
  1242. },
  1243. "node_modules/@types/web-bluetooth": {
  1244. "version": "0.0.16",
  1245. "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz",
  1246. "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==",
  1247. "license": "MIT"
  1248. },
  1249. "node_modules/@vitejs/plugin-vue": {
  1250. "version": "4.6.2",
  1251. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vitejs/plugin-vue/-/plugin-vue-4.6.2.tgz",
  1252. "integrity": "sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==",
  1253. "dev": true,
  1254. "license": "MIT",
  1255. "engines": {
  1256. "node": "^14.18.0 || >=16.0.0"
  1257. },
  1258. "peerDependencies": {
  1259. "vite": "^4.0.0 || ^5.0.0",
  1260. "vue": "^3.2.25"
  1261. }
  1262. },
  1263. "node_modules/@vue/compiler-core": {
  1264. "version": "3.4.14",
  1265. "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.4.14.tgz",
  1266. "integrity": "sha512-ro4Zzl/MPdWs7XwxT7omHRxAjMbDFRZEEjD+2m3NBf8YzAe3HuoSEZosXQo+m1GQ1G3LQ1LdmNh1RKTYe+ssEg==",
  1267. "license": "MIT",
  1268. "dependencies": {
  1269. "@babel/parser": "^7.23.6",
  1270. "@vue/shared": "3.4.14",
  1271. "entities": "^4.5.0",
  1272. "estree-walker": "^2.0.2",
  1273. "source-map-js": "^1.0.2"
  1274. }
  1275. },
  1276. "node_modules/@vue/compiler-dom": {
  1277. "version": "3.4.14",
  1278. "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.4.14.tgz",
  1279. "integrity": "sha512-nOZTY+veWNa0DKAceNWxorAbWm0INHdQq7cejFaWM1WYnoNSJbSEKYtE7Ir6lR/+mo9fttZpPVI9ZFGJ1juUEQ==",
  1280. "license": "MIT",
  1281. "dependencies": {
  1282. "@vue/compiler-core": "3.4.14",
  1283. "@vue/shared": "3.4.14"
  1284. }
  1285. },
  1286. "node_modules/@vue/compiler-sfc": {
  1287. "version": "3.4.14",
  1288. "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.4.14.tgz",
  1289. "integrity": "sha512-1vHc9Kv1jV+YBZC/RJxQJ9JCxildTI+qrhtDh6tPkR1O8S+olBUekimY0km0ZNn8nG1wjtFAe9XHij+YLR8cRQ==",
  1290. "license": "MIT",
  1291. "dependencies": {
  1292. "@babel/parser": "^7.23.6",
  1293. "@vue/compiler-core": "3.4.14",
  1294. "@vue/compiler-dom": "3.4.14",
  1295. "@vue/compiler-ssr": "3.4.14",
  1296. "@vue/shared": "3.4.14",
  1297. "estree-walker": "^2.0.2",
  1298. "magic-string": "^0.30.5",
  1299. "postcss": "^8.4.33",
  1300. "source-map-js": "^1.0.2"
  1301. }
  1302. },
  1303. "node_modules/@vue/compiler-ssr": {
  1304. "version": "3.4.14",
  1305. "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.4.14.tgz",
  1306. "integrity": "sha512-bXT6+oAGlFjTYVOTtFJ4l4Jab1wjsC0cfSfOe2B4Z0N2vD2zOBSQ9w694RsCfhjk+bC2DY5Gubb1rHZVii107Q==",
  1307. "license": "MIT",
  1308. "dependencies": {
  1309. "@vue/compiler-dom": "3.4.14",
  1310. "@vue/shared": "3.4.14"
  1311. }
  1312. },
  1313. "node_modules/@vue/devtools-api": {
  1314. "version": "6.5.1",
  1315. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz",
  1316. "integrity": "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==",
  1317. "license": "MIT"
  1318. },
  1319. "node_modules/@vue/reactivity": {
  1320. "version": "3.4.14",
  1321. "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.4.14.tgz",
  1322. "integrity": "sha512-xRYwze5Q4tK7tT2J4uy4XLhK/AIXdU5EBUu9PLnIHcOKXO0uyXpNNMzlQKuq7B+zwtq6K2wuUL39pHA6ZQzObw==",
  1323. "license": "MIT",
  1324. "dependencies": {
  1325. "@vue/shared": "3.4.14"
  1326. }
  1327. },
  1328. "node_modules/@vue/runtime-core": {
  1329. "version": "3.4.14",
  1330. "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.4.14.tgz",
  1331. "integrity": "sha512-qu+NMkfujCoZL6cfqK5NOfxgXJROSlP2ZPs4CTcVR+mLrwl4TtycF5Tgo0QupkdBL+2kigc6EsJlTcuuZC1NaQ==",
  1332. "license": "MIT",
  1333. "dependencies": {
  1334. "@vue/reactivity": "3.4.14",
  1335. "@vue/shared": "3.4.14"
  1336. }
  1337. },
  1338. "node_modules/@vue/runtime-dom": {
  1339. "version": "3.4.14",
  1340. "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.4.14.tgz",
  1341. "integrity": "sha512-B85XmcR4E7XsirEHVqhmy4HPbRT9WLFWV9Uhie3OapV9m1MEN9+Er6hmUIE6d8/l2sUygpK9RstFM2bmHEUigA==",
  1342. "license": "MIT",
  1343. "dependencies": {
  1344. "@vue/runtime-core": "3.4.14",
  1345. "@vue/shared": "3.4.14",
  1346. "csstype": "^3.1.3"
  1347. }
  1348. },
  1349. "node_modules/@vue/server-renderer": {
  1350. "version": "3.4.14",
  1351. "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.4.14.tgz",
  1352. "integrity": "sha512-pwSKXQfYdJBTpvWHGEYI+akDE18TXAiLcGn+Q/2Fj8wQSHWztoo7PSvfMNqu6NDhp309QXXbPFEGCU5p85HqkA==",
  1353. "license": "MIT",
  1354. "dependencies": {
  1355. "@vue/compiler-ssr": "3.4.14",
  1356. "@vue/shared": "3.4.14"
  1357. },
  1358. "peerDependencies": {
  1359. "vue": "3.4.14"
  1360. }
  1361. },
  1362. "node_modules/@vue/shared": {
  1363. "version": "3.4.14",
  1364. "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.4.14.tgz",
  1365. "integrity": "sha512-nmi3BtLpvqXAWoRZ6HQ+pFJOHBU4UnH3vD3opgmwXac7vhaHKA9nj1VeGjMggdB9eLtW83eHyPCmOU1qzdsC7Q==",
  1366. "license": "MIT"
  1367. },
  1368. "node_modules/@vue/tsconfig": {
  1369. "version": "0.5.1",
  1370. "resolved": "https://mirrors.huaweicloud.com/repository/npm/@vue/tsconfig/-/tsconfig-0.5.1.tgz",
  1371. "integrity": "sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==",
  1372. "dev": true,
  1373. "license": "MIT"
  1374. },
  1375. "node_modules/@vueuse/core": {
  1376. "version": "9.13.0",
  1377. "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-9.13.0.tgz",
  1378. "integrity": "sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==",
  1379. "license": "MIT",
  1380. "dependencies": {
  1381. "@types/web-bluetooth": "^0.0.16",
  1382. "@vueuse/metadata": "9.13.0",
  1383. "@vueuse/shared": "9.13.0",
  1384. "vue-demi": "*"
  1385. },
  1386. "funding": {
  1387. "url": "https://github.com/sponsors/antfu"
  1388. }
  1389. },
  1390. "node_modules/@vueuse/core/node_modules/vue-demi": {
  1391. "version": "0.14.6",
  1392. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz",
  1393. "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==",
  1394. "hasInstallScript": true,
  1395. "license": "MIT",
  1396. "bin": {
  1397. "vue-demi-fix": "bin/vue-demi-fix.js",
  1398. "vue-demi-switch": "bin/vue-demi-switch.js"
  1399. },
  1400. "engines": {
  1401. "node": ">=12"
  1402. },
  1403. "funding": {
  1404. "url": "https://github.com/sponsors/antfu"
  1405. },
  1406. "peerDependencies": {
  1407. "@vue/composition-api": "^1.0.0-rc.1",
  1408. "vue": "^3.0.0-0 || ^2.6.0"
  1409. },
  1410. "peerDependenciesMeta": {
  1411. "@vue/composition-api": {
  1412. "optional": true
  1413. }
  1414. }
  1415. },
  1416. "node_modules/@vueuse/metadata": {
  1417. "version": "9.13.0",
  1418. "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-9.13.0.tgz",
  1419. "integrity": "sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==",
  1420. "license": "MIT",
  1421. "funding": {
  1422. "url": "https://github.com/sponsors/antfu"
  1423. }
  1424. },
  1425. "node_modules/@vueuse/shared": {
  1426. "version": "9.13.0",
  1427. "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-9.13.0.tgz",
  1428. "integrity": "sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==",
  1429. "license": "MIT",
  1430. "dependencies": {
  1431. "vue-demi": "*"
  1432. },
  1433. "funding": {
  1434. "url": "https://github.com/sponsors/antfu"
  1435. }
  1436. },
  1437. "node_modules/@vueuse/shared/node_modules/vue-demi": {
  1438. "version": "0.14.6",
  1439. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz",
  1440. "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==",
  1441. "hasInstallScript": true,
  1442. "license": "MIT",
  1443. "bin": {
  1444. "vue-demi-fix": "bin/vue-demi-fix.js",
  1445. "vue-demi-switch": "bin/vue-demi-switch.js"
  1446. },
  1447. "engines": {
  1448. "node": ">=12"
  1449. },
  1450. "funding": {
  1451. "url": "https://github.com/sponsors/antfu"
  1452. },
  1453. "peerDependencies": {
  1454. "@vue/composition-api": "^1.0.0-rc.1",
  1455. "vue": "^3.0.0-0 || ^2.6.0"
  1456. },
  1457. "peerDependenciesMeta": {
  1458. "@vue/composition-api": {
  1459. "optional": true
  1460. }
  1461. }
  1462. },
  1463. "node_modules/acorn": {
  1464. "version": "8.15.0",
  1465. "resolved": "https://mirrors.huaweicloud.com/repository/npm/acorn/-/acorn-8.15.0.tgz",
  1466. "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
  1467. "dev": true,
  1468. "license": "MIT",
  1469. "bin": {
  1470. "acorn": "bin/acorn"
  1471. },
  1472. "engines": {
  1473. "node": ">=0.4.0"
  1474. }
  1475. },
  1476. "node_modules/anymatch": {
  1477. "version": "3.1.3",
  1478. "resolved": "https://mirrors.huaweicloud.com/repository/npm/anymatch/-/anymatch-3.1.3.tgz",
  1479. "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
  1480. "dev": true,
  1481. "license": "ISC",
  1482. "dependencies": {
  1483. "normalize-path": "^3.0.0",
  1484. "picomatch": "^2.0.4"
  1485. },
  1486. "engines": {
  1487. "node": ">= 8"
  1488. }
  1489. },
  1490. "node_modules/anymatch/node_modules/picomatch": {
  1491. "version": "2.3.1",
  1492. "resolved": "https://mirrors.huaweicloud.com/repository/npm/picomatch/-/picomatch-2.3.1.tgz",
  1493. "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
  1494. "dev": true,
  1495. "license": "MIT",
  1496. "engines": {
  1497. "node": ">=8.6"
  1498. },
  1499. "funding": {
  1500. "url": "https://github.com/sponsors/jonschlinkert"
  1501. }
  1502. },
  1503. "node_modules/async-validator": {
  1504. "version": "4.2.5",
  1505. "resolved": "https://mirrors.huaweicloud.com/repository/npm/async-validator/-/async-validator-4.2.5.tgz",
  1506. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  1507. "license": "MIT"
  1508. },
  1509. "node_modules/asynckit": {
  1510. "version": "0.4.0",
  1511. "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz",
  1512. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  1513. "license": "MIT"
  1514. },
  1515. "node_modules/axios": {
  1516. "version": "1.6.5",
  1517. "resolved": "https://registry.npmmirror.com/axios/-/axios-1.6.5.tgz",
  1518. "integrity": "sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==",
  1519. "license": "MIT",
  1520. "dependencies": {
  1521. "follow-redirects": "^1.15.4",
  1522. "form-data": "^4.0.0",
  1523. "proxy-from-env": "^1.1.0"
  1524. }
  1525. },
  1526. "node_modules/balanced-match": {
  1527. "version": "1.0.2",
  1528. "resolved": "https://mirrors.huaweicloud.com/repository/npm/balanced-match/-/balanced-match-1.0.2.tgz",
  1529. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  1530. "dev": true,
  1531. "license": "MIT"
  1532. },
  1533. "node_modules/binary-extensions": {
  1534. "version": "2.3.0",
  1535. "resolved": "https://mirrors.huaweicloud.com/repository/npm/binary-extensions/-/binary-extensions-2.3.0.tgz",
  1536. "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
  1537. "dev": true,
  1538. "license": "MIT",
  1539. "engines": {
  1540. "node": ">=8"
  1541. },
  1542. "funding": {
  1543. "url": "https://github.com/sponsors/sindresorhus"
  1544. }
  1545. },
  1546. "node_modules/brace-expansion": {
  1547. "version": "2.0.2",
  1548. "resolved": "https://mirrors.huaweicloud.com/repository/npm/brace-expansion/-/brace-expansion-2.0.2.tgz",
  1549. "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
  1550. "dev": true,
  1551. "license": "MIT",
  1552. "dependencies": {
  1553. "balanced-match": "^1.0.0"
  1554. }
  1555. },
  1556. "node_modules/braces": {
  1557. "version": "3.0.3",
  1558. "resolved": "https://mirrors.huaweicloud.com/repository/npm/braces/-/braces-3.0.3.tgz",
  1559. "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
  1560. "dev": true,
  1561. "license": "MIT",
  1562. "dependencies": {
  1563. "fill-range": "^7.1.1"
  1564. },
  1565. "engines": {
  1566. "node": ">=8"
  1567. }
  1568. },
  1569. "node_modules/chokidar": {
  1570. "version": "3.6.0",
  1571. "resolved": "https://mirrors.huaweicloud.com/repository/npm/chokidar/-/chokidar-3.6.0.tgz",
  1572. "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
  1573. "dev": true,
  1574. "license": "MIT",
  1575. "dependencies": {
  1576. "anymatch": "~3.1.2",
  1577. "braces": "~3.0.2",
  1578. "glob-parent": "~5.1.2",
  1579. "is-binary-path": "~2.1.0",
  1580. "is-glob": "~4.0.1",
  1581. "normalize-path": "~3.0.0",
  1582. "readdirp": "~3.6.0"
  1583. },
  1584. "engines": {
  1585. "node": ">= 8.10.0"
  1586. },
  1587. "funding": {
  1588. "url": "https://paulmillr.com/funding/"
  1589. },
  1590. "optionalDependencies": {
  1591. "fsevents": "~2.3.2"
  1592. }
  1593. },
  1594. "node_modules/combined-stream": {
  1595. "version": "1.0.8",
  1596. "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz",
  1597. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  1598. "license": "MIT",
  1599. "dependencies": {
  1600. "delayed-stream": "~1.0.0"
  1601. },
  1602. "engines": {
  1603. "node": ">= 0.8"
  1604. }
  1605. },
  1606. "node_modules/confbox": {
  1607. "version": "0.1.8",
  1608. "resolved": "https://mirrors.huaweicloud.com/repository/npm/confbox/-/confbox-0.1.8.tgz",
  1609. "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==",
  1610. "dev": true,
  1611. "license": "MIT"
  1612. },
  1613. "node_modules/copy-text-to-clipboard": {
  1614. "version": "3.2.2",
  1615. "resolved": "https://mirrors.huaweicloud.com/repository/npm/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.2.tgz",
  1616. "integrity": "sha512-T6SqyLd1iLuqPA90J5N4cTalrtovCySh58iiZDGJ6FGznbclKh4UI+FGacQSgFzwKG77W7XT5gwbVEbd9cIH1A==",
  1617. "license": "MIT",
  1618. "engines": {
  1619. "node": ">=12"
  1620. },
  1621. "funding": {
  1622. "url": "https://github.com/sponsors/sindresorhus"
  1623. }
  1624. },
  1625. "node_modules/core-js": {
  1626. "version": "3.49.0",
  1627. "resolved": "https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.49.0.tgz",
  1628. "integrity": "sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==",
  1629. "hasInstallScript": true,
  1630. "license": "MIT",
  1631. "funding": {
  1632. "type": "opencollective",
  1633. "url": "https://opencollective.com/core-js"
  1634. }
  1635. },
  1636. "node_modules/csstype": {
  1637. "version": "3.1.3",
  1638. "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz",
  1639. "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
  1640. "license": "MIT"
  1641. },
  1642. "node_modules/date-fns": {
  1643. "version": "3.6.0",
  1644. "resolved": "https://mirrors.huaweicloud.com/repository/npm/date-fns/-/date-fns-3.6.0.tgz",
  1645. "integrity": "sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==",
  1646. "license": "MIT",
  1647. "funding": {
  1648. "type": "github",
  1649. "url": "https://github.com/sponsors/kossnocorp"
  1650. }
  1651. },
  1652. "node_modules/dayjs": {
  1653. "version": "1.11.19",
  1654. "resolved": "https://mirrors.huaweicloud.com/repository/npm/dayjs/-/dayjs-1.11.19.tgz",
  1655. "integrity": "sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==",
  1656. "license": "MIT"
  1657. },
  1658. "node_modules/debug": {
  1659. "version": "4.4.3",
  1660. "resolved": "https://mirrors.huaweicloud.com/repository/npm/debug/-/debug-4.4.3.tgz",
  1661. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  1662. "dev": true,
  1663. "license": "MIT",
  1664. "dependencies": {
  1665. "ms": "^2.1.3"
  1666. },
  1667. "engines": {
  1668. "node": ">=6.0"
  1669. },
  1670. "peerDependenciesMeta": {
  1671. "supports-color": {
  1672. "optional": true
  1673. }
  1674. }
  1675. },
  1676. "node_modules/delayed-stream": {
  1677. "version": "1.0.0",
  1678. "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz",
  1679. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  1680. "license": "MIT",
  1681. "engines": {
  1682. "node": ">=0.4.0"
  1683. }
  1684. },
  1685. "node_modules/detect-libc": {
  1686. "version": "1.0.3",
  1687. "resolved": "https://mirrors.huaweicloud.com/repository/npm/detect-libc/-/detect-libc-1.0.3.tgz",
  1688. "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
  1689. "dev": true,
  1690. "license": "Apache-2.0",
  1691. "optional": true,
  1692. "bin": {
  1693. "detect-libc": "bin/detect-libc.js"
  1694. },
  1695. "engines": {
  1696. "node": ">=0.10"
  1697. }
  1698. },
  1699. "node_modules/element-plus": {
  1700. "version": "2.12.0",
  1701. "resolved": "https://mirrors.huaweicloud.com/repository/npm/element-plus/-/element-plus-2.12.0.tgz",
  1702. "integrity": "sha512-M9YLSn2np9OnqrSKWsiXvGe3qnF8pd94+TScsHj1aTMCD+nSEvucXermf807qNt6hOP040le0e5Aft7E9ZfHmA==",
  1703. "license": "MIT",
  1704. "dependencies": {
  1705. "@ctrl/tinycolor": "^3.4.1",
  1706. "@element-plus/icons-vue": "^2.3.2",
  1707. "@floating-ui/dom": "^1.0.1",
  1708. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
  1709. "@types/lodash": "^4.17.20",
  1710. "@types/lodash-es": "^4.17.12",
  1711. "@vueuse/core": "^9.1.0",
  1712. "async-validator": "^4.2.5",
  1713. "dayjs": "^1.11.19",
  1714. "lodash": "^4.17.21",
  1715. "lodash-es": "^4.17.21",
  1716. "lodash-unified": "^1.0.3",
  1717. "memoize-one": "^6.0.0",
  1718. "normalize-wheel-es": "^1.2.0"
  1719. },
  1720. "peerDependencies": {
  1721. "vue": "^3.2.0"
  1722. }
  1723. },
  1724. "node_modules/entities": {
  1725. "version": "4.5.0",
  1726. "resolved": "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz",
  1727. "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
  1728. "license": "BSD-2-Clause",
  1729. "engines": {
  1730. "node": ">=0.12"
  1731. },
  1732. "funding": {
  1733. "url": "https://github.com/fb55/entities?sponsor=1"
  1734. }
  1735. },
  1736. "node_modules/esbuild": {
  1737. "version": "0.21.5",
  1738. "resolved": "https://mirrors.huaweicloud.com/repository/npm/esbuild/-/esbuild-0.21.5.tgz",
  1739. "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
  1740. "dev": true,
  1741. "hasInstallScript": true,
  1742. "license": "MIT",
  1743. "bin": {
  1744. "esbuild": "bin/esbuild"
  1745. },
  1746. "engines": {
  1747. "node": ">=12"
  1748. },
  1749. "optionalDependencies": {
  1750. "@esbuild/aix-ppc64": "0.21.5",
  1751. "@esbuild/android-arm": "0.21.5",
  1752. "@esbuild/android-arm64": "0.21.5",
  1753. "@esbuild/android-x64": "0.21.5",
  1754. "@esbuild/darwin-arm64": "0.21.5",
  1755. "@esbuild/darwin-x64": "0.21.5",
  1756. "@esbuild/freebsd-arm64": "0.21.5",
  1757. "@esbuild/freebsd-x64": "0.21.5",
  1758. "@esbuild/linux-arm": "0.21.5",
  1759. "@esbuild/linux-arm64": "0.21.5",
  1760. "@esbuild/linux-ia32": "0.21.5",
  1761. "@esbuild/linux-loong64": "0.21.5",
  1762. "@esbuild/linux-mips64el": "0.21.5",
  1763. "@esbuild/linux-ppc64": "0.21.5",
  1764. "@esbuild/linux-riscv64": "0.21.5",
  1765. "@esbuild/linux-s390x": "0.21.5",
  1766. "@esbuild/linux-x64": "0.21.5",
  1767. "@esbuild/netbsd-x64": "0.21.5",
  1768. "@esbuild/openbsd-x64": "0.21.5",
  1769. "@esbuild/sunos-x64": "0.21.5",
  1770. "@esbuild/win32-arm64": "0.21.5",
  1771. "@esbuild/win32-ia32": "0.21.5",
  1772. "@esbuild/win32-x64": "0.21.5"
  1773. }
  1774. },
  1775. "node_modules/escape-string-regexp": {
  1776. "version": "5.0.0",
  1777. "resolved": "https://mirrors.huaweicloud.com/repository/npm/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
  1778. "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
  1779. "dev": true,
  1780. "license": "MIT",
  1781. "engines": {
  1782. "node": ">=12"
  1783. },
  1784. "funding": {
  1785. "url": "https://github.com/sponsors/sindresorhus"
  1786. }
  1787. },
  1788. "node_modules/estree-walker": {
  1789. "version": "2.0.2",
  1790. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
  1791. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  1792. "license": "MIT"
  1793. },
  1794. "node_modules/exsolve": {
  1795. "version": "1.0.8",
  1796. "resolved": "https://mirrors.huaweicloud.com/repository/npm/exsolve/-/exsolve-1.0.8.tgz",
  1797. "integrity": "sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==",
  1798. "dev": true,
  1799. "license": "MIT"
  1800. },
  1801. "node_modules/fast-glob": {
  1802. "version": "3.3.3",
  1803. "resolved": "https://mirrors.huaweicloud.com/repository/npm/fast-glob/-/fast-glob-3.3.3.tgz",
  1804. "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
  1805. "dev": true,
  1806. "license": "MIT",
  1807. "dependencies": {
  1808. "@nodelib/fs.stat": "^2.0.2",
  1809. "@nodelib/fs.walk": "^1.2.3",
  1810. "glob-parent": "^5.1.2",
  1811. "merge2": "^1.3.0",
  1812. "micromatch": "^4.0.8"
  1813. },
  1814. "engines": {
  1815. "node": ">=8.6.0"
  1816. }
  1817. },
  1818. "node_modules/fastq": {
  1819. "version": "1.19.1",
  1820. "resolved": "https://mirrors.huaweicloud.com/repository/npm/fastq/-/fastq-1.19.1.tgz",
  1821. "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
  1822. "dev": true,
  1823. "license": "ISC",
  1824. "dependencies": {
  1825. "reusify": "^1.0.4"
  1826. }
  1827. },
  1828. "node_modules/fill-range": {
  1829. "version": "7.1.1",
  1830. "resolved": "https://mirrors.huaweicloud.com/repository/npm/fill-range/-/fill-range-7.1.1.tgz",
  1831. "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
  1832. "dev": true,
  1833. "license": "MIT",
  1834. "dependencies": {
  1835. "to-regex-range": "^5.0.1"
  1836. },
  1837. "engines": {
  1838. "node": ">=8"
  1839. }
  1840. },
  1841. "node_modules/follow-redirects": {
  1842. "version": "1.15.5",
  1843. "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.5.tgz",
  1844. "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==",
  1845. "funding": [
  1846. {
  1847. "type": "individual",
  1848. "url": "https://github.com/sponsors/RubenVerborgh"
  1849. }
  1850. ],
  1851. "license": "MIT",
  1852. "engines": {
  1853. "node": ">=4.0"
  1854. },
  1855. "peerDependenciesMeta": {
  1856. "debug": {
  1857. "optional": true
  1858. }
  1859. }
  1860. },
  1861. "node_modules/form-data": {
  1862. "version": "4.0.0",
  1863. "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz",
  1864. "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
  1865. "license": "MIT",
  1866. "dependencies": {
  1867. "asynckit": "^0.4.0",
  1868. "combined-stream": "^1.0.8",
  1869. "mime-types": "^2.1.12"
  1870. },
  1871. "engines": {
  1872. "node": ">= 6"
  1873. }
  1874. },
  1875. "node_modules/fsevents": {
  1876. "version": "2.3.3",
  1877. "resolved": "https://mirrors.huaweicloud.com/repository/npm/fsevents/-/fsevents-2.3.3.tgz",
  1878. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1879. "dev": true,
  1880. "hasInstallScript": true,
  1881. "license": "MIT",
  1882. "optional": true,
  1883. "os": [
  1884. "darwin"
  1885. ],
  1886. "engines": {
  1887. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1888. }
  1889. },
  1890. "node_modules/function-bind": {
  1891. "version": "1.1.2",
  1892. "resolved": "https://mirrors.huaweicloud.com/repository/npm/function-bind/-/function-bind-1.1.2.tgz",
  1893. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1894. "dev": true,
  1895. "license": "MIT",
  1896. "funding": {
  1897. "url": "https://github.com/sponsors/ljharb"
  1898. }
  1899. },
  1900. "node_modules/glob-parent": {
  1901. "version": "5.1.2",
  1902. "resolved": "https://mirrors.huaweicloud.com/repository/npm/glob-parent/-/glob-parent-5.1.2.tgz",
  1903. "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
  1904. "dev": true,
  1905. "license": "ISC",
  1906. "dependencies": {
  1907. "is-glob": "^4.0.1"
  1908. },
  1909. "engines": {
  1910. "node": ">= 6"
  1911. }
  1912. },
  1913. "node_modules/hasown": {
  1914. "version": "2.0.2",
  1915. "resolved": "https://mirrors.huaweicloud.com/repository/npm/hasown/-/hasown-2.0.2.tgz",
  1916. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  1917. "dev": true,
  1918. "license": "MIT",
  1919. "dependencies": {
  1920. "function-bind": "^1.1.2"
  1921. },
  1922. "engines": {
  1923. "node": ">= 0.4"
  1924. }
  1925. },
  1926. "node_modules/immutable": {
  1927. "version": "5.1.4",
  1928. "resolved": "https://mirrors.huaweicloud.com/repository/npm/immutable/-/immutable-5.1.4.tgz",
  1929. "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==",
  1930. "dev": true,
  1931. "license": "MIT"
  1932. },
  1933. "node_modules/is-binary-path": {
  1934. "version": "2.1.0",
  1935. "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-binary-path/-/is-binary-path-2.1.0.tgz",
  1936. "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
  1937. "dev": true,
  1938. "license": "MIT",
  1939. "dependencies": {
  1940. "binary-extensions": "^2.0.0"
  1941. },
  1942. "engines": {
  1943. "node": ">=8"
  1944. }
  1945. },
  1946. "node_modules/is-core-module": {
  1947. "version": "2.16.1",
  1948. "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-core-module/-/is-core-module-2.16.1.tgz",
  1949. "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
  1950. "dev": true,
  1951. "license": "MIT",
  1952. "dependencies": {
  1953. "hasown": "^2.0.2"
  1954. },
  1955. "engines": {
  1956. "node": ">= 0.4"
  1957. },
  1958. "funding": {
  1959. "url": "https://github.com/sponsors/ljharb"
  1960. }
  1961. },
  1962. "node_modules/is-extglob": {
  1963. "version": "2.1.1",
  1964. "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-extglob/-/is-extglob-2.1.1.tgz",
  1965. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  1966. "dev": true,
  1967. "license": "MIT",
  1968. "engines": {
  1969. "node": ">=0.10.0"
  1970. }
  1971. },
  1972. "node_modules/is-glob": {
  1973. "version": "4.0.3",
  1974. "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-glob/-/is-glob-4.0.3.tgz",
  1975. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  1976. "dev": true,
  1977. "license": "MIT",
  1978. "dependencies": {
  1979. "is-extglob": "^2.1.1"
  1980. },
  1981. "engines": {
  1982. "node": ">=0.10.0"
  1983. }
  1984. },
  1985. "node_modules/is-number": {
  1986. "version": "7.0.0",
  1987. "resolved": "https://mirrors.huaweicloud.com/repository/npm/is-number/-/is-number-7.0.0.tgz",
  1988. "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
  1989. "dev": true,
  1990. "license": "MIT",
  1991. "engines": {
  1992. "node": ">=0.12.0"
  1993. }
  1994. },
  1995. "node_modules/js-cookie": {
  1996. "version": "3.0.5",
  1997. "resolved": "https://mirrors.huaweicloud.com/repository/npm/js-cookie/-/js-cookie-3.0.5.tgz",
  1998. "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==",
  1999. "license": "MIT",
  2000. "engines": {
  2001. "node": ">=14"
  2002. }
  2003. },
  2004. "node_modules/js-tokens": {
  2005. "version": "9.0.1",
  2006. "resolved": "https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-9.0.1.tgz",
  2007. "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==",
  2008. "dev": true,
  2009. "license": "MIT"
  2010. },
  2011. "node_modules/local-pkg": {
  2012. "version": "0.5.1",
  2013. "resolved": "https://mirrors.huaweicloud.com/repository/npm/local-pkg/-/local-pkg-0.5.1.tgz",
  2014. "integrity": "sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==",
  2015. "dev": true,
  2016. "license": "MIT",
  2017. "dependencies": {
  2018. "mlly": "^1.7.3",
  2019. "pkg-types": "^1.2.1"
  2020. },
  2021. "engines": {
  2022. "node": ">=14"
  2023. },
  2024. "funding": {
  2025. "url": "https://github.com/sponsors/antfu"
  2026. }
  2027. },
  2028. "node_modules/lodash": {
  2029. "version": "4.17.21",
  2030. "resolved": "https://mirrors.huaweicloud.com/repository/npm/lodash/-/lodash-4.17.21.tgz",
  2031. "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
  2032. "license": "MIT"
  2033. },
  2034. "node_modules/lodash-es": {
  2035. "version": "4.17.21",
  2036. "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz",
  2037. "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==",
  2038. "license": "MIT"
  2039. },
  2040. "node_modules/lodash-unified": {
  2041. "version": "1.0.3",
  2042. "resolved": "https://mirrors.huaweicloud.com/repository/npm/lodash-unified/-/lodash-unified-1.0.3.tgz",
  2043. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  2044. "license": "MIT",
  2045. "peerDependencies": {
  2046. "@types/lodash-es": "*",
  2047. "lodash": "*",
  2048. "lodash-es": "*"
  2049. }
  2050. },
  2051. "node_modules/magic-string": {
  2052. "version": "0.30.17",
  2053. "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.17.tgz",
  2054. "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
  2055. "license": "MIT",
  2056. "dependencies": {
  2057. "@jridgewell/sourcemap-codec": "^1.5.0"
  2058. }
  2059. },
  2060. "node_modules/memoize-one": {
  2061. "version": "6.0.0",
  2062. "resolved": "https://mirrors.huaweicloud.com/repository/npm/memoize-one/-/memoize-one-6.0.0.tgz",
  2063. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  2064. "license": "MIT"
  2065. },
  2066. "node_modules/merge2": {
  2067. "version": "1.4.1",
  2068. "resolved": "https://mirrors.huaweicloud.com/repository/npm/merge2/-/merge2-1.4.1.tgz",
  2069. "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
  2070. "dev": true,
  2071. "license": "MIT",
  2072. "engines": {
  2073. "node": ">= 8"
  2074. }
  2075. },
  2076. "node_modules/micromatch": {
  2077. "version": "4.0.8",
  2078. "resolved": "https://mirrors.huaweicloud.com/repository/npm/micromatch/-/micromatch-4.0.8.tgz",
  2079. "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
  2080. "dev": true,
  2081. "license": "MIT",
  2082. "dependencies": {
  2083. "braces": "^3.0.3",
  2084. "picomatch": "^2.3.1"
  2085. },
  2086. "engines": {
  2087. "node": ">=8.6"
  2088. }
  2089. },
  2090. "node_modules/micromatch/node_modules/picomatch": {
  2091. "version": "2.3.1",
  2092. "resolved": "https://mirrors.huaweicloud.com/repository/npm/picomatch/-/picomatch-2.3.1.tgz",
  2093. "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
  2094. "dev": true,
  2095. "license": "MIT",
  2096. "engines": {
  2097. "node": ">=8.6"
  2098. },
  2099. "funding": {
  2100. "url": "https://github.com/sponsors/jonschlinkert"
  2101. }
  2102. },
  2103. "node_modules/mime-db": {
  2104. "version": "1.52.0",
  2105. "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
  2106. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  2107. "license": "MIT",
  2108. "engines": {
  2109. "node": ">= 0.6"
  2110. }
  2111. },
  2112. "node_modules/mime-types": {
  2113. "version": "2.1.35",
  2114. "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz",
  2115. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  2116. "license": "MIT",
  2117. "dependencies": {
  2118. "mime-db": "1.52.0"
  2119. },
  2120. "engines": {
  2121. "node": ">= 0.6"
  2122. }
  2123. },
  2124. "node_modules/minimatch": {
  2125. "version": "9.0.5",
  2126. "resolved": "https://mirrors.huaweicloud.com/repository/npm/minimatch/-/minimatch-9.0.5.tgz",
  2127. "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
  2128. "dev": true,
  2129. "license": "ISC",
  2130. "dependencies": {
  2131. "brace-expansion": "^2.0.1"
  2132. },
  2133. "engines": {
  2134. "node": ">=16 || 14 >=14.17"
  2135. },
  2136. "funding": {
  2137. "url": "https://github.com/sponsors/isaacs"
  2138. }
  2139. },
  2140. "node_modules/mlly": {
  2141. "version": "1.8.0",
  2142. "resolved": "https://mirrors.huaweicloud.com/repository/npm/mlly/-/mlly-1.8.0.tgz",
  2143. "integrity": "sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==",
  2144. "dev": true,
  2145. "license": "MIT",
  2146. "dependencies": {
  2147. "acorn": "^8.15.0",
  2148. "pathe": "^2.0.3",
  2149. "pkg-types": "^1.3.1",
  2150. "ufo": "^1.6.1"
  2151. }
  2152. },
  2153. "node_modules/ms": {
  2154. "version": "2.1.3",
  2155. "resolved": "https://mirrors.huaweicloud.com/repository/npm/ms/-/ms-2.1.3.tgz",
  2156. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  2157. "dev": true,
  2158. "license": "MIT"
  2159. },
  2160. "node_modules/mutation-observer": {
  2161. "version": "1.0.3",
  2162. "resolved": "https://mirrors.huaweicloud.com/repository/npm/mutation-observer/-/mutation-observer-1.0.3.tgz",
  2163. "integrity": "sha512-M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA=="
  2164. },
  2165. "node_modules/nanoid": {
  2166. "version": "3.3.11",
  2167. "resolved": "https://mirrors.huaweicloud.com/repository/npm/nanoid/-/nanoid-3.3.11.tgz",
  2168. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  2169. "funding": [
  2170. {
  2171. "type": "github",
  2172. "url": "https://github.com/sponsors/ai"
  2173. }
  2174. ],
  2175. "license": "MIT",
  2176. "bin": {
  2177. "nanoid": "bin/nanoid.cjs"
  2178. },
  2179. "engines": {
  2180. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2181. }
  2182. },
  2183. "node_modules/node-addon-api": {
  2184. "version": "7.1.1",
  2185. "resolved": "https://mirrors.huaweicloud.com/repository/npm/node-addon-api/-/node-addon-api-7.1.1.tgz",
  2186. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  2187. "dev": true,
  2188. "license": "MIT",
  2189. "optional": true
  2190. },
  2191. "node_modules/normalize-path": {
  2192. "version": "3.0.0",
  2193. "resolved": "https://mirrors.huaweicloud.com/repository/npm/normalize-path/-/normalize-path-3.0.0.tgz",
  2194. "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
  2195. "dev": true,
  2196. "license": "MIT",
  2197. "engines": {
  2198. "node": ">=0.10.0"
  2199. }
  2200. },
  2201. "node_modules/normalize-wheel-es": {
  2202. "version": "1.2.0",
  2203. "resolved": "https://mirrors.huaweicloud.com/repository/npm/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  2204. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  2205. "license": "BSD-3-Clause"
  2206. },
  2207. "node_modules/nprogress": {
  2208. "version": "0.2.0",
  2209. "resolved": "https://mirrors.huaweicloud.com/repository/npm/nprogress/-/nprogress-0.2.0.tgz",
  2210. "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==",
  2211. "license": "MIT"
  2212. },
  2213. "node_modules/path-parse": {
  2214. "version": "1.0.7",
  2215. "resolved": "https://mirrors.huaweicloud.com/repository/npm/path-parse/-/path-parse-1.0.7.tgz",
  2216. "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
  2217. "dev": true,
  2218. "license": "MIT"
  2219. },
  2220. "node_modules/pathe": {
  2221. "version": "2.0.3",
  2222. "resolved": "https://mirrors.huaweicloud.com/repository/npm/pathe/-/pathe-2.0.3.tgz",
  2223. "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
  2224. "dev": true,
  2225. "license": "MIT"
  2226. },
  2227. "node_modules/picocolors": {
  2228. "version": "1.1.1",
  2229. "resolved": "https://mirrors.huaweicloud.com/repository/npm/picocolors/-/picocolors-1.1.1.tgz",
  2230. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2231. "license": "ISC"
  2232. },
  2233. "node_modules/picomatch": {
  2234. "version": "4.0.3",
  2235. "resolved": "https://mirrors.huaweicloud.com/repository/npm/picomatch/-/picomatch-4.0.3.tgz",
  2236. "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
  2237. "dev": true,
  2238. "license": "MIT",
  2239. "engines": {
  2240. "node": ">=12"
  2241. },
  2242. "funding": {
  2243. "url": "https://github.com/sponsors/jonschlinkert"
  2244. }
  2245. },
  2246. "node_modules/pinia": {
  2247. "version": "2.1.7",
  2248. "resolved": "https://registry.npmmirror.com/pinia/-/pinia-2.1.7.tgz",
  2249. "integrity": "sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==",
  2250. "license": "MIT",
  2251. "dependencies": {
  2252. "@vue/devtools-api": "^6.5.0",
  2253. "vue-demi": ">=0.14.5"
  2254. },
  2255. "funding": {
  2256. "url": "https://github.com/sponsors/posva"
  2257. },
  2258. "peerDependencies": {
  2259. "@vue/composition-api": "^1.4.0",
  2260. "typescript": ">=4.4.4",
  2261. "vue": "^2.6.14 || ^3.3.0"
  2262. },
  2263. "peerDependenciesMeta": {
  2264. "@vue/composition-api": {
  2265. "optional": true
  2266. },
  2267. "typescript": {
  2268. "optional": true
  2269. }
  2270. }
  2271. },
  2272. "node_modules/pinia/node_modules/vue-demi": {
  2273. "version": "0.14.6",
  2274. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz",
  2275. "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==",
  2276. "hasInstallScript": true,
  2277. "license": "MIT",
  2278. "bin": {
  2279. "vue-demi-fix": "bin/vue-demi-fix.js",
  2280. "vue-demi-switch": "bin/vue-demi-switch.js"
  2281. },
  2282. "engines": {
  2283. "node": ">=12"
  2284. },
  2285. "funding": {
  2286. "url": "https://github.com/sponsors/antfu"
  2287. },
  2288. "peerDependencies": {
  2289. "@vue/composition-api": "^1.0.0-rc.1",
  2290. "vue": "^3.0.0-0 || ^2.6.0"
  2291. },
  2292. "peerDependenciesMeta": {
  2293. "@vue/composition-api": {
  2294. "optional": true
  2295. }
  2296. }
  2297. },
  2298. "node_modules/pkg-types": {
  2299. "version": "1.3.1",
  2300. "resolved": "https://mirrors.huaweicloud.com/repository/npm/pkg-types/-/pkg-types-1.3.1.tgz",
  2301. "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
  2302. "dev": true,
  2303. "license": "MIT",
  2304. "dependencies": {
  2305. "confbox": "^0.1.8",
  2306. "mlly": "^1.7.4",
  2307. "pathe": "^2.0.1"
  2308. }
  2309. },
  2310. "node_modules/postcss": {
  2311. "version": "8.5.6",
  2312. "resolved": "https://mirrors.huaweicloud.com/repository/npm/postcss/-/postcss-8.5.6.tgz",
  2313. "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
  2314. "funding": [
  2315. {
  2316. "type": "opencollective",
  2317. "url": "https://opencollective.com/postcss/"
  2318. },
  2319. {
  2320. "type": "tidelift",
  2321. "url": "https://tidelift.com/funding/github/npm/postcss"
  2322. },
  2323. {
  2324. "type": "github",
  2325. "url": "https://github.com/sponsors/ai"
  2326. }
  2327. ],
  2328. "license": "MIT",
  2329. "dependencies": {
  2330. "nanoid": "^3.3.11",
  2331. "picocolors": "^1.1.1",
  2332. "source-map-js": "^1.2.1"
  2333. },
  2334. "engines": {
  2335. "node": "^10 || ^12 || >=14"
  2336. }
  2337. },
  2338. "node_modules/proxy-from-env": {
  2339. "version": "1.1.0",
  2340. "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
  2341. "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
  2342. "license": "MIT"
  2343. },
  2344. "node_modules/qrcode.vue": {
  2345. "version": "3.6.0",
  2346. "resolved": "https://mirrors.huaweicloud.com/repository/npm/qrcode.vue/-/qrcode.vue-3.6.0.tgz",
  2347. "integrity": "sha512-vQcl2fyHYHMjDO1GguCldJxepq2izQjBkDEEu9NENgfVKP6mv/e2SU62WbqYHGwTgWXLhxZ1NCD1dAZKHQq1fg==",
  2348. "license": "MIT",
  2349. "peerDependencies": {
  2350. "vue": "^3.0.0"
  2351. }
  2352. },
  2353. "node_modules/quansync": {
  2354. "version": "0.2.11",
  2355. "resolved": "https://mirrors.huaweicloud.com/repository/npm/quansync/-/quansync-0.2.11.tgz",
  2356. "integrity": "sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==",
  2357. "dev": true,
  2358. "funding": [
  2359. {
  2360. "type": "individual",
  2361. "url": "https://github.com/sponsors/antfu"
  2362. },
  2363. {
  2364. "type": "individual",
  2365. "url": "https://github.com/sponsors/sxzz"
  2366. }
  2367. ],
  2368. "license": "MIT"
  2369. },
  2370. "node_modules/queue-microtask": {
  2371. "version": "1.2.3",
  2372. "resolved": "https://mirrors.huaweicloud.com/repository/npm/queue-microtask/-/queue-microtask-1.2.3.tgz",
  2373. "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
  2374. "dev": true,
  2375. "funding": [
  2376. {
  2377. "type": "github",
  2378. "url": "https://github.com/sponsors/feross"
  2379. },
  2380. {
  2381. "type": "patreon",
  2382. "url": "https://www.patreon.com/feross"
  2383. },
  2384. {
  2385. "type": "consulting",
  2386. "url": "https://feross.org/support"
  2387. }
  2388. ],
  2389. "license": "MIT"
  2390. },
  2391. "node_modules/readdirp": {
  2392. "version": "3.6.0",
  2393. "resolved": "https://mirrors.huaweicloud.com/repository/npm/readdirp/-/readdirp-3.6.0.tgz",
  2394. "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
  2395. "dev": true,
  2396. "license": "MIT",
  2397. "dependencies": {
  2398. "picomatch": "^2.2.1"
  2399. },
  2400. "engines": {
  2401. "node": ">=8.10.0"
  2402. }
  2403. },
  2404. "node_modules/readdirp/node_modules/picomatch": {
  2405. "version": "2.3.1",
  2406. "resolved": "https://mirrors.huaweicloud.com/repository/npm/picomatch/-/picomatch-2.3.1.tgz",
  2407. "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
  2408. "dev": true,
  2409. "license": "MIT",
  2410. "engines": {
  2411. "node": ">=8.6"
  2412. },
  2413. "funding": {
  2414. "url": "https://github.com/sponsors/jonschlinkert"
  2415. }
  2416. },
  2417. "node_modules/resolve": {
  2418. "version": "1.22.11",
  2419. "resolved": "https://mirrors.huaweicloud.com/repository/npm/resolve/-/resolve-1.22.11.tgz",
  2420. "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==",
  2421. "dev": true,
  2422. "license": "MIT",
  2423. "dependencies": {
  2424. "is-core-module": "^2.16.1",
  2425. "path-parse": "^1.0.7",
  2426. "supports-preserve-symlinks-flag": "^1.0.0"
  2427. },
  2428. "bin": {
  2429. "resolve": "bin/resolve"
  2430. },
  2431. "engines": {
  2432. "node": ">= 0.4"
  2433. },
  2434. "funding": {
  2435. "url": "https://github.com/sponsors/ljharb"
  2436. }
  2437. },
  2438. "node_modules/reusify": {
  2439. "version": "1.1.0",
  2440. "resolved": "https://mirrors.huaweicloud.com/repository/npm/reusify/-/reusify-1.1.0.tgz",
  2441. "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
  2442. "dev": true,
  2443. "license": "MIT",
  2444. "engines": {
  2445. "iojs": ">=1.0.0",
  2446. "node": ">=0.10.0"
  2447. }
  2448. },
  2449. "node_modules/rollup": {
  2450. "version": "4.53.5",
  2451. "resolved": "https://mirrors.huaweicloud.com/repository/npm/rollup/-/rollup-4.53.5.tgz",
  2452. "integrity": "sha512-iTNAbFSlRpcHeeWu73ywU/8KuU/LZmNCSxp6fjQkJBD3ivUb8tpDrXhIxEzA05HlYMEwmtaUnb3RP+YNv162OQ==",
  2453. "dev": true,
  2454. "license": "MIT",
  2455. "dependencies": {
  2456. "@types/estree": "1.0.8"
  2457. },
  2458. "bin": {
  2459. "rollup": "dist/bin/rollup"
  2460. },
  2461. "engines": {
  2462. "node": ">=18.0.0",
  2463. "npm": ">=8.0.0"
  2464. },
  2465. "optionalDependencies": {
  2466. "@rollup/rollup-android-arm-eabi": "4.53.5",
  2467. "@rollup/rollup-android-arm64": "4.53.5",
  2468. "@rollup/rollup-darwin-arm64": "4.53.5",
  2469. "@rollup/rollup-darwin-x64": "4.53.5",
  2470. "@rollup/rollup-freebsd-arm64": "4.53.5",
  2471. "@rollup/rollup-freebsd-x64": "4.53.5",
  2472. "@rollup/rollup-linux-arm-gnueabihf": "4.53.5",
  2473. "@rollup/rollup-linux-arm-musleabihf": "4.53.5",
  2474. "@rollup/rollup-linux-arm64-gnu": "4.53.5",
  2475. "@rollup/rollup-linux-arm64-musl": "4.53.5",
  2476. "@rollup/rollup-linux-loong64-gnu": "4.53.5",
  2477. "@rollup/rollup-linux-ppc64-gnu": "4.53.5",
  2478. "@rollup/rollup-linux-riscv64-gnu": "4.53.5",
  2479. "@rollup/rollup-linux-riscv64-musl": "4.53.5",
  2480. "@rollup/rollup-linux-s390x-gnu": "4.53.5",
  2481. "@rollup/rollup-linux-x64-gnu": "4.53.5",
  2482. "@rollup/rollup-linux-x64-musl": "4.53.5",
  2483. "@rollup/rollup-openharmony-arm64": "4.53.5",
  2484. "@rollup/rollup-win32-arm64-msvc": "4.53.5",
  2485. "@rollup/rollup-win32-ia32-msvc": "4.53.5",
  2486. "@rollup/rollup-win32-x64-gnu": "4.53.5",
  2487. "@rollup/rollup-win32-x64-msvc": "4.53.5",
  2488. "fsevents": "~2.3.2"
  2489. }
  2490. },
  2491. "node_modules/run-parallel": {
  2492. "version": "1.2.0",
  2493. "resolved": "https://mirrors.huaweicloud.com/repository/npm/run-parallel/-/run-parallel-1.2.0.tgz",
  2494. "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
  2495. "dev": true,
  2496. "funding": [
  2497. {
  2498. "type": "github",
  2499. "url": "https://github.com/sponsors/feross"
  2500. },
  2501. {
  2502. "type": "patreon",
  2503. "url": "https://www.patreon.com/feross"
  2504. },
  2505. {
  2506. "type": "consulting",
  2507. "url": "https://feross.org/support"
  2508. }
  2509. ],
  2510. "license": "MIT",
  2511. "dependencies": {
  2512. "queue-microtask": "^1.2.2"
  2513. }
  2514. },
  2515. "node_modules/sass": {
  2516. "version": "1.97.0",
  2517. "resolved": "https://mirrors.huaweicloud.com/repository/npm/sass/-/sass-1.97.0.tgz",
  2518. "integrity": "sha512-KR0igP1z4avUJetEuIeOdDlwaUDvkH8wSx7FdSjyYBS3dpyX3TzHfAMO0G1Q4/3cdjcmi3r7idh+KCmKqS+KeQ==",
  2519. "dev": true,
  2520. "license": "MIT",
  2521. "dependencies": {
  2522. "chokidar": "^4.0.0",
  2523. "immutable": "^5.0.2",
  2524. "source-map-js": ">=0.6.2 <2.0.0"
  2525. },
  2526. "bin": {
  2527. "sass": "sass.js"
  2528. },
  2529. "engines": {
  2530. "node": ">=14.0.0"
  2531. },
  2532. "optionalDependencies": {
  2533. "@parcel/watcher": "^2.4.1"
  2534. }
  2535. },
  2536. "node_modules/sass/node_modules/chokidar": {
  2537. "version": "4.0.3",
  2538. "resolved": "https://mirrors.huaweicloud.com/repository/npm/chokidar/-/chokidar-4.0.3.tgz",
  2539. "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
  2540. "dev": true,
  2541. "license": "MIT",
  2542. "dependencies": {
  2543. "readdirp": "^4.0.1"
  2544. },
  2545. "engines": {
  2546. "node": ">= 14.16.0"
  2547. },
  2548. "funding": {
  2549. "url": "https://paulmillr.com/funding/"
  2550. }
  2551. },
  2552. "node_modules/sass/node_modules/readdirp": {
  2553. "version": "4.1.2",
  2554. "resolved": "https://mirrors.huaweicloud.com/repository/npm/readdirp/-/readdirp-4.1.2.tgz",
  2555. "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
  2556. "dev": true,
  2557. "license": "MIT",
  2558. "engines": {
  2559. "node": ">= 14.18.0"
  2560. },
  2561. "funding": {
  2562. "type": "individual",
  2563. "url": "https://paulmillr.com/funding/"
  2564. }
  2565. },
  2566. "node_modules/scule": {
  2567. "version": "1.3.0",
  2568. "resolved": "https://mirrors.huaweicloud.com/repository/npm/scule/-/scule-1.3.0.tgz",
  2569. "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==",
  2570. "dev": true,
  2571. "license": "MIT"
  2572. },
  2573. "node_modules/source-map-js": {
  2574. "version": "1.2.1",
  2575. "resolved": "https://mirrors.huaweicloud.com/repository/npm/source-map-js/-/source-map-js-1.2.1.tgz",
  2576. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2577. "license": "BSD-3-Clause",
  2578. "engines": {
  2579. "node": ">=0.10.0"
  2580. }
  2581. },
  2582. "node_modules/strip-literal": {
  2583. "version": "2.1.1",
  2584. "resolved": "https://mirrors.huaweicloud.com/repository/npm/strip-literal/-/strip-literal-2.1.1.tgz",
  2585. "integrity": "sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==",
  2586. "dev": true,
  2587. "license": "MIT",
  2588. "dependencies": {
  2589. "js-tokens": "^9.0.1"
  2590. },
  2591. "funding": {
  2592. "url": "https://github.com/sponsors/antfu"
  2593. }
  2594. },
  2595. "node_modules/supports-preserve-symlinks-flag": {
  2596. "version": "1.0.0",
  2597. "resolved": "https://mirrors.huaweicloud.com/repository/npm/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
  2598. "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
  2599. "dev": true,
  2600. "license": "MIT",
  2601. "engines": {
  2602. "node": ">= 0.4"
  2603. },
  2604. "funding": {
  2605. "url": "https://github.com/sponsors/ljharb"
  2606. }
  2607. },
  2608. "node_modules/to-regex-range": {
  2609. "version": "5.0.1",
  2610. "resolved": "https://mirrors.huaweicloud.com/repository/npm/to-regex-range/-/to-regex-range-5.0.1.tgz",
  2611. "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
  2612. "dev": true,
  2613. "license": "MIT",
  2614. "dependencies": {
  2615. "is-number": "^7.0.0"
  2616. },
  2617. "engines": {
  2618. "node": ">=8.0"
  2619. }
  2620. },
  2621. "node_modules/typescript": {
  2622. "version": "5.3.3",
  2623. "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.3.3.tgz",
  2624. "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==",
  2625. "devOptional": true,
  2626. "license": "Apache-2.0",
  2627. "bin": {
  2628. "tsc": "bin/tsc",
  2629. "tsserver": "bin/tsserver"
  2630. },
  2631. "engines": {
  2632. "node": ">=14.17"
  2633. }
  2634. },
  2635. "node_modules/ufo": {
  2636. "version": "1.6.1",
  2637. "resolved": "https://mirrors.huaweicloud.com/repository/npm/ufo/-/ufo-1.6.1.tgz",
  2638. "integrity": "sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==",
  2639. "dev": true,
  2640. "license": "MIT"
  2641. },
  2642. "node_modules/undici-types": {
  2643. "version": "6.21.0",
  2644. "resolved": "https://mirrors.huaweicloud.com/repository/npm/undici-types/-/undici-types-6.21.0.tgz",
  2645. "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
  2646. "dev": true,
  2647. "license": "MIT",
  2648. "optional": true,
  2649. "peer": true
  2650. },
  2651. "node_modules/unimport": {
  2652. "version": "3.14.6",
  2653. "resolved": "https://mirrors.huaweicloud.com/repository/npm/unimport/-/unimport-3.14.6.tgz",
  2654. "integrity": "sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g==",
  2655. "dev": true,
  2656. "license": "MIT",
  2657. "dependencies": {
  2658. "@rollup/pluginutils": "^5.1.4",
  2659. "acorn": "^8.14.0",
  2660. "escape-string-regexp": "^5.0.0",
  2661. "estree-walker": "^3.0.3",
  2662. "fast-glob": "^3.3.3",
  2663. "local-pkg": "^1.0.0",
  2664. "magic-string": "^0.30.17",
  2665. "mlly": "^1.7.4",
  2666. "pathe": "^2.0.1",
  2667. "picomatch": "^4.0.2",
  2668. "pkg-types": "^1.3.0",
  2669. "scule": "^1.3.0",
  2670. "strip-literal": "^2.1.1",
  2671. "unplugin": "^1.16.1"
  2672. }
  2673. },
  2674. "node_modules/unimport/node_modules/confbox": {
  2675. "version": "0.2.2",
  2676. "resolved": "https://mirrors.huaweicloud.com/repository/npm/confbox/-/confbox-0.2.2.tgz",
  2677. "integrity": "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==",
  2678. "dev": true,
  2679. "license": "MIT"
  2680. },
  2681. "node_modules/unimport/node_modules/estree-walker": {
  2682. "version": "3.0.3",
  2683. "resolved": "https://mirrors.huaweicloud.com/repository/npm/estree-walker/-/estree-walker-3.0.3.tgz",
  2684. "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
  2685. "dev": true,
  2686. "license": "MIT",
  2687. "dependencies": {
  2688. "@types/estree": "^1.0.0"
  2689. }
  2690. },
  2691. "node_modules/unimport/node_modules/local-pkg": {
  2692. "version": "1.1.2",
  2693. "resolved": "https://mirrors.huaweicloud.com/repository/npm/local-pkg/-/local-pkg-1.1.2.tgz",
  2694. "integrity": "sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==",
  2695. "dev": true,
  2696. "license": "MIT",
  2697. "dependencies": {
  2698. "mlly": "^1.7.4",
  2699. "pkg-types": "^2.3.0",
  2700. "quansync": "^0.2.11"
  2701. },
  2702. "engines": {
  2703. "node": ">=14"
  2704. },
  2705. "funding": {
  2706. "url": "https://github.com/sponsors/antfu"
  2707. }
  2708. },
  2709. "node_modules/unimport/node_modules/local-pkg/node_modules/pkg-types": {
  2710. "version": "2.3.0",
  2711. "resolved": "https://mirrors.huaweicloud.com/repository/npm/pkg-types/-/pkg-types-2.3.0.tgz",
  2712. "integrity": "sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==",
  2713. "dev": true,
  2714. "license": "MIT",
  2715. "dependencies": {
  2716. "confbox": "^0.2.2",
  2717. "exsolve": "^1.0.7",
  2718. "pathe": "^2.0.3"
  2719. }
  2720. },
  2721. "node_modules/unplugin": {
  2722. "version": "1.16.1",
  2723. "resolved": "https://mirrors.huaweicloud.com/repository/npm/unplugin/-/unplugin-1.16.1.tgz",
  2724. "integrity": "sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==",
  2725. "dev": true,
  2726. "license": "MIT",
  2727. "dependencies": {
  2728. "acorn": "^8.14.0",
  2729. "webpack-virtual-modules": "^0.6.2"
  2730. },
  2731. "engines": {
  2732. "node": ">=14.0.0"
  2733. }
  2734. },
  2735. "node_modules/unplugin-auto-import": {
  2736. "version": "0.17.8",
  2737. "resolved": "https://mirrors.huaweicloud.com/repository/npm/unplugin-auto-import/-/unplugin-auto-import-0.17.8.tgz",
  2738. "integrity": "sha512-CHryj6HzJ+n4ASjzwHruD8arhbdl+UXvhuAIlHDs15Y/IMecG3wrf7FVg4pVH/DIysbq/n0phIjNHAjl7TG7Iw==",
  2739. "dev": true,
  2740. "license": "MIT",
  2741. "dependencies": {
  2742. "@antfu/utils": "^0.7.10",
  2743. "@rollup/pluginutils": "^5.1.0",
  2744. "fast-glob": "^3.3.2",
  2745. "local-pkg": "^0.5.0",
  2746. "magic-string": "^0.30.10",
  2747. "minimatch": "^9.0.4",
  2748. "unimport": "^3.7.2",
  2749. "unplugin": "^1.11.0"
  2750. },
  2751. "engines": {
  2752. "node": ">=14"
  2753. },
  2754. "funding": {
  2755. "url": "https://github.com/sponsors/antfu"
  2756. },
  2757. "peerDependencies": {
  2758. "@nuxt/kit": "^3.2.2",
  2759. "@vueuse/core": "*"
  2760. },
  2761. "peerDependenciesMeta": {
  2762. "@nuxt/kit": {
  2763. "optional": true
  2764. },
  2765. "@vueuse/core": {
  2766. "optional": true
  2767. }
  2768. }
  2769. },
  2770. "node_modules/unplugin-vue-components": {
  2771. "version": "0.26.0",
  2772. "resolved": "https://mirrors.huaweicloud.com/repository/npm/unplugin-vue-components/-/unplugin-vue-components-0.26.0.tgz",
  2773. "integrity": "sha512-s7IdPDlnOvPamjunVxw8kNgKNK8A5KM1YpK5j/p97jEKTjlPNrA0nZBiSfAKKlK1gWZuyWXlKL5dk3EDw874LQ==",
  2774. "dev": true,
  2775. "license": "MIT",
  2776. "dependencies": {
  2777. "@antfu/utils": "^0.7.6",
  2778. "@rollup/pluginutils": "^5.0.4",
  2779. "chokidar": "^3.5.3",
  2780. "debug": "^4.3.4",
  2781. "fast-glob": "^3.3.1",
  2782. "local-pkg": "^0.4.3",
  2783. "magic-string": "^0.30.3",
  2784. "minimatch": "^9.0.3",
  2785. "resolve": "^1.22.4",
  2786. "unplugin": "^1.4.0"
  2787. },
  2788. "engines": {
  2789. "node": ">=14"
  2790. },
  2791. "funding": {
  2792. "url": "https://github.com/sponsors/antfu"
  2793. },
  2794. "peerDependencies": {
  2795. "@babel/parser": "^7.15.8",
  2796. "@nuxt/kit": "^3.2.2",
  2797. "vue": "2 || 3"
  2798. },
  2799. "peerDependenciesMeta": {
  2800. "@babel/parser": {
  2801. "optional": true
  2802. },
  2803. "@nuxt/kit": {
  2804. "optional": true
  2805. }
  2806. }
  2807. },
  2808. "node_modules/unplugin-vue-components/node_modules/local-pkg": {
  2809. "version": "0.4.3",
  2810. "resolved": "https://mirrors.huaweicloud.com/repository/npm/local-pkg/-/local-pkg-0.4.3.tgz",
  2811. "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==",
  2812. "dev": true,
  2813. "license": "MIT",
  2814. "engines": {
  2815. "node": ">=14"
  2816. },
  2817. "funding": {
  2818. "url": "https://github.com/sponsors/antfu"
  2819. }
  2820. },
  2821. "node_modules/vconsole": {
  2822. "version": "3.15.1",
  2823. "resolved": "https://mirrors.huaweicloud.com/repository/npm/vconsole/-/vconsole-3.15.1.tgz",
  2824. "integrity": "sha512-KH8XLdrq9T5YHJO/ixrjivHfmF2PC2CdVoK6RWZB4yftMykYIaXY1mxZYAic70vADM54kpMQF+dYmvl5NRNy1g==",
  2825. "license": "MIT",
  2826. "dependencies": {
  2827. "@babel/runtime": "^7.17.2",
  2828. "copy-text-to-clipboard": "^3.0.1",
  2829. "core-js": "^3.11.0",
  2830. "mutation-observer": "^1.0.3"
  2831. }
  2832. },
  2833. "node_modules/vite": {
  2834. "version": "5.4.21",
  2835. "resolved": "https://mirrors.huaweicloud.com/repository/npm/vite/-/vite-5.4.21.tgz",
  2836. "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==",
  2837. "dev": true,
  2838. "license": "MIT",
  2839. "dependencies": {
  2840. "esbuild": "^0.21.3",
  2841. "postcss": "^8.4.43",
  2842. "rollup": "^4.20.0"
  2843. },
  2844. "bin": {
  2845. "vite": "bin/vite.js"
  2846. },
  2847. "engines": {
  2848. "node": "^18.0.0 || >=20.0.0"
  2849. },
  2850. "funding": {
  2851. "url": "https://github.com/vitejs/vite?sponsor=1"
  2852. },
  2853. "optionalDependencies": {
  2854. "fsevents": "~2.3.3"
  2855. },
  2856. "peerDependencies": {
  2857. "@types/node": "^18.0.0 || >=20.0.0",
  2858. "less": "*",
  2859. "lightningcss": "^1.21.0",
  2860. "sass": "*",
  2861. "sass-embedded": "*",
  2862. "stylus": "*",
  2863. "sugarss": "*",
  2864. "terser": "^5.4.0"
  2865. },
  2866. "peerDependenciesMeta": {
  2867. "@types/node": {
  2868. "optional": true
  2869. },
  2870. "less": {
  2871. "optional": true
  2872. },
  2873. "lightningcss": {
  2874. "optional": true
  2875. },
  2876. "sass": {
  2877. "optional": true
  2878. },
  2879. "sass-embedded": {
  2880. "optional": true
  2881. },
  2882. "stylus": {
  2883. "optional": true
  2884. },
  2885. "sugarss": {
  2886. "optional": true
  2887. },
  2888. "terser": {
  2889. "optional": true
  2890. }
  2891. }
  2892. },
  2893. "node_modules/vue": {
  2894. "version": "3.4.14",
  2895. "resolved": "https://registry.npmmirror.com/vue/-/vue-3.4.14.tgz",
  2896. "integrity": "sha512-Rop5Al/ZcBbBz+KjPZaZDgHDX0kUP4duEzDbm+1o91uxYUNmJrZSBuegsNIJvUGy+epLevNRNhLjm08VKTgGyw==",
  2897. "license": "MIT",
  2898. "dependencies": {
  2899. "@vue/compiler-dom": "3.4.14",
  2900. "@vue/compiler-sfc": "3.4.14",
  2901. "@vue/runtime-dom": "3.4.14",
  2902. "@vue/server-renderer": "3.4.14",
  2903. "@vue/shared": "3.4.14"
  2904. },
  2905. "peerDependencies": {
  2906. "typescript": "*"
  2907. },
  2908. "peerDependenciesMeta": {
  2909. "typescript": {
  2910. "optional": true
  2911. }
  2912. }
  2913. },
  2914. "node_modules/vue-router": {
  2915. "version": "4.2.5",
  2916. "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.2.5.tgz",
  2917. "integrity": "sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==",
  2918. "license": "MIT",
  2919. "dependencies": {
  2920. "@vue/devtools-api": "^6.5.0"
  2921. },
  2922. "funding": {
  2923. "url": "https://github.com/sponsors/posva"
  2924. },
  2925. "peerDependencies": {
  2926. "vue": "^3.2.0"
  2927. }
  2928. },
  2929. "node_modules/webpack-virtual-modules": {
  2930. "version": "0.6.2",
  2931. "resolved": "https://mirrors.huaweicloud.com/repository/npm/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
  2932. "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
  2933. "dev": true,
  2934. "license": "MIT"
  2935. }
  2936. }
  2937. }