package-lock.json 98 KB

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