package-lock.json 144 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182
  1. {
  2. "name": "low-altitude-web",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "low-altitude-web",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "@vueuse/core": "^11.1.0",
  12. "axios": "^1.7.7",
  13. "echarts": "^5.5.1",
  14. "element-plus": "^2.8.3",
  15. "mitt": "^3.0.1",
  16. "pinia": "^3.0.1",
  17. "vue": "^3.4.29",
  18. "vue-router": "^4.5.0",
  19. "vue3-count-to": "^1.1.2"
  20. },
  21. "devDependencies": {
  22. "@vitejs/plugin-vue": "^5.0.5",
  23. "autoprefixer": "^10.4.20",
  24. "husky": "^9.1.7",
  25. "lint-staged": "^15.5.0",
  26. "postcss": "^8.5.3",
  27. "postcss-px-to-viewport": "^1.1.1",
  28. "prettier": "^3.5.3",
  29. "sass": "^1.79.3",
  30. "tailwindcss": "^3.4.17",
  31. "unplugin-auto-import": "^19.1.0",
  32. "unplugin-vue-components": "^28.4.0",
  33. "vite": "^5.3.1"
  34. }
  35. },
  36. "node_modules/@alloc/quick-lru": {
  37. "version": "5.2.0",
  38. "resolved": "https://mirrors.tencent.com/npm/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
  39. "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
  40. "dev": true,
  41. "engines": {
  42. "node": ">=10"
  43. },
  44. "funding": {
  45. "url": "https://github.com/sponsors/sindresorhus"
  46. }
  47. },
  48. "node_modules/@babel/helper-string-parser": {
  49. "version": "7.25.9",
  50. "resolved": "https://mirrors.tencent.com/npm/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
  51. "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
  52. "engines": {
  53. "node": ">=6.9.0"
  54. }
  55. },
  56. "node_modules/@babel/helper-validator-identifier": {
  57. "version": "7.25.9",
  58. "resolved": "https://mirrors.tencent.com/npm/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
  59. "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
  60. "engines": {
  61. "node": ">=6.9.0"
  62. }
  63. },
  64. "node_modules/@babel/parser": {
  65. "version": "7.26.9",
  66. "resolved": "https://mirrors.tencent.com/npm/@babel/parser/-/parser-7.26.9.tgz",
  67. "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==",
  68. "dependencies": {
  69. "@babel/types": "^7.26.9"
  70. },
  71. "bin": {
  72. "parser": "bin/babel-parser.js"
  73. },
  74. "engines": {
  75. "node": ">=6.0.0"
  76. }
  77. },
  78. "node_modules/@babel/types": {
  79. "version": "7.26.9",
  80. "resolved": "https://mirrors.tencent.com/npm/@babel/types/-/types-7.26.9.tgz",
  81. "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==",
  82. "dependencies": {
  83. "@babel/helper-string-parser": "^7.25.9",
  84. "@babel/helper-validator-identifier": "^7.25.9"
  85. },
  86. "engines": {
  87. "node": ">=6.9.0"
  88. }
  89. },
  90. "node_modules/@ctrl/tinycolor": {
  91. "version": "3.6.1",
  92. "resolved": "https://r.cnpmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz",
  93. "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==",
  94. "license": "MIT",
  95. "engines": {
  96. "node": ">=10"
  97. }
  98. },
  99. "node_modules/@element-plus/icons-vue": {
  100. "version": "2.3.1",
  101. "resolved": "https://r.cnpmjs.org/@element-plus/icons-vue/-/icons-vue-2.3.1.tgz",
  102. "integrity": "sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==",
  103. "license": "MIT",
  104. "peerDependencies": {
  105. "vue": "^3.2.0"
  106. }
  107. },
  108. "node_modules/@esbuild/aix-ppc64": {
  109. "version": "0.21.5",
  110. "resolved": "https://r.cnpmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
  111. "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
  112. "cpu": [
  113. "ppc64"
  114. ],
  115. "dev": true,
  116. "license": "MIT",
  117. "optional": true,
  118. "os": [
  119. "aix"
  120. ],
  121. "engines": {
  122. "node": ">=12"
  123. }
  124. },
  125. "node_modules/@esbuild/android-arm": {
  126. "version": "0.21.5",
  127. "resolved": "https://r.cnpmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
  128. "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
  129. "cpu": [
  130. "arm"
  131. ],
  132. "dev": true,
  133. "license": "MIT",
  134. "optional": true,
  135. "os": [
  136. "android"
  137. ],
  138. "engines": {
  139. "node": ">=12"
  140. }
  141. },
  142. "node_modules/@esbuild/android-arm64": {
  143. "version": "0.21.5",
  144. "resolved": "https://r.cnpmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
  145. "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
  146. "cpu": [
  147. "arm64"
  148. ],
  149. "dev": true,
  150. "license": "MIT",
  151. "optional": true,
  152. "os": [
  153. "android"
  154. ],
  155. "engines": {
  156. "node": ">=12"
  157. }
  158. },
  159. "node_modules/@esbuild/android-x64": {
  160. "version": "0.21.5",
  161. "resolved": "https://r.cnpmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
  162. "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
  163. "cpu": [
  164. "x64"
  165. ],
  166. "dev": true,
  167. "license": "MIT",
  168. "optional": true,
  169. "os": [
  170. "android"
  171. ],
  172. "engines": {
  173. "node": ">=12"
  174. }
  175. },
  176. "node_modules/@esbuild/darwin-arm64": {
  177. "version": "0.21.5",
  178. "resolved": "https://r.cnpmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
  179. "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
  180. "cpu": [
  181. "arm64"
  182. ],
  183. "dev": true,
  184. "license": "MIT",
  185. "optional": true,
  186. "os": [
  187. "darwin"
  188. ],
  189. "engines": {
  190. "node": ">=12"
  191. }
  192. },
  193. "node_modules/@esbuild/darwin-x64": {
  194. "version": "0.21.5",
  195. "resolved": "https://r.cnpmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
  196. "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
  197. "cpu": [
  198. "x64"
  199. ],
  200. "dev": true,
  201. "license": "MIT",
  202. "optional": true,
  203. "os": [
  204. "darwin"
  205. ],
  206. "engines": {
  207. "node": ">=12"
  208. }
  209. },
  210. "node_modules/@esbuild/freebsd-arm64": {
  211. "version": "0.21.5",
  212. "resolved": "https://r.cnpmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
  213. "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
  214. "cpu": [
  215. "arm64"
  216. ],
  217. "dev": true,
  218. "license": "MIT",
  219. "optional": true,
  220. "os": [
  221. "freebsd"
  222. ],
  223. "engines": {
  224. "node": ">=12"
  225. }
  226. },
  227. "node_modules/@esbuild/freebsd-x64": {
  228. "version": "0.21.5",
  229. "resolved": "https://r.cnpmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
  230. "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
  231. "cpu": [
  232. "x64"
  233. ],
  234. "dev": true,
  235. "license": "MIT",
  236. "optional": true,
  237. "os": [
  238. "freebsd"
  239. ],
  240. "engines": {
  241. "node": ">=12"
  242. }
  243. },
  244. "node_modules/@esbuild/linux-arm": {
  245. "version": "0.21.5",
  246. "resolved": "https://r.cnpmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
  247. "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
  248. "cpu": [
  249. "arm"
  250. ],
  251. "dev": true,
  252. "license": "MIT",
  253. "optional": true,
  254. "os": [
  255. "linux"
  256. ],
  257. "engines": {
  258. "node": ">=12"
  259. }
  260. },
  261. "node_modules/@esbuild/linux-arm64": {
  262. "version": "0.21.5",
  263. "resolved": "https://r.cnpmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
  264. "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
  265. "cpu": [
  266. "arm64"
  267. ],
  268. "dev": true,
  269. "license": "MIT",
  270. "optional": true,
  271. "os": [
  272. "linux"
  273. ],
  274. "engines": {
  275. "node": ">=12"
  276. }
  277. },
  278. "node_modules/@esbuild/linux-ia32": {
  279. "version": "0.21.5",
  280. "resolved": "https://r.cnpmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
  281. "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
  282. "cpu": [
  283. "ia32"
  284. ],
  285. "dev": true,
  286. "license": "MIT",
  287. "optional": true,
  288. "os": [
  289. "linux"
  290. ],
  291. "engines": {
  292. "node": ">=12"
  293. }
  294. },
  295. "node_modules/@esbuild/linux-loong64": {
  296. "version": "0.21.5",
  297. "resolved": "https://r.cnpmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
  298. "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
  299. "cpu": [
  300. "loong64"
  301. ],
  302. "dev": true,
  303. "license": "MIT",
  304. "optional": true,
  305. "os": [
  306. "linux"
  307. ],
  308. "engines": {
  309. "node": ">=12"
  310. }
  311. },
  312. "node_modules/@esbuild/linux-mips64el": {
  313. "version": "0.21.5",
  314. "resolved": "https://r.cnpmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
  315. "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
  316. "cpu": [
  317. "mips64el"
  318. ],
  319. "dev": true,
  320. "license": "MIT",
  321. "optional": true,
  322. "os": [
  323. "linux"
  324. ],
  325. "engines": {
  326. "node": ">=12"
  327. }
  328. },
  329. "node_modules/@esbuild/linux-ppc64": {
  330. "version": "0.21.5",
  331. "resolved": "https://r.cnpmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
  332. "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
  333. "cpu": [
  334. "ppc64"
  335. ],
  336. "dev": true,
  337. "license": "MIT",
  338. "optional": true,
  339. "os": [
  340. "linux"
  341. ],
  342. "engines": {
  343. "node": ">=12"
  344. }
  345. },
  346. "node_modules/@esbuild/linux-riscv64": {
  347. "version": "0.21.5",
  348. "resolved": "https://r.cnpmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
  349. "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
  350. "cpu": [
  351. "riscv64"
  352. ],
  353. "dev": true,
  354. "license": "MIT",
  355. "optional": true,
  356. "os": [
  357. "linux"
  358. ],
  359. "engines": {
  360. "node": ">=12"
  361. }
  362. },
  363. "node_modules/@esbuild/linux-s390x": {
  364. "version": "0.21.5",
  365. "resolved": "https://r.cnpmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
  366. "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
  367. "cpu": [
  368. "s390x"
  369. ],
  370. "dev": true,
  371. "license": "MIT",
  372. "optional": true,
  373. "os": [
  374. "linux"
  375. ],
  376. "engines": {
  377. "node": ">=12"
  378. }
  379. },
  380. "node_modules/@esbuild/linux-x64": {
  381. "version": "0.21.5",
  382. "resolved": "https://r.cnpmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
  383. "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
  384. "cpu": [
  385. "x64"
  386. ],
  387. "dev": true,
  388. "license": "MIT",
  389. "optional": true,
  390. "os": [
  391. "linux"
  392. ],
  393. "engines": {
  394. "node": ">=12"
  395. }
  396. },
  397. "node_modules/@esbuild/netbsd-x64": {
  398. "version": "0.21.5",
  399. "resolved": "https://r.cnpmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
  400. "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
  401. "cpu": [
  402. "x64"
  403. ],
  404. "dev": true,
  405. "license": "MIT",
  406. "optional": true,
  407. "os": [
  408. "netbsd"
  409. ],
  410. "engines": {
  411. "node": ">=12"
  412. }
  413. },
  414. "node_modules/@esbuild/openbsd-x64": {
  415. "version": "0.21.5",
  416. "resolved": "https://r.cnpmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
  417. "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
  418. "cpu": [
  419. "x64"
  420. ],
  421. "dev": true,
  422. "license": "MIT",
  423. "optional": true,
  424. "os": [
  425. "openbsd"
  426. ],
  427. "engines": {
  428. "node": ">=12"
  429. }
  430. },
  431. "node_modules/@esbuild/sunos-x64": {
  432. "version": "0.21.5",
  433. "resolved": "https://r.cnpmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
  434. "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
  435. "cpu": [
  436. "x64"
  437. ],
  438. "dev": true,
  439. "license": "MIT",
  440. "optional": true,
  441. "os": [
  442. "sunos"
  443. ],
  444. "engines": {
  445. "node": ">=12"
  446. }
  447. },
  448. "node_modules/@esbuild/win32-arm64": {
  449. "version": "0.21.5",
  450. "resolved": "https://r.cnpmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
  451. "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
  452. "cpu": [
  453. "arm64"
  454. ],
  455. "dev": true,
  456. "license": "MIT",
  457. "optional": true,
  458. "os": [
  459. "win32"
  460. ],
  461. "engines": {
  462. "node": ">=12"
  463. }
  464. },
  465. "node_modules/@esbuild/win32-ia32": {
  466. "version": "0.21.5",
  467. "resolved": "https://r.cnpmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
  468. "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
  469. "cpu": [
  470. "ia32"
  471. ],
  472. "dev": true,
  473. "license": "MIT",
  474. "optional": true,
  475. "os": [
  476. "win32"
  477. ],
  478. "engines": {
  479. "node": ">=12"
  480. }
  481. },
  482. "node_modules/@esbuild/win32-x64": {
  483. "version": "0.21.5",
  484. "resolved": "https://r.cnpmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
  485. "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
  486. "cpu": [
  487. "x64"
  488. ],
  489. "dev": true,
  490. "license": "MIT",
  491. "optional": true,
  492. "os": [
  493. "win32"
  494. ],
  495. "engines": {
  496. "node": ">=12"
  497. }
  498. },
  499. "node_modules/@floating-ui/core": {
  500. "version": "1.6.8",
  501. "resolved": "https://r.cnpmjs.org/@floating-ui/core/-/core-1.6.8.tgz",
  502. "integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==",
  503. "license": "MIT",
  504. "dependencies": {
  505. "@floating-ui/utils": "^0.2.8"
  506. }
  507. },
  508. "node_modules/@floating-ui/dom": {
  509. "version": "1.6.11",
  510. "resolved": "https://r.cnpmjs.org/@floating-ui/dom/-/dom-1.6.11.tgz",
  511. "integrity": "sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==",
  512. "license": "MIT",
  513. "dependencies": {
  514. "@floating-ui/core": "^1.6.0",
  515. "@floating-ui/utils": "^0.2.8"
  516. }
  517. },
  518. "node_modules/@floating-ui/utils": {
  519. "version": "0.2.8",
  520. "resolved": "https://r.cnpmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz",
  521. "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==",
  522. "license": "MIT"
  523. },
  524. "node_modules/@isaacs/cliui": {
  525. "version": "8.0.2",
  526. "resolved": "https://mirrors.tencent.com/npm/@isaacs/cliui/-/cliui-8.0.2.tgz",
  527. "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
  528. "dev": true,
  529. "dependencies": {
  530. "string-width": "^5.1.2",
  531. "string-width-cjs": "npm:string-width@^4.2.0",
  532. "strip-ansi": "^7.0.1",
  533. "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
  534. "wrap-ansi": "^8.1.0",
  535. "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
  536. },
  537. "engines": {
  538. "node": ">=12"
  539. }
  540. },
  541. "node_modules/@jridgewell/gen-mapping": {
  542. "version": "0.3.8",
  543. "resolved": "https://mirrors.tencent.com/npm/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
  544. "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
  545. "dev": true,
  546. "dependencies": {
  547. "@jridgewell/set-array": "^1.2.1",
  548. "@jridgewell/sourcemap-codec": "^1.4.10",
  549. "@jridgewell/trace-mapping": "^0.3.24"
  550. },
  551. "engines": {
  552. "node": ">=6.0.0"
  553. }
  554. },
  555. "node_modules/@jridgewell/resolve-uri": {
  556. "version": "3.1.2",
  557. "resolved": "https://mirrors.tencent.com/npm/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  558. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  559. "dev": true,
  560. "engines": {
  561. "node": ">=6.0.0"
  562. }
  563. },
  564. "node_modules/@jridgewell/set-array": {
  565. "version": "1.2.1",
  566. "resolved": "https://mirrors.tencent.com/npm/@jridgewell/set-array/-/set-array-1.2.1.tgz",
  567. "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
  568. "dev": true,
  569. "engines": {
  570. "node": ">=6.0.0"
  571. }
  572. },
  573. "node_modules/@jridgewell/sourcemap-codec": {
  574. "version": "1.5.0",
  575. "resolved": "https://r.cnpmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
  576. "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
  577. "license": "MIT"
  578. },
  579. "node_modules/@jridgewell/trace-mapping": {
  580. "version": "0.3.25",
  581. "resolved": "https://mirrors.tencent.com/npm/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
  582. "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
  583. "dev": true,
  584. "dependencies": {
  585. "@jridgewell/resolve-uri": "^3.1.0",
  586. "@jridgewell/sourcemap-codec": "^1.4.14"
  587. }
  588. },
  589. "node_modules/@nodelib/fs.scandir": {
  590. "version": "2.1.5",
  591. "resolved": "https://mirrors.tencent.com/npm/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
  592. "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
  593. "dev": true,
  594. "dependencies": {
  595. "@nodelib/fs.stat": "2.0.5",
  596. "run-parallel": "^1.1.9"
  597. },
  598. "engines": {
  599. "node": ">= 8"
  600. }
  601. },
  602. "node_modules/@nodelib/fs.stat": {
  603. "version": "2.0.5",
  604. "resolved": "https://mirrors.tencent.com/npm/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
  605. "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
  606. "dev": true,
  607. "engines": {
  608. "node": ">= 8"
  609. }
  610. },
  611. "node_modules/@nodelib/fs.walk": {
  612. "version": "1.2.8",
  613. "resolved": "https://mirrors.tencent.com/npm/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
  614. "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
  615. "dev": true,
  616. "dependencies": {
  617. "@nodelib/fs.scandir": "2.1.5",
  618. "fastq": "^1.6.0"
  619. },
  620. "engines": {
  621. "node": ">= 8"
  622. }
  623. },
  624. "node_modules/@pkgjs/parseargs": {
  625. "version": "0.11.0",
  626. "resolved": "https://mirrors.tencent.com/npm/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
  627. "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
  628. "dev": true,
  629. "optional": true,
  630. "engines": {
  631. "node": ">=14"
  632. }
  633. },
  634. "node_modules/@popperjs/core": {
  635. "version": "2.11.8",
  636. "resolved": "https://registry.npmmirror.com/@popperjs/core/-/core-2.11.8.tgz",
  637. "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
  638. "license": "MIT",
  639. "funding": {
  640. "type": "opencollective",
  641. "url": "https://opencollective.com/popperjs"
  642. }
  643. },
  644. "node_modules/@rollup/rollup-android-arm-eabi": {
  645. "version": "4.22.4",
  646. "resolved": "https://r.cnpmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.4.tgz",
  647. "integrity": "sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==",
  648. "cpu": [
  649. "arm"
  650. ],
  651. "dev": true,
  652. "license": "MIT",
  653. "optional": true,
  654. "os": [
  655. "android"
  656. ]
  657. },
  658. "node_modules/@rollup/rollup-android-arm64": {
  659. "version": "4.22.4",
  660. "resolved": "https://r.cnpmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.4.tgz",
  661. "integrity": "sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==",
  662. "cpu": [
  663. "arm64"
  664. ],
  665. "dev": true,
  666. "license": "MIT",
  667. "optional": true,
  668. "os": [
  669. "android"
  670. ]
  671. },
  672. "node_modules/@rollup/rollup-darwin-arm64": {
  673. "version": "4.22.4",
  674. "resolved": "https://r.cnpmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.4.tgz",
  675. "integrity": "sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==",
  676. "cpu": [
  677. "arm64"
  678. ],
  679. "dev": true,
  680. "license": "MIT",
  681. "optional": true,
  682. "os": [
  683. "darwin"
  684. ]
  685. },
  686. "node_modules/@rollup/rollup-darwin-x64": {
  687. "version": "4.22.4",
  688. "resolved": "https://r.cnpmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.4.tgz",
  689. "integrity": "sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==",
  690. "cpu": [
  691. "x64"
  692. ],
  693. "dev": true,
  694. "license": "MIT",
  695. "optional": true,
  696. "os": [
  697. "darwin"
  698. ]
  699. },
  700. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  701. "version": "4.22.4",
  702. "resolved": "https://r.cnpmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.4.tgz",
  703. "integrity": "sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==",
  704. "cpu": [
  705. "arm"
  706. ],
  707. "dev": true,
  708. "license": "MIT",
  709. "optional": true,
  710. "os": [
  711. "linux"
  712. ]
  713. },
  714. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  715. "version": "4.22.4",
  716. "resolved": "https://r.cnpmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.4.tgz",
  717. "integrity": "sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==",
  718. "cpu": [
  719. "arm"
  720. ],
  721. "dev": true,
  722. "license": "MIT",
  723. "optional": true,
  724. "os": [
  725. "linux"
  726. ]
  727. },
  728. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  729. "version": "4.22.4",
  730. "resolved": "https://r.cnpmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.4.tgz",
  731. "integrity": "sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==",
  732. "cpu": [
  733. "arm64"
  734. ],
  735. "dev": true,
  736. "license": "MIT",
  737. "optional": true,
  738. "os": [
  739. "linux"
  740. ]
  741. },
  742. "node_modules/@rollup/rollup-linux-arm64-musl": {
  743. "version": "4.22.4",
  744. "resolved": "https://r.cnpmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.4.tgz",
  745. "integrity": "sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==",
  746. "cpu": [
  747. "arm64"
  748. ],
  749. "dev": true,
  750. "license": "MIT",
  751. "optional": true,
  752. "os": [
  753. "linux"
  754. ]
  755. },
  756. "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
  757. "version": "4.22.4",
  758. "resolved": "https://r.cnpmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.4.tgz",
  759. "integrity": "sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==",
  760. "cpu": [
  761. "ppc64"
  762. ],
  763. "dev": true,
  764. "license": "MIT",
  765. "optional": true,
  766. "os": [
  767. "linux"
  768. ]
  769. },
  770. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  771. "version": "4.22.4",
  772. "resolved": "https://r.cnpmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.4.tgz",
  773. "integrity": "sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==",
  774. "cpu": [
  775. "riscv64"
  776. ],
  777. "dev": true,
  778. "license": "MIT",
  779. "optional": true,
  780. "os": [
  781. "linux"
  782. ]
  783. },
  784. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  785. "version": "4.22.4",
  786. "resolved": "https://r.cnpmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.4.tgz",
  787. "integrity": "sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==",
  788. "cpu": [
  789. "s390x"
  790. ],
  791. "dev": true,
  792. "license": "MIT",
  793. "optional": true,
  794. "os": [
  795. "linux"
  796. ]
  797. },
  798. "node_modules/@rollup/rollup-linux-x64-gnu": {
  799. "version": "4.22.4",
  800. "resolved": "https://r.cnpmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.4.tgz",
  801. "integrity": "sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==",
  802. "cpu": [
  803. "x64"
  804. ],
  805. "dev": true,
  806. "license": "MIT",
  807. "optional": true,
  808. "os": [
  809. "linux"
  810. ]
  811. },
  812. "node_modules/@rollup/rollup-linux-x64-musl": {
  813. "version": "4.22.4",
  814. "resolved": "https://r.cnpmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.4.tgz",
  815. "integrity": "sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==",
  816. "cpu": [
  817. "x64"
  818. ],
  819. "dev": true,
  820. "license": "MIT",
  821. "optional": true,
  822. "os": [
  823. "linux"
  824. ]
  825. },
  826. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  827. "version": "4.22.4",
  828. "resolved": "https://r.cnpmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.4.tgz",
  829. "integrity": "sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==",
  830. "cpu": [
  831. "arm64"
  832. ],
  833. "dev": true,
  834. "license": "MIT",
  835. "optional": true,
  836. "os": [
  837. "win32"
  838. ]
  839. },
  840. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  841. "version": "4.22.4",
  842. "resolved": "https://r.cnpmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.4.tgz",
  843. "integrity": "sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==",
  844. "cpu": [
  845. "ia32"
  846. ],
  847. "dev": true,
  848. "license": "MIT",
  849. "optional": true,
  850. "os": [
  851. "win32"
  852. ]
  853. },
  854. "node_modules/@rollup/rollup-win32-x64-msvc": {
  855. "version": "4.22.4",
  856. "resolved": "https://r.cnpmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.4.tgz",
  857. "integrity": "sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==",
  858. "cpu": [
  859. "x64"
  860. ],
  861. "dev": true,
  862. "license": "MIT",
  863. "optional": true,
  864. "os": [
  865. "win32"
  866. ]
  867. },
  868. "node_modules/@types/estree": {
  869. "version": "1.0.5",
  870. "resolved": "https://r.cnpmjs.org/@types/estree/-/estree-1.0.5.tgz",
  871. "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==",
  872. "dev": true,
  873. "license": "MIT"
  874. },
  875. "node_modules/@types/lodash": {
  876. "version": "4.17.9",
  877. "resolved": "https://r.cnpmjs.org/@types/lodash/-/lodash-4.17.9.tgz",
  878. "integrity": "sha512-w9iWudx1XWOHW5lQRS9iKpK/XuRhnN+0T7HvdCCd802FYkT1AMTnxndJHGrNJwRoRHkslGr4S29tjm1cT7x/7w==",
  879. "license": "MIT"
  880. },
  881. "node_modules/@types/lodash-es": {
  882. "version": "4.17.12",
  883. "resolved": "https://r.cnpmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  884. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  885. "license": "MIT",
  886. "dependencies": {
  887. "@types/lodash": "*"
  888. }
  889. },
  890. "node_modules/@types/web-bluetooth": {
  891. "version": "0.0.20",
  892. "resolved": "https://r.cnpmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz",
  893. "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==",
  894. "license": "MIT"
  895. },
  896. "node_modules/@vitejs/plugin-vue": {
  897. "version": "5.1.4",
  898. "resolved": "https://r.cnpmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.1.4.tgz",
  899. "integrity": "sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==",
  900. "dev": true,
  901. "license": "MIT",
  902. "engines": {
  903. "node": "^18.0.0 || >=20.0.0"
  904. },
  905. "peerDependencies": {
  906. "vite": "^5.0.0",
  907. "vue": "^3.2.25"
  908. }
  909. },
  910. "node_modules/@vue/compiler-core": {
  911. "version": "3.5.13",
  912. "resolved": "https://mirrors.tencent.com/npm/@vue/compiler-core/-/compiler-core-3.5.13.tgz",
  913. "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==",
  914. "dependencies": {
  915. "@babel/parser": "^7.25.3",
  916. "@vue/shared": "3.5.13",
  917. "entities": "^4.5.0",
  918. "estree-walker": "^2.0.2",
  919. "source-map-js": "^1.2.0"
  920. }
  921. },
  922. "node_modules/@vue/compiler-dom": {
  923. "version": "3.5.13",
  924. "resolved": "https://mirrors.tencent.com/npm/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz",
  925. "integrity": "sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==",
  926. "dependencies": {
  927. "@vue/compiler-core": "3.5.13",
  928. "@vue/shared": "3.5.13"
  929. }
  930. },
  931. "node_modules/@vue/compiler-sfc": {
  932. "version": "3.5.13",
  933. "resolved": "https://mirrors.tencent.com/npm/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz",
  934. "integrity": "sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==",
  935. "dependencies": {
  936. "@babel/parser": "^7.25.3",
  937. "@vue/compiler-core": "3.5.13",
  938. "@vue/compiler-dom": "3.5.13",
  939. "@vue/compiler-ssr": "3.5.13",
  940. "@vue/shared": "3.5.13",
  941. "estree-walker": "^2.0.2",
  942. "magic-string": "^0.30.11",
  943. "postcss": "^8.4.48",
  944. "source-map-js": "^1.2.0"
  945. }
  946. },
  947. "node_modules/@vue/compiler-ssr": {
  948. "version": "3.5.13",
  949. "resolved": "https://mirrors.tencent.com/npm/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz",
  950. "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==",
  951. "dependencies": {
  952. "@vue/compiler-dom": "3.5.13",
  953. "@vue/shared": "3.5.13"
  954. }
  955. },
  956. "node_modules/@vue/devtools-api": {
  957. "version": "7.7.2",
  958. "resolved": "https://mirrors.tencent.com/npm/@vue/devtools-api/-/devtools-api-7.7.2.tgz",
  959. "integrity": "sha512-1syn558KhyN+chO5SjlZIwJ8bV/bQ1nOVTG66t2RbG66ZGekyiYNmRO7X9BJCXQqPsFHlnksqvPhce2qpzxFnA==",
  960. "dependencies": {
  961. "@vue/devtools-kit": "^7.7.2"
  962. }
  963. },
  964. "node_modules/@vue/devtools-kit": {
  965. "version": "7.7.2",
  966. "resolved": "https://mirrors.tencent.com/npm/@vue/devtools-kit/-/devtools-kit-7.7.2.tgz",
  967. "integrity": "sha512-CY0I1JH3Z8PECbn6k3TqM1Bk9ASWxeMtTCvZr7vb+CHi+X/QwQm5F1/fPagraamKMAHVfuuCbdcnNg1A4CYVWQ==",
  968. "dependencies": {
  969. "@vue/devtools-shared": "^7.7.2",
  970. "birpc": "^0.2.19",
  971. "hookable": "^5.5.3",
  972. "mitt": "^3.0.1",
  973. "perfect-debounce": "^1.0.0",
  974. "speakingurl": "^14.0.1",
  975. "superjson": "^2.2.1"
  976. }
  977. },
  978. "node_modules/@vue/devtools-shared": {
  979. "version": "7.7.2",
  980. "resolved": "https://mirrors.tencent.com/npm/@vue/devtools-shared/-/devtools-shared-7.7.2.tgz",
  981. "integrity": "sha512-uBFxnp8gwW2vD6FrJB8JZLUzVb6PNRG0B0jBnHsOH8uKyva2qINY8PTF5Te4QlTbMDqU5K6qtJDr6cNsKWhbOA==",
  982. "dependencies": {
  983. "rfdc": "^1.4.1"
  984. }
  985. },
  986. "node_modules/@vue/reactivity": {
  987. "version": "3.5.13",
  988. "resolved": "https://mirrors.tencent.com/npm/@vue/reactivity/-/reactivity-3.5.13.tgz",
  989. "integrity": "sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==",
  990. "dependencies": {
  991. "@vue/shared": "3.5.13"
  992. }
  993. },
  994. "node_modules/@vue/runtime-core": {
  995. "version": "3.5.13",
  996. "resolved": "https://mirrors.tencent.com/npm/@vue/runtime-core/-/runtime-core-3.5.13.tgz",
  997. "integrity": "sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==",
  998. "dependencies": {
  999. "@vue/reactivity": "3.5.13",
  1000. "@vue/shared": "3.5.13"
  1001. }
  1002. },
  1003. "node_modules/@vue/runtime-dom": {
  1004. "version": "3.5.13",
  1005. "resolved": "https://mirrors.tencent.com/npm/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz",
  1006. "integrity": "sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==",
  1007. "dependencies": {
  1008. "@vue/reactivity": "3.5.13",
  1009. "@vue/runtime-core": "3.5.13",
  1010. "@vue/shared": "3.5.13",
  1011. "csstype": "^3.1.3"
  1012. }
  1013. },
  1014. "node_modules/@vue/server-renderer": {
  1015. "version": "3.5.13",
  1016. "resolved": "https://mirrors.tencent.com/npm/@vue/server-renderer/-/server-renderer-3.5.13.tgz",
  1017. "integrity": "sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==",
  1018. "dependencies": {
  1019. "@vue/compiler-ssr": "3.5.13",
  1020. "@vue/shared": "3.5.13"
  1021. },
  1022. "peerDependencies": {
  1023. "vue": "3.5.13"
  1024. }
  1025. },
  1026. "node_modules/@vue/shared": {
  1027. "version": "3.5.13",
  1028. "resolved": "https://mirrors.tencent.com/npm/@vue/shared/-/shared-3.5.13.tgz",
  1029. "integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ=="
  1030. },
  1031. "node_modules/@vueuse/core": {
  1032. "version": "11.1.0",
  1033. "resolved": "https://r.cnpmjs.org/@vueuse/core/-/core-11.1.0.tgz",
  1034. "integrity": "sha512-P6dk79QYA6sKQnghrUz/1tHi0n9mrb/iO1WTMk/ElLmTyNqgDeSZ3wcDf6fRBGzRJbeG1dxzEOvLENMjr+E3fg==",
  1035. "license": "MIT",
  1036. "dependencies": {
  1037. "@types/web-bluetooth": "^0.0.20",
  1038. "@vueuse/metadata": "11.1.0",
  1039. "@vueuse/shared": "11.1.0",
  1040. "vue-demi": ">=0.14.10"
  1041. },
  1042. "funding": {
  1043. "url": "https://github.com/sponsors/antfu"
  1044. }
  1045. },
  1046. "node_modules/@vueuse/core/node_modules/vue-demi": {
  1047. "version": "0.14.10",
  1048. "resolved": "https://r.cnpmjs.org/vue-demi/-/vue-demi-0.14.10.tgz",
  1049. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1050. "hasInstallScript": true,
  1051. "license": "MIT",
  1052. "bin": {
  1053. "vue-demi-fix": "bin/vue-demi-fix.js",
  1054. "vue-demi-switch": "bin/vue-demi-switch.js"
  1055. },
  1056. "engines": {
  1057. "node": ">=12"
  1058. },
  1059. "funding": {
  1060. "url": "https://github.com/sponsors/antfu"
  1061. },
  1062. "peerDependencies": {
  1063. "@vue/composition-api": "^1.0.0-rc.1",
  1064. "vue": "^3.0.0-0 || ^2.6.0"
  1065. },
  1066. "peerDependenciesMeta": {
  1067. "@vue/composition-api": {
  1068. "optional": true
  1069. }
  1070. }
  1071. },
  1072. "node_modules/@vueuse/metadata": {
  1073. "version": "11.1.0",
  1074. "resolved": "https://r.cnpmjs.org/@vueuse/metadata/-/metadata-11.1.0.tgz",
  1075. "integrity": "sha512-l9Q502TBTaPYGanl1G+hPgd3QX5s4CGnpXriVBR5fEZ/goI6fvDaVmIl3Td8oKFurOxTmbXvBPSsgrd6eu6HYg==",
  1076. "license": "MIT",
  1077. "funding": {
  1078. "url": "https://github.com/sponsors/antfu"
  1079. }
  1080. },
  1081. "node_modules/@vueuse/shared": {
  1082. "version": "11.1.0",
  1083. "resolved": "https://r.cnpmjs.org/@vueuse/shared/-/shared-11.1.0.tgz",
  1084. "integrity": "sha512-YUtIpY122q7osj+zsNMFAfMTubGz0sn5QzE5gPzAIiCmtt2ha3uQUY1+JPyL4gRCTsLPX82Y9brNbo/aqlA91w==",
  1085. "license": "MIT",
  1086. "dependencies": {
  1087. "vue-demi": ">=0.14.10"
  1088. },
  1089. "funding": {
  1090. "url": "https://github.com/sponsors/antfu"
  1091. }
  1092. },
  1093. "node_modules/@vueuse/shared/node_modules/vue-demi": {
  1094. "version": "0.14.10",
  1095. "resolved": "https://r.cnpmjs.org/vue-demi/-/vue-demi-0.14.10.tgz",
  1096. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1097. "hasInstallScript": true,
  1098. "license": "MIT",
  1099. "bin": {
  1100. "vue-demi-fix": "bin/vue-demi-fix.js",
  1101. "vue-demi-switch": "bin/vue-demi-switch.js"
  1102. },
  1103. "engines": {
  1104. "node": ">=12"
  1105. },
  1106. "funding": {
  1107. "url": "https://github.com/sponsors/antfu"
  1108. },
  1109. "peerDependencies": {
  1110. "@vue/composition-api": "^1.0.0-rc.1",
  1111. "vue": "^3.0.0-0 || ^2.6.0"
  1112. },
  1113. "peerDependenciesMeta": {
  1114. "@vue/composition-api": {
  1115. "optional": true
  1116. }
  1117. }
  1118. },
  1119. "node_modules/acorn": {
  1120. "version": "8.14.0",
  1121. "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.14.0.tgz",
  1122. "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
  1123. "dev": true,
  1124. "license": "MIT",
  1125. "bin": {
  1126. "acorn": "bin/acorn"
  1127. },
  1128. "engines": {
  1129. "node": ">=0.4.0"
  1130. }
  1131. },
  1132. "node_modules/ansi-escapes": {
  1133. "version": "7.0.0",
  1134. "resolved": "https://mirrors.tencent.com/npm/ansi-escapes/-/ansi-escapes-7.0.0.tgz",
  1135. "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==",
  1136. "dev": true,
  1137. "dependencies": {
  1138. "environment": "^1.0.0"
  1139. },
  1140. "engines": {
  1141. "node": ">=18"
  1142. },
  1143. "funding": {
  1144. "url": "https://github.com/sponsors/sindresorhus"
  1145. }
  1146. },
  1147. "node_modules/ansi-regex": {
  1148. "version": "6.1.0",
  1149. "resolved": "https://mirrors.tencent.com/npm/ansi-regex/-/ansi-regex-6.1.0.tgz",
  1150. "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
  1151. "dev": true,
  1152. "engines": {
  1153. "node": ">=12"
  1154. },
  1155. "funding": {
  1156. "url": "https://github.com/chalk/ansi-regex?sponsor=1"
  1157. }
  1158. },
  1159. "node_modules/ansi-styles": {
  1160. "version": "6.2.1",
  1161. "resolved": "https://mirrors.tencent.com/npm/ansi-styles/-/ansi-styles-6.2.1.tgz",
  1162. "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
  1163. "dev": true,
  1164. "engines": {
  1165. "node": ">=12"
  1166. },
  1167. "funding": {
  1168. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  1169. }
  1170. },
  1171. "node_modules/any-promise": {
  1172. "version": "1.3.0",
  1173. "resolved": "https://mirrors.tencent.com/npm/any-promise/-/any-promise-1.3.0.tgz",
  1174. "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
  1175. "dev": true
  1176. },
  1177. "node_modules/anymatch": {
  1178. "version": "3.1.3",
  1179. "resolved": "https://mirrors.tencent.com/npm/anymatch/-/anymatch-3.1.3.tgz",
  1180. "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
  1181. "dev": true,
  1182. "dependencies": {
  1183. "normalize-path": "^3.0.0",
  1184. "picomatch": "^2.0.4"
  1185. },
  1186. "engines": {
  1187. "node": ">= 8"
  1188. }
  1189. },
  1190. "node_modules/arg": {
  1191. "version": "5.0.2",
  1192. "resolved": "https://mirrors.tencent.com/npm/arg/-/arg-5.0.2.tgz",
  1193. "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
  1194. "dev": true
  1195. },
  1196. "node_modules/async-validator": {
  1197. "version": "4.2.5",
  1198. "resolved": "https://r.cnpmjs.org/async-validator/-/async-validator-4.2.5.tgz",
  1199. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  1200. "license": "MIT"
  1201. },
  1202. "node_modules/asynckit": {
  1203. "version": "0.4.0",
  1204. "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz",
  1205. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  1206. "license": "MIT"
  1207. },
  1208. "node_modules/autoprefixer": {
  1209. "version": "10.4.20",
  1210. "resolved": "https://mirrors.tencent.com/npm/autoprefixer/-/autoprefixer-10.4.20.tgz",
  1211. "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==",
  1212. "dev": true,
  1213. "funding": [
  1214. {
  1215. "type": "opencollective",
  1216. "url": "https://opencollective.com/postcss/"
  1217. },
  1218. {
  1219. "type": "tidelift",
  1220. "url": "https://tidelift.com/funding/github/npm/autoprefixer"
  1221. },
  1222. {
  1223. "type": "github",
  1224. "url": "https://github.com/sponsors/ai"
  1225. }
  1226. ],
  1227. "dependencies": {
  1228. "browserslist": "^4.23.3",
  1229. "caniuse-lite": "^1.0.30001646",
  1230. "fraction.js": "^4.3.7",
  1231. "normalize-range": "^0.1.2",
  1232. "picocolors": "^1.0.1",
  1233. "postcss-value-parser": "^4.2.0"
  1234. },
  1235. "bin": {
  1236. "autoprefixer": "bin/autoprefixer"
  1237. },
  1238. "engines": {
  1239. "node": "^10 || ^12 || >=14"
  1240. },
  1241. "peerDependencies": {
  1242. "postcss": "^8.1.0"
  1243. }
  1244. },
  1245. "node_modules/axios": {
  1246. "version": "1.7.7",
  1247. "resolved": "https://registry.npmmirror.com/axios/-/axios-1.7.7.tgz",
  1248. "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==",
  1249. "license": "MIT",
  1250. "dependencies": {
  1251. "follow-redirects": "^1.15.6",
  1252. "form-data": "^4.0.0",
  1253. "proxy-from-env": "^1.1.0"
  1254. }
  1255. },
  1256. "node_modules/balanced-match": {
  1257. "version": "1.0.2",
  1258. "resolved": "https://mirrors.tencent.com/npm/balanced-match/-/balanced-match-1.0.2.tgz",
  1259. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  1260. "dev": true
  1261. },
  1262. "node_modules/binary-extensions": {
  1263. "version": "2.3.0",
  1264. "resolved": "https://mirrors.tencent.com/npm/binary-extensions/-/binary-extensions-2.3.0.tgz",
  1265. "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
  1266. "dev": true,
  1267. "engines": {
  1268. "node": ">=8"
  1269. },
  1270. "funding": {
  1271. "url": "https://github.com/sponsors/sindresorhus"
  1272. }
  1273. },
  1274. "node_modules/birpc": {
  1275. "version": "0.2.19",
  1276. "resolved": "https://mirrors.tencent.com/npm/birpc/-/birpc-0.2.19.tgz",
  1277. "integrity": "sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==",
  1278. "funding": {
  1279. "url": "https://github.com/sponsors/antfu"
  1280. }
  1281. },
  1282. "node_modules/brace-expansion": {
  1283. "version": "2.0.1",
  1284. "resolved": "https://mirrors.tencent.com/npm/brace-expansion/-/brace-expansion-2.0.1.tgz",
  1285. "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
  1286. "dev": true,
  1287. "dependencies": {
  1288. "balanced-match": "^1.0.0"
  1289. }
  1290. },
  1291. "node_modules/braces": {
  1292. "version": "3.0.3",
  1293. "resolved": "https://mirrors.tencent.com/npm/braces/-/braces-3.0.3.tgz",
  1294. "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
  1295. "dev": true,
  1296. "dependencies": {
  1297. "fill-range": "^7.1.1"
  1298. },
  1299. "engines": {
  1300. "node": ">=8"
  1301. }
  1302. },
  1303. "node_modules/browserslist": {
  1304. "version": "4.24.4",
  1305. "resolved": "https://mirrors.tencent.com/npm/browserslist/-/browserslist-4.24.4.tgz",
  1306. "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==",
  1307. "dev": true,
  1308. "funding": [
  1309. {
  1310. "type": "opencollective",
  1311. "url": "https://opencollective.com/browserslist"
  1312. },
  1313. {
  1314. "type": "tidelift",
  1315. "url": "https://tidelift.com/funding/github/npm/browserslist"
  1316. },
  1317. {
  1318. "type": "github",
  1319. "url": "https://github.com/sponsors/ai"
  1320. }
  1321. ],
  1322. "dependencies": {
  1323. "caniuse-lite": "^1.0.30001688",
  1324. "electron-to-chromium": "^1.5.73",
  1325. "node-releases": "^2.0.19",
  1326. "update-browserslist-db": "^1.1.1"
  1327. },
  1328. "bin": {
  1329. "browserslist": "cli.js"
  1330. },
  1331. "engines": {
  1332. "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
  1333. }
  1334. },
  1335. "node_modules/camelcase-css": {
  1336. "version": "2.0.1",
  1337. "resolved": "https://mirrors.tencent.com/npm/camelcase-css/-/camelcase-css-2.0.1.tgz",
  1338. "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
  1339. "dev": true,
  1340. "engines": {
  1341. "node": ">= 6"
  1342. }
  1343. },
  1344. "node_modules/caniuse-lite": {
  1345. "version": "1.0.30001700",
  1346. "resolved": "https://mirrors.tencent.com/npm/caniuse-lite/-/caniuse-lite-1.0.30001700.tgz",
  1347. "integrity": "sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==",
  1348. "dev": true,
  1349. "funding": [
  1350. {
  1351. "type": "opencollective",
  1352. "url": "https://opencollective.com/browserslist"
  1353. },
  1354. {
  1355. "type": "tidelift",
  1356. "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
  1357. },
  1358. {
  1359. "type": "github",
  1360. "url": "https://github.com/sponsors/ai"
  1361. }
  1362. ]
  1363. },
  1364. "node_modules/chalk": {
  1365. "version": "5.4.1",
  1366. "resolved": "https://mirrors.tencent.com/npm/chalk/-/chalk-5.4.1.tgz",
  1367. "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
  1368. "dev": true,
  1369. "engines": {
  1370. "node": "^12.17.0 || ^14.13 || >=16.0.0"
  1371. },
  1372. "funding": {
  1373. "url": "https://github.com/chalk/chalk?sponsor=1"
  1374. }
  1375. },
  1376. "node_modules/chokidar": {
  1377. "version": "4.0.1",
  1378. "resolved": "https://r.cnpmjs.org/chokidar/-/chokidar-4.0.1.tgz",
  1379. "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==",
  1380. "dev": true,
  1381. "license": "MIT",
  1382. "dependencies": {
  1383. "readdirp": "^4.0.1"
  1384. },
  1385. "engines": {
  1386. "node": ">= 14.16.0"
  1387. },
  1388. "funding": {
  1389. "url": "https://paulmillr.com/funding/"
  1390. }
  1391. },
  1392. "node_modules/cli-cursor": {
  1393. "version": "5.0.0",
  1394. "resolved": "https://mirrors.tencent.com/npm/cli-cursor/-/cli-cursor-5.0.0.tgz",
  1395. "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
  1396. "dev": true,
  1397. "dependencies": {
  1398. "restore-cursor": "^5.0.0"
  1399. },
  1400. "engines": {
  1401. "node": ">=18"
  1402. },
  1403. "funding": {
  1404. "url": "https://github.com/sponsors/sindresorhus"
  1405. }
  1406. },
  1407. "node_modules/cli-truncate": {
  1408. "version": "4.0.0",
  1409. "resolved": "https://mirrors.tencent.com/npm/cli-truncate/-/cli-truncate-4.0.0.tgz",
  1410. "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==",
  1411. "dev": true,
  1412. "dependencies": {
  1413. "slice-ansi": "^5.0.0",
  1414. "string-width": "^7.0.0"
  1415. },
  1416. "engines": {
  1417. "node": ">=18"
  1418. },
  1419. "funding": {
  1420. "url": "https://github.com/sponsors/sindresorhus"
  1421. }
  1422. },
  1423. "node_modules/cli-truncate/node_modules/emoji-regex": {
  1424. "version": "10.4.0",
  1425. "resolved": "https://mirrors.tencent.com/npm/emoji-regex/-/emoji-regex-10.4.0.tgz",
  1426. "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
  1427. "dev": true
  1428. },
  1429. "node_modules/cli-truncate/node_modules/string-width": {
  1430. "version": "7.2.0",
  1431. "resolved": "https://mirrors.tencent.com/npm/string-width/-/string-width-7.2.0.tgz",
  1432. "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
  1433. "dev": true,
  1434. "dependencies": {
  1435. "emoji-regex": "^10.3.0",
  1436. "get-east-asian-width": "^1.0.0",
  1437. "strip-ansi": "^7.1.0"
  1438. },
  1439. "engines": {
  1440. "node": ">=18"
  1441. },
  1442. "funding": {
  1443. "url": "https://github.com/sponsors/sindresorhus"
  1444. }
  1445. },
  1446. "node_modules/color-convert": {
  1447. "version": "2.0.1",
  1448. "resolved": "https://mirrors.tencent.com/npm/color-convert/-/color-convert-2.0.1.tgz",
  1449. "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
  1450. "dev": true,
  1451. "dependencies": {
  1452. "color-name": "~1.1.4"
  1453. },
  1454. "engines": {
  1455. "node": ">=7.0.0"
  1456. }
  1457. },
  1458. "node_modules/color-name": {
  1459. "version": "1.1.4",
  1460. "resolved": "https://mirrors.tencent.com/npm/color-name/-/color-name-1.1.4.tgz",
  1461. "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
  1462. "dev": true
  1463. },
  1464. "node_modules/colorette": {
  1465. "version": "2.0.20",
  1466. "resolved": "https://mirrors.tencent.com/npm/colorette/-/colorette-2.0.20.tgz",
  1467. "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
  1468. "dev": true
  1469. },
  1470. "node_modules/combined-stream": {
  1471. "version": "1.0.8",
  1472. "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz",
  1473. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  1474. "license": "MIT",
  1475. "dependencies": {
  1476. "delayed-stream": "~1.0.0"
  1477. },
  1478. "engines": {
  1479. "node": ">= 0.8"
  1480. }
  1481. },
  1482. "node_modules/commander": {
  1483. "version": "4.1.1",
  1484. "resolved": "https://mirrors.tencent.com/npm/commander/-/commander-4.1.1.tgz",
  1485. "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
  1486. "dev": true,
  1487. "engines": {
  1488. "node": ">= 6"
  1489. }
  1490. },
  1491. "node_modules/confbox": {
  1492. "version": "0.1.8",
  1493. "resolved": "https://registry.npmmirror.com/confbox/-/confbox-0.1.8.tgz",
  1494. "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==",
  1495. "dev": true,
  1496. "license": "MIT"
  1497. },
  1498. "node_modules/copy-anything": {
  1499. "version": "3.0.5",
  1500. "resolved": "https://mirrors.tencent.com/npm/copy-anything/-/copy-anything-3.0.5.tgz",
  1501. "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==",
  1502. "dependencies": {
  1503. "is-what": "^4.1.8"
  1504. },
  1505. "engines": {
  1506. "node": ">=12.13"
  1507. },
  1508. "funding": {
  1509. "url": "https://github.com/sponsors/mesqueeb"
  1510. }
  1511. },
  1512. "node_modules/core-js": {
  1513. "version": "3.41.0",
  1514. "resolved": "https://mirrors.tencent.com/npm/core-js/-/core-js-3.41.0.tgz",
  1515. "integrity": "sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==",
  1516. "hasInstallScript": true,
  1517. "funding": {
  1518. "type": "opencollective",
  1519. "url": "https://opencollective.com/core-js"
  1520. }
  1521. },
  1522. "node_modules/cross-spawn": {
  1523. "version": "7.0.6",
  1524. "resolved": "https://mirrors.tencent.com/npm/cross-spawn/-/cross-spawn-7.0.6.tgz",
  1525. "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
  1526. "dev": true,
  1527. "dependencies": {
  1528. "path-key": "^3.1.0",
  1529. "shebang-command": "^2.0.0",
  1530. "which": "^2.0.1"
  1531. },
  1532. "engines": {
  1533. "node": ">= 8"
  1534. }
  1535. },
  1536. "node_modules/cssesc": {
  1537. "version": "3.0.0",
  1538. "resolved": "https://mirrors.tencent.com/npm/cssesc/-/cssesc-3.0.0.tgz",
  1539. "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
  1540. "dev": true,
  1541. "bin": {
  1542. "cssesc": "bin/cssesc"
  1543. },
  1544. "engines": {
  1545. "node": ">=4"
  1546. }
  1547. },
  1548. "node_modules/csstype": {
  1549. "version": "3.1.3",
  1550. "resolved": "https://mirrors.tencent.com/npm/csstype/-/csstype-3.1.3.tgz",
  1551. "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
  1552. },
  1553. "node_modules/dayjs": {
  1554. "version": "1.11.13",
  1555. "resolved": "https://r.cnpmjs.org/dayjs/-/dayjs-1.11.13.tgz",
  1556. "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==",
  1557. "license": "MIT"
  1558. },
  1559. "node_modules/debug": {
  1560. "version": "4.4.0",
  1561. "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.0.tgz",
  1562. "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
  1563. "dev": true,
  1564. "license": "MIT",
  1565. "dependencies": {
  1566. "ms": "^2.1.3"
  1567. },
  1568. "engines": {
  1569. "node": ">=6.0"
  1570. },
  1571. "peerDependenciesMeta": {
  1572. "supports-color": {
  1573. "optional": true
  1574. }
  1575. }
  1576. },
  1577. "node_modules/delayed-stream": {
  1578. "version": "1.0.0",
  1579. "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz",
  1580. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  1581. "license": "MIT",
  1582. "engines": {
  1583. "node": ">=0.4.0"
  1584. }
  1585. },
  1586. "node_modules/didyoumean": {
  1587. "version": "1.2.2",
  1588. "resolved": "https://mirrors.tencent.com/npm/didyoumean/-/didyoumean-1.2.2.tgz",
  1589. "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
  1590. "dev": true
  1591. },
  1592. "node_modules/dlv": {
  1593. "version": "1.1.3",
  1594. "resolved": "https://mirrors.tencent.com/npm/dlv/-/dlv-1.1.3.tgz",
  1595. "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
  1596. "dev": true
  1597. },
  1598. "node_modules/eastasianwidth": {
  1599. "version": "0.2.0",
  1600. "resolved": "https://mirrors.tencent.com/npm/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
  1601. "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
  1602. "dev": true
  1603. },
  1604. "node_modules/echarts": {
  1605. "version": "5.5.1",
  1606. "resolved": "https://r.cnpmjs.org/echarts/-/echarts-5.5.1.tgz",
  1607. "integrity": "sha512-Fce8upazaAXUVUVsjgV6mBnGuqgO+JNDlcgF79Dksy4+wgGpQB2lmYoO4TSweFg/mZITdpGHomw/cNBJZj1icA==",
  1608. "license": "Apache-2.0",
  1609. "dependencies": {
  1610. "tslib": "2.3.0",
  1611. "zrender": "5.6.0"
  1612. }
  1613. },
  1614. "node_modules/electron-to-chromium": {
  1615. "version": "1.5.102",
  1616. "resolved": "https://mirrors.tencent.com/npm/electron-to-chromium/-/electron-to-chromium-1.5.102.tgz",
  1617. "integrity": "sha512-eHhqaja8tE/FNpIiBrvBjFV/SSKpyWHLvxuR9dPTdo+3V9ppdLmFB7ZZQ98qNovcngPLYIz0oOBF9P0FfZef5Q==",
  1618. "dev": true
  1619. },
  1620. "node_modules/element-plus": {
  1621. "version": "2.8.3",
  1622. "resolved": "https://r.cnpmjs.org/element-plus/-/element-plus-2.8.3.tgz",
  1623. "integrity": "sha512-BXQOyDf0s7JHyNEV8iaO+iaOzTZPsBXVKMzMI967vLCodUBDLrtiY5vglAn1YEebQcUOEUMhGcttTpIvEkcBjQ==",
  1624. "license": "MIT",
  1625. "dependencies": {
  1626. "@ctrl/tinycolor": "^3.4.1",
  1627. "@element-plus/icons-vue": "^2.3.1",
  1628. "@floating-ui/dom": "^1.0.1",
  1629. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
  1630. "@types/lodash": "^4.14.182",
  1631. "@types/lodash-es": "^4.17.6",
  1632. "@vueuse/core": "^9.1.0",
  1633. "async-validator": "^4.2.5",
  1634. "dayjs": "^1.11.3",
  1635. "escape-html": "^1.0.3",
  1636. "lodash": "^4.17.21",
  1637. "lodash-es": "^4.17.21",
  1638. "lodash-unified": "^1.0.2",
  1639. "memoize-one": "^6.0.0",
  1640. "normalize-wheel-es": "^1.2.0"
  1641. },
  1642. "peerDependencies": {
  1643. "vue": "^3.2.0"
  1644. }
  1645. },
  1646. "node_modules/element-plus/node_modules/@types/web-bluetooth": {
  1647. "version": "0.0.16",
  1648. "resolved": "https://r.cnpmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz",
  1649. "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==",
  1650. "license": "MIT"
  1651. },
  1652. "node_modules/element-plus/node_modules/@vueuse/core": {
  1653. "version": "9.13.0",
  1654. "resolved": "https://r.cnpmjs.org/@vueuse/core/-/core-9.13.0.tgz",
  1655. "integrity": "sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==",
  1656. "license": "MIT",
  1657. "dependencies": {
  1658. "@types/web-bluetooth": "^0.0.16",
  1659. "@vueuse/metadata": "9.13.0",
  1660. "@vueuse/shared": "9.13.0",
  1661. "vue-demi": "*"
  1662. },
  1663. "funding": {
  1664. "url": "https://github.com/sponsors/antfu"
  1665. }
  1666. },
  1667. "node_modules/element-plus/node_modules/@vueuse/core/node_modules/vue-demi": {
  1668. "version": "0.14.10",
  1669. "resolved": "https://r.cnpmjs.org/vue-demi/-/vue-demi-0.14.10.tgz",
  1670. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1671. "hasInstallScript": true,
  1672. "license": "MIT",
  1673. "bin": {
  1674. "vue-demi-fix": "bin/vue-demi-fix.js",
  1675. "vue-demi-switch": "bin/vue-demi-switch.js"
  1676. },
  1677. "engines": {
  1678. "node": ">=12"
  1679. },
  1680. "funding": {
  1681. "url": "https://github.com/sponsors/antfu"
  1682. },
  1683. "peerDependencies": {
  1684. "@vue/composition-api": "^1.0.0-rc.1",
  1685. "vue": "^3.0.0-0 || ^2.6.0"
  1686. },
  1687. "peerDependenciesMeta": {
  1688. "@vue/composition-api": {
  1689. "optional": true
  1690. }
  1691. }
  1692. },
  1693. "node_modules/element-plus/node_modules/@vueuse/metadata": {
  1694. "version": "9.13.0",
  1695. "resolved": "https://r.cnpmjs.org/@vueuse/metadata/-/metadata-9.13.0.tgz",
  1696. "integrity": "sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==",
  1697. "license": "MIT",
  1698. "funding": {
  1699. "url": "https://github.com/sponsors/antfu"
  1700. }
  1701. },
  1702. "node_modules/element-plus/node_modules/@vueuse/shared": {
  1703. "version": "9.13.0",
  1704. "resolved": "https://r.cnpmjs.org/@vueuse/shared/-/shared-9.13.0.tgz",
  1705. "integrity": "sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==",
  1706. "license": "MIT",
  1707. "dependencies": {
  1708. "vue-demi": "*"
  1709. },
  1710. "funding": {
  1711. "url": "https://github.com/sponsors/antfu"
  1712. }
  1713. },
  1714. "node_modules/element-plus/node_modules/@vueuse/shared/node_modules/vue-demi": {
  1715. "version": "0.14.10",
  1716. "resolved": "https://r.cnpmjs.org/vue-demi/-/vue-demi-0.14.10.tgz",
  1717. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1718. "hasInstallScript": true,
  1719. "license": "MIT",
  1720. "bin": {
  1721. "vue-demi-fix": "bin/vue-demi-fix.js",
  1722. "vue-demi-switch": "bin/vue-demi-switch.js"
  1723. },
  1724. "engines": {
  1725. "node": ">=12"
  1726. },
  1727. "funding": {
  1728. "url": "https://github.com/sponsors/antfu"
  1729. },
  1730. "peerDependencies": {
  1731. "@vue/composition-api": "^1.0.0-rc.1",
  1732. "vue": "^3.0.0-0 || ^2.6.0"
  1733. },
  1734. "peerDependenciesMeta": {
  1735. "@vue/composition-api": {
  1736. "optional": true
  1737. }
  1738. }
  1739. },
  1740. "node_modules/emoji-regex": {
  1741. "version": "9.2.2",
  1742. "resolved": "https://mirrors.tencent.com/npm/emoji-regex/-/emoji-regex-9.2.2.tgz",
  1743. "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
  1744. "dev": true
  1745. },
  1746. "node_modules/entities": {
  1747. "version": "4.5.0",
  1748. "resolved": "https://mirrors.tencent.com/npm/entities/-/entities-4.5.0.tgz",
  1749. "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
  1750. "engines": {
  1751. "node": ">=0.12"
  1752. },
  1753. "funding": {
  1754. "url": "https://github.com/fb55/entities?sponsor=1"
  1755. }
  1756. },
  1757. "node_modules/environment": {
  1758. "version": "1.1.0",
  1759. "resolved": "https://mirrors.tencent.com/npm/environment/-/environment-1.1.0.tgz",
  1760. "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==",
  1761. "dev": true,
  1762. "engines": {
  1763. "node": ">=18"
  1764. },
  1765. "funding": {
  1766. "url": "https://github.com/sponsors/sindresorhus"
  1767. }
  1768. },
  1769. "node_modules/esbuild": {
  1770. "version": "0.21.5",
  1771. "resolved": "https://r.cnpmjs.org/esbuild/-/esbuild-0.21.5.tgz",
  1772. "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
  1773. "dev": true,
  1774. "hasInstallScript": true,
  1775. "license": "MIT",
  1776. "bin": {
  1777. "esbuild": "bin/esbuild"
  1778. },
  1779. "engines": {
  1780. "node": ">=12"
  1781. },
  1782. "optionalDependencies": {
  1783. "@esbuild/aix-ppc64": "0.21.5",
  1784. "@esbuild/android-arm": "0.21.5",
  1785. "@esbuild/android-arm64": "0.21.5",
  1786. "@esbuild/android-x64": "0.21.5",
  1787. "@esbuild/darwin-arm64": "0.21.5",
  1788. "@esbuild/darwin-x64": "0.21.5",
  1789. "@esbuild/freebsd-arm64": "0.21.5",
  1790. "@esbuild/freebsd-x64": "0.21.5",
  1791. "@esbuild/linux-arm": "0.21.5",
  1792. "@esbuild/linux-arm64": "0.21.5",
  1793. "@esbuild/linux-ia32": "0.21.5",
  1794. "@esbuild/linux-loong64": "0.21.5",
  1795. "@esbuild/linux-mips64el": "0.21.5",
  1796. "@esbuild/linux-ppc64": "0.21.5",
  1797. "@esbuild/linux-riscv64": "0.21.5",
  1798. "@esbuild/linux-s390x": "0.21.5",
  1799. "@esbuild/linux-x64": "0.21.5",
  1800. "@esbuild/netbsd-x64": "0.21.5",
  1801. "@esbuild/openbsd-x64": "0.21.5",
  1802. "@esbuild/sunos-x64": "0.21.5",
  1803. "@esbuild/win32-arm64": "0.21.5",
  1804. "@esbuild/win32-ia32": "0.21.5",
  1805. "@esbuild/win32-x64": "0.21.5"
  1806. }
  1807. },
  1808. "node_modules/escalade": {
  1809. "version": "3.2.0",
  1810. "resolved": "https://mirrors.tencent.com/npm/escalade/-/escalade-3.2.0.tgz",
  1811. "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
  1812. "dev": true,
  1813. "engines": {
  1814. "node": ">=6"
  1815. }
  1816. },
  1817. "node_modules/escape-html": {
  1818. "version": "1.0.3",
  1819. "resolved": "https://r2.cnpmjs.org/escape-html/-/escape-html-1.0.3.tgz",
  1820. "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
  1821. "license": "MIT"
  1822. },
  1823. "node_modules/escape-string-regexp": {
  1824. "version": "5.0.0",
  1825. "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
  1826. "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
  1827. "dev": true,
  1828. "license": "MIT",
  1829. "engines": {
  1830. "node": ">=12"
  1831. },
  1832. "funding": {
  1833. "url": "https://github.com/sponsors/sindresorhus"
  1834. }
  1835. },
  1836. "node_modules/estree-walker": {
  1837. "version": "2.0.2",
  1838. "resolved": "https://mirrors.tencent.com/npm/estree-walker/-/estree-walker-2.0.2.tgz",
  1839. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="
  1840. },
  1841. "node_modules/eventemitter3": {
  1842. "version": "5.0.1",
  1843. "resolved": "https://mirrors.tencent.com/npm/eventemitter3/-/eventemitter3-5.0.1.tgz",
  1844. "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==",
  1845. "dev": true
  1846. },
  1847. "node_modules/execa": {
  1848. "version": "8.0.1",
  1849. "resolved": "https://mirrors.tencent.com/npm/execa/-/execa-8.0.1.tgz",
  1850. "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==",
  1851. "dev": true,
  1852. "dependencies": {
  1853. "cross-spawn": "^7.0.3",
  1854. "get-stream": "^8.0.1",
  1855. "human-signals": "^5.0.0",
  1856. "is-stream": "^3.0.0",
  1857. "merge-stream": "^2.0.0",
  1858. "npm-run-path": "^5.1.0",
  1859. "onetime": "^6.0.0",
  1860. "signal-exit": "^4.1.0",
  1861. "strip-final-newline": "^3.0.0"
  1862. },
  1863. "engines": {
  1864. "node": ">=16.17"
  1865. },
  1866. "funding": {
  1867. "url": "https://github.com/sindresorhus/execa?sponsor=1"
  1868. }
  1869. },
  1870. "node_modules/fast-glob": {
  1871. "version": "3.3.3",
  1872. "resolved": "https://mirrors.tencent.com/npm/fast-glob/-/fast-glob-3.3.3.tgz",
  1873. "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
  1874. "dev": true,
  1875. "dependencies": {
  1876. "@nodelib/fs.stat": "^2.0.2",
  1877. "@nodelib/fs.walk": "^1.2.3",
  1878. "glob-parent": "^5.1.2",
  1879. "merge2": "^1.3.0",
  1880. "micromatch": "^4.0.8"
  1881. },
  1882. "engines": {
  1883. "node": ">=8.6.0"
  1884. }
  1885. },
  1886. "node_modules/fast-glob/node_modules/glob-parent": {
  1887. "version": "5.1.2",
  1888. "resolved": "https://mirrors.tencent.com/npm/glob-parent/-/glob-parent-5.1.2.tgz",
  1889. "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
  1890. "dev": true,
  1891. "dependencies": {
  1892. "is-glob": "^4.0.1"
  1893. },
  1894. "engines": {
  1895. "node": ">= 6"
  1896. }
  1897. },
  1898. "node_modules/fastq": {
  1899. "version": "1.19.0",
  1900. "resolved": "https://mirrors.tencent.com/npm/fastq/-/fastq-1.19.0.tgz",
  1901. "integrity": "sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==",
  1902. "dev": true,
  1903. "dependencies": {
  1904. "reusify": "^1.0.4"
  1905. }
  1906. },
  1907. "node_modules/fill-range": {
  1908. "version": "7.1.1",
  1909. "resolved": "https://mirrors.tencent.com/npm/fill-range/-/fill-range-7.1.1.tgz",
  1910. "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
  1911. "dev": true,
  1912. "dependencies": {
  1913. "to-regex-range": "^5.0.1"
  1914. },
  1915. "engines": {
  1916. "node": ">=8"
  1917. }
  1918. },
  1919. "node_modules/follow-redirects": {
  1920. "version": "1.15.9",
  1921. "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.9.tgz",
  1922. "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==",
  1923. "funding": [
  1924. {
  1925. "type": "individual",
  1926. "url": "https://github.com/sponsors/RubenVerborgh"
  1927. }
  1928. ],
  1929. "license": "MIT",
  1930. "engines": {
  1931. "node": ">=4.0"
  1932. },
  1933. "peerDependenciesMeta": {
  1934. "debug": {
  1935. "optional": true
  1936. }
  1937. }
  1938. },
  1939. "node_modules/foreground-child": {
  1940. "version": "3.3.0",
  1941. "resolved": "https://mirrors.tencent.com/npm/foreground-child/-/foreground-child-3.3.0.tgz",
  1942. "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
  1943. "dev": true,
  1944. "dependencies": {
  1945. "cross-spawn": "^7.0.0",
  1946. "signal-exit": "^4.0.1"
  1947. },
  1948. "engines": {
  1949. "node": ">=14"
  1950. },
  1951. "funding": {
  1952. "url": "https://github.com/sponsors/isaacs"
  1953. }
  1954. },
  1955. "node_modules/form-data": {
  1956. "version": "4.0.1",
  1957. "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.1.tgz",
  1958. "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==",
  1959. "license": "MIT",
  1960. "dependencies": {
  1961. "asynckit": "^0.4.0",
  1962. "combined-stream": "^1.0.8",
  1963. "mime-types": "^2.1.12"
  1964. },
  1965. "engines": {
  1966. "node": ">= 6"
  1967. }
  1968. },
  1969. "node_modules/fraction.js": {
  1970. "version": "4.3.7",
  1971. "resolved": "https://mirrors.tencent.com/npm/fraction.js/-/fraction.js-4.3.7.tgz",
  1972. "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
  1973. "dev": true,
  1974. "engines": {
  1975. "node": "*"
  1976. },
  1977. "funding": {
  1978. "type": "patreon",
  1979. "url": "https://github.com/sponsors/rawify"
  1980. }
  1981. },
  1982. "node_modules/fsevents": {
  1983. "version": "2.3.3",
  1984. "resolved": "https://r.cnpmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  1985. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1986. "dev": true,
  1987. "hasInstallScript": true,
  1988. "license": "MIT",
  1989. "optional": true,
  1990. "os": [
  1991. "darwin"
  1992. ],
  1993. "engines": {
  1994. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1995. }
  1996. },
  1997. "node_modules/function-bind": {
  1998. "version": "1.1.2",
  1999. "resolved": "https://mirrors.tencent.com/npm/function-bind/-/function-bind-1.1.2.tgz",
  2000. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  2001. "dev": true,
  2002. "funding": {
  2003. "url": "https://github.com/sponsors/ljharb"
  2004. }
  2005. },
  2006. "node_modules/get-east-asian-width": {
  2007. "version": "1.3.0",
  2008. "resolved": "https://mirrors.tencent.com/npm/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz",
  2009. "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==",
  2010. "dev": true,
  2011. "engines": {
  2012. "node": ">=18"
  2013. },
  2014. "funding": {
  2015. "url": "https://github.com/sponsors/sindresorhus"
  2016. }
  2017. },
  2018. "node_modules/get-stream": {
  2019. "version": "8.0.1",
  2020. "resolved": "https://mirrors.tencent.com/npm/get-stream/-/get-stream-8.0.1.tgz",
  2021. "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==",
  2022. "dev": true,
  2023. "engines": {
  2024. "node": ">=16"
  2025. },
  2026. "funding": {
  2027. "url": "https://github.com/sponsors/sindresorhus"
  2028. }
  2029. },
  2030. "node_modules/glob": {
  2031. "version": "10.4.5",
  2032. "resolved": "https://mirrors.tencent.com/npm/glob/-/glob-10.4.5.tgz",
  2033. "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
  2034. "dev": true,
  2035. "dependencies": {
  2036. "foreground-child": "^3.1.0",
  2037. "jackspeak": "^3.1.2",
  2038. "minimatch": "^9.0.4",
  2039. "minipass": "^7.1.2",
  2040. "package-json-from-dist": "^1.0.0",
  2041. "path-scurry": "^1.11.1"
  2042. },
  2043. "bin": {
  2044. "glob": "dist/esm/bin.mjs"
  2045. },
  2046. "funding": {
  2047. "url": "https://github.com/sponsors/isaacs"
  2048. }
  2049. },
  2050. "node_modules/glob-parent": {
  2051. "version": "6.0.2",
  2052. "resolved": "https://mirrors.tencent.com/npm/glob-parent/-/glob-parent-6.0.2.tgz",
  2053. "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
  2054. "dev": true,
  2055. "dependencies": {
  2056. "is-glob": "^4.0.3"
  2057. },
  2058. "engines": {
  2059. "node": ">=10.13.0"
  2060. }
  2061. },
  2062. "node_modules/hasown": {
  2063. "version": "2.0.2",
  2064. "resolved": "https://mirrors.tencent.com/npm/hasown/-/hasown-2.0.2.tgz",
  2065. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  2066. "dev": true,
  2067. "dependencies": {
  2068. "function-bind": "^1.1.2"
  2069. },
  2070. "engines": {
  2071. "node": ">= 0.4"
  2072. }
  2073. },
  2074. "node_modules/hookable": {
  2075. "version": "5.5.3",
  2076. "resolved": "https://mirrors.tencent.com/npm/hookable/-/hookable-5.5.3.tgz",
  2077. "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ=="
  2078. },
  2079. "node_modules/human-signals": {
  2080. "version": "5.0.0",
  2081. "resolved": "https://mirrors.tencent.com/npm/human-signals/-/human-signals-5.0.0.tgz",
  2082. "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==",
  2083. "dev": true,
  2084. "engines": {
  2085. "node": ">=16.17.0"
  2086. }
  2087. },
  2088. "node_modules/husky": {
  2089. "version": "9.1.7",
  2090. "resolved": "https://mirrors.tencent.com/npm/husky/-/husky-9.1.7.tgz",
  2091. "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==",
  2092. "dev": true,
  2093. "bin": {
  2094. "husky": "bin.js"
  2095. },
  2096. "engines": {
  2097. "node": ">=18"
  2098. },
  2099. "funding": {
  2100. "url": "https://github.com/sponsors/typicode"
  2101. }
  2102. },
  2103. "node_modules/immutable": {
  2104. "version": "4.3.7",
  2105. "resolved": "https://r.cnpmjs.org/immutable/-/immutable-4.3.7.tgz",
  2106. "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==",
  2107. "dev": true,
  2108. "license": "MIT"
  2109. },
  2110. "node_modules/is-binary-path": {
  2111. "version": "2.1.0",
  2112. "resolved": "https://mirrors.tencent.com/npm/is-binary-path/-/is-binary-path-2.1.0.tgz",
  2113. "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
  2114. "dev": true,
  2115. "dependencies": {
  2116. "binary-extensions": "^2.0.0"
  2117. },
  2118. "engines": {
  2119. "node": ">=8"
  2120. }
  2121. },
  2122. "node_modules/is-core-module": {
  2123. "version": "2.16.1",
  2124. "resolved": "https://mirrors.tencent.com/npm/is-core-module/-/is-core-module-2.16.1.tgz",
  2125. "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
  2126. "dev": true,
  2127. "dependencies": {
  2128. "hasown": "^2.0.2"
  2129. },
  2130. "engines": {
  2131. "node": ">= 0.4"
  2132. },
  2133. "funding": {
  2134. "url": "https://github.com/sponsors/ljharb"
  2135. }
  2136. },
  2137. "node_modules/is-extglob": {
  2138. "version": "2.1.1",
  2139. "resolved": "https://mirrors.tencent.com/npm/is-extglob/-/is-extglob-2.1.1.tgz",
  2140. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  2141. "dev": true,
  2142. "engines": {
  2143. "node": ">=0.10.0"
  2144. }
  2145. },
  2146. "node_modules/is-fullwidth-code-point": {
  2147. "version": "3.0.0",
  2148. "resolved": "https://mirrors.tencent.com/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
  2149. "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
  2150. "dev": true,
  2151. "engines": {
  2152. "node": ">=8"
  2153. }
  2154. },
  2155. "node_modules/is-glob": {
  2156. "version": "4.0.3",
  2157. "resolved": "https://mirrors.tencent.com/npm/is-glob/-/is-glob-4.0.3.tgz",
  2158. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  2159. "dev": true,
  2160. "dependencies": {
  2161. "is-extglob": "^2.1.1"
  2162. },
  2163. "engines": {
  2164. "node": ">=0.10.0"
  2165. }
  2166. },
  2167. "node_modules/is-number": {
  2168. "version": "7.0.0",
  2169. "resolved": "https://mirrors.tencent.com/npm/is-number/-/is-number-7.0.0.tgz",
  2170. "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
  2171. "dev": true,
  2172. "engines": {
  2173. "node": ">=0.12.0"
  2174. }
  2175. },
  2176. "node_modules/is-stream": {
  2177. "version": "3.0.0",
  2178. "resolved": "https://mirrors.tencent.com/npm/is-stream/-/is-stream-3.0.0.tgz",
  2179. "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
  2180. "dev": true,
  2181. "engines": {
  2182. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  2183. },
  2184. "funding": {
  2185. "url": "https://github.com/sponsors/sindresorhus"
  2186. }
  2187. },
  2188. "node_modules/is-what": {
  2189. "version": "4.1.16",
  2190. "resolved": "https://mirrors.tencent.com/npm/is-what/-/is-what-4.1.16.tgz",
  2191. "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==",
  2192. "engines": {
  2193. "node": ">=12.13"
  2194. },
  2195. "funding": {
  2196. "url": "https://github.com/sponsors/mesqueeb"
  2197. }
  2198. },
  2199. "node_modules/isexe": {
  2200. "version": "2.0.0",
  2201. "resolved": "https://mirrors.tencent.com/npm/isexe/-/isexe-2.0.0.tgz",
  2202. "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
  2203. "dev": true
  2204. },
  2205. "node_modules/jackspeak": {
  2206. "version": "3.4.3",
  2207. "resolved": "https://mirrors.tencent.com/npm/jackspeak/-/jackspeak-3.4.3.tgz",
  2208. "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
  2209. "dev": true,
  2210. "dependencies": {
  2211. "@isaacs/cliui": "^8.0.2"
  2212. },
  2213. "funding": {
  2214. "url": "https://github.com/sponsors/isaacs"
  2215. },
  2216. "optionalDependencies": {
  2217. "@pkgjs/parseargs": "^0.11.0"
  2218. }
  2219. },
  2220. "node_modules/jiti": {
  2221. "version": "1.21.7",
  2222. "resolved": "https://mirrors.tencent.com/npm/jiti/-/jiti-1.21.7.tgz",
  2223. "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==",
  2224. "dev": true,
  2225. "bin": {
  2226. "jiti": "bin/jiti.js"
  2227. }
  2228. },
  2229. "node_modules/js-tokens": {
  2230. "version": "9.0.1",
  2231. "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-9.0.1.tgz",
  2232. "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==",
  2233. "dev": true,
  2234. "license": "MIT"
  2235. },
  2236. "node_modules/lilconfig": {
  2237. "version": "3.1.3",
  2238. "resolved": "https://mirrors.tencent.com/npm/lilconfig/-/lilconfig-3.1.3.tgz",
  2239. "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
  2240. "dev": true,
  2241. "engines": {
  2242. "node": ">=14"
  2243. },
  2244. "funding": {
  2245. "url": "https://github.com/sponsors/antonk52"
  2246. }
  2247. },
  2248. "node_modules/lines-and-columns": {
  2249. "version": "1.2.4",
  2250. "resolved": "https://mirrors.tencent.com/npm/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
  2251. "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
  2252. "dev": true
  2253. },
  2254. "node_modules/lint-staged": {
  2255. "version": "15.5.0",
  2256. "resolved": "https://mirrors.tencent.com/npm/lint-staged/-/lint-staged-15.5.0.tgz",
  2257. "integrity": "sha512-WyCzSbfYGhK7cU+UuDDkzUiytbfbi0ZdPy2orwtM75P3WTtQBzmG40cCxIa8Ii2+XjfxzLH6Be46tUfWS85Xfg==",
  2258. "dev": true,
  2259. "dependencies": {
  2260. "chalk": "^5.4.1",
  2261. "commander": "^13.1.0",
  2262. "debug": "^4.4.0",
  2263. "execa": "^8.0.1",
  2264. "lilconfig": "^3.1.3",
  2265. "listr2": "^8.2.5",
  2266. "micromatch": "^4.0.8",
  2267. "pidtree": "^0.6.0",
  2268. "string-argv": "^0.3.2",
  2269. "yaml": "^2.7.0"
  2270. },
  2271. "bin": {
  2272. "lint-staged": "bin/lint-staged.js"
  2273. },
  2274. "engines": {
  2275. "node": ">=18.12.0"
  2276. },
  2277. "funding": {
  2278. "url": "https://opencollective.com/lint-staged"
  2279. }
  2280. },
  2281. "node_modules/lint-staged/node_modules/commander": {
  2282. "version": "13.1.0",
  2283. "resolved": "https://mirrors.tencent.com/npm/commander/-/commander-13.1.0.tgz",
  2284. "integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==",
  2285. "dev": true,
  2286. "engines": {
  2287. "node": ">=18"
  2288. }
  2289. },
  2290. "node_modules/listr2": {
  2291. "version": "8.2.5",
  2292. "resolved": "https://mirrors.tencent.com/npm/listr2/-/listr2-8.2.5.tgz",
  2293. "integrity": "sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==",
  2294. "dev": true,
  2295. "dependencies": {
  2296. "cli-truncate": "^4.0.0",
  2297. "colorette": "^2.0.20",
  2298. "eventemitter3": "^5.0.1",
  2299. "log-update": "^6.1.0",
  2300. "rfdc": "^1.4.1",
  2301. "wrap-ansi": "^9.0.0"
  2302. },
  2303. "engines": {
  2304. "node": ">=18.0.0"
  2305. }
  2306. },
  2307. "node_modules/listr2/node_modules/emoji-regex": {
  2308. "version": "10.4.0",
  2309. "resolved": "https://mirrors.tencent.com/npm/emoji-regex/-/emoji-regex-10.4.0.tgz",
  2310. "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
  2311. "dev": true
  2312. },
  2313. "node_modules/listr2/node_modules/string-width": {
  2314. "version": "7.2.0",
  2315. "resolved": "https://mirrors.tencent.com/npm/string-width/-/string-width-7.2.0.tgz",
  2316. "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
  2317. "dev": true,
  2318. "dependencies": {
  2319. "emoji-regex": "^10.3.0",
  2320. "get-east-asian-width": "^1.0.0",
  2321. "strip-ansi": "^7.1.0"
  2322. },
  2323. "engines": {
  2324. "node": ">=18"
  2325. },
  2326. "funding": {
  2327. "url": "https://github.com/sponsors/sindresorhus"
  2328. }
  2329. },
  2330. "node_modules/listr2/node_modules/wrap-ansi": {
  2331. "version": "9.0.0",
  2332. "resolved": "https://mirrors.tencent.com/npm/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
  2333. "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
  2334. "dev": true,
  2335. "dependencies": {
  2336. "ansi-styles": "^6.2.1",
  2337. "string-width": "^7.0.0",
  2338. "strip-ansi": "^7.1.0"
  2339. },
  2340. "engines": {
  2341. "node": ">=18"
  2342. },
  2343. "funding": {
  2344. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  2345. }
  2346. },
  2347. "node_modules/local-pkg": {
  2348. "version": "1.0.0",
  2349. "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-1.0.0.tgz",
  2350. "integrity": "sha512-bbgPw/wmroJsil/GgL4qjDzs5YLTBMQ99weRsok1XCDccQeehbHA/I1oRvk2NPtr7KGZgT/Y5tPRnAtMqeG2Kg==",
  2351. "dev": true,
  2352. "license": "MIT",
  2353. "dependencies": {
  2354. "mlly": "^1.7.3",
  2355. "pkg-types": "^1.3.0"
  2356. },
  2357. "engines": {
  2358. "node": ">=14"
  2359. },
  2360. "funding": {
  2361. "url": "https://github.com/sponsors/antfu"
  2362. }
  2363. },
  2364. "node_modules/lodash": {
  2365. "version": "4.17.21",
  2366. "resolved": "https://r2.cnpmjs.org/lodash/-/lodash-4.17.21.tgz",
  2367. "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
  2368. "license": "MIT"
  2369. },
  2370. "node_modules/lodash-es": {
  2371. "version": "4.17.21",
  2372. "resolved": "https://r2.cnpmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
  2373. "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==",
  2374. "license": "MIT"
  2375. },
  2376. "node_modules/lodash-unified": {
  2377. "version": "1.0.3",
  2378. "resolved": "https://r.cnpmjs.org/lodash-unified/-/lodash-unified-1.0.3.tgz",
  2379. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  2380. "license": "MIT",
  2381. "peerDependencies": {
  2382. "@types/lodash-es": "*",
  2383. "lodash": "*",
  2384. "lodash-es": "*"
  2385. }
  2386. },
  2387. "node_modules/log-update": {
  2388. "version": "6.1.0",
  2389. "resolved": "https://mirrors.tencent.com/npm/log-update/-/log-update-6.1.0.tgz",
  2390. "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==",
  2391. "dev": true,
  2392. "dependencies": {
  2393. "ansi-escapes": "^7.0.0",
  2394. "cli-cursor": "^5.0.0",
  2395. "slice-ansi": "^7.1.0",
  2396. "strip-ansi": "^7.1.0",
  2397. "wrap-ansi": "^9.0.0"
  2398. },
  2399. "engines": {
  2400. "node": ">=18"
  2401. },
  2402. "funding": {
  2403. "url": "https://github.com/sponsors/sindresorhus"
  2404. }
  2405. },
  2406. "node_modules/log-update/node_modules/emoji-regex": {
  2407. "version": "10.4.0",
  2408. "resolved": "https://mirrors.tencent.com/npm/emoji-regex/-/emoji-regex-10.4.0.tgz",
  2409. "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
  2410. "dev": true
  2411. },
  2412. "node_modules/log-update/node_modules/is-fullwidth-code-point": {
  2413. "version": "5.0.0",
  2414. "resolved": "https://mirrors.tencent.com/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz",
  2415. "integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==",
  2416. "dev": true,
  2417. "dependencies": {
  2418. "get-east-asian-width": "^1.0.0"
  2419. },
  2420. "engines": {
  2421. "node": ">=18"
  2422. },
  2423. "funding": {
  2424. "url": "https://github.com/sponsors/sindresorhus"
  2425. }
  2426. },
  2427. "node_modules/log-update/node_modules/slice-ansi": {
  2428. "version": "7.1.0",
  2429. "resolved": "https://mirrors.tencent.com/npm/slice-ansi/-/slice-ansi-7.1.0.tgz",
  2430. "integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==",
  2431. "dev": true,
  2432. "dependencies": {
  2433. "ansi-styles": "^6.2.1",
  2434. "is-fullwidth-code-point": "^5.0.0"
  2435. },
  2436. "engines": {
  2437. "node": ">=18"
  2438. },
  2439. "funding": {
  2440. "url": "https://github.com/chalk/slice-ansi?sponsor=1"
  2441. }
  2442. },
  2443. "node_modules/log-update/node_modules/string-width": {
  2444. "version": "7.2.0",
  2445. "resolved": "https://mirrors.tencent.com/npm/string-width/-/string-width-7.2.0.tgz",
  2446. "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
  2447. "dev": true,
  2448. "dependencies": {
  2449. "emoji-regex": "^10.3.0",
  2450. "get-east-asian-width": "^1.0.0",
  2451. "strip-ansi": "^7.1.0"
  2452. },
  2453. "engines": {
  2454. "node": ">=18"
  2455. },
  2456. "funding": {
  2457. "url": "https://github.com/sponsors/sindresorhus"
  2458. }
  2459. },
  2460. "node_modules/log-update/node_modules/wrap-ansi": {
  2461. "version": "9.0.0",
  2462. "resolved": "https://mirrors.tencent.com/npm/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
  2463. "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
  2464. "dev": true,
  2465. "dependencies": {
  2466. "ansi-styles": "^6.2.1",
  2467. "string-width": "^7.0.0",
  2468. "strip-ansi": "^7.1.0"
  2469. },
  2470. "engines": {
  2471. "node": ">=18"
  2472. },
  2473. "funding": {
  2474. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  2475. }
  2476. },
  2477. "node_modules/lru-cache": {
  2478. "version": "10.4.3",
  2479. "resolved": "https://mirrors.tencent.com/npm/lru-cache/-/lru-cache-10.4.3.tgz",
  2480. "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
  2481. "dev": true
  2482. },
  2483. "node_modules/magic-string": {
  2484. "version": "0.30.17",
  2485. "resolved": "https://mirrors.tencent.com/npm/magic-string/-/magic-string-0.30.17.tgz",
  2486. "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
  2487. "dependencies": {
  2488. "@jridgewell/sourcemap-codec": "^1.5.0"
  2489. }
  2490. },
  2491. "node_modules/memoize-one": {
  2492. "version": "6.0.0",
  2493. "resolved": "https://r2.cnpmjs.org/memoize-one/-/memoize-one-6.0.0.tgz",
  2494. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  2495. "license": "MIT"
  2496. },
  2497. "node_modules/merge-stream": {
  2498. "version": "2.0.0",
  2499. "resolved": "https://mirrors.tencent.com/npm/merge-stream/-/merge-stream-2.0.0.tgz",
  2500. "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
  2501. "dev": true
  2502. },
  2503. "node_modules/merge2": {
  2504. "version": "1.4.1",
  2505. "resolved": "https://mirrors.tencent.com/npm/merge2/-/merge2-1.4.1.tgz",
  2506. "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
  2507. "dev": true,
  2508. "engines": {
  2509. "node": ">= 8"
  2510. }
  2511. },
  2512. "node_modules/micromatch": {
  2513. "version": "4.0.8",
  2514. "resolved": "https://mirrors.tencent.com/npm/micromatch/-/micromatch-4.0.8.tgz",
  2515. "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
  2516. "dev": true,
  2517. "dependencies": {
  2518. "braces": "^3.0.3",
  2519. "picomatch": "^2.3.1"
  2520. },
  2521. "engines": {
  2522. "node": ">=8.6"
  2523. }
  2524. },
  2525. "node_modules/mime-db": {
  2526. "version": "1.52.0",
  2527. "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
  2528. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  2529. "license": "MIT",
  2530. "engines": {
  2531. "node": ">= 0.6"
  2532. }
  2533. },
  2534. "node_modules/mime-types": {
  2535. "version": "2.1.35",
  2536. "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz",
  2537. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  2538. "license": "MIT",
  2539. "dependencies": {
  2540. "mime-db": "1.52.0"
  2541. },
  2542. "engines": {
  2543. "node": ">= 0.6"
  2544. }
  2545. },
  2546. "node_modules/mimic-fn": {
  2547. "version": "4.0.0",
  2548. "resolved": "https://mirrors.tencent.com/npm/mimic-fn/-/mimic-fn-4.0.0.tgz",
  2549. "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
  2550. "dev": true,
  2551. "engines": {
  2552. "node": ">=12"
  2553. },
  2554. "funding": {
  2555. "url": "https://github.com/sponsors/sindresorhus"
  2556. }
  2557. },
  2558. "node_modules/mimic-function": {
  2559. "version": "5.0.1",
  2560. "resolved": "https://mirrors.tencent.com/npm/mimic-function/-/mimic-function-5.0.1.tgz",
  2561. "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==",
  2562. "dev": true,
  2563. "engines": {
  2564. "node": ">=18"
  2565. },
  2566. "funding": {
  2567. "url": "https://github.com/sponsors/sindresorhus"
  2568. }
  2569. },
  2570. "node_modules/minimatch": {
  2571. "version": "9.0.5",
  2572. "resolved": "https://mirrors.tencent.com/npm/minimatch/-/minimatch-9.0.5.tgz",
  2573. "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
  2574. "dev": true,
  2575. "dependencies": {
  2576. "brace-expansion": "^2.0.1"
  2577. },
  2578. "engines": {
  2579. "node": ">=16 || 14 >=14.17"
  2580. },
  2581. "funding": {
  2582. "url": "https://github.com/sponsors/isaacs"
  2583. }
  2584. },
  2585. "node_modules/minipass": {
  2586. "version": "7.1.2",
  2587. "resolved": "https://mirrors.tencent.com/npm/minipass/-/minipass-7.1.2.tgz",
  2588. "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
  2589. "dev": true,
  2590. "engines": {
  2591. "node": ">=16 || 14 >=14.17"
  2592. }
  2593. },
  2594. "node_modules/mitt": {
  2595. "version": "3.0.1",
  2596. "resolved": "https://r.cnpmjs.org/mitt/-/mitt-3.0.1.tgz",
  2597. "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
  2598. "license": "MIT"
  2599. },
  2600. "node_modules/mlly": {
  2601. "version": "1.7.4",
  2602. "resolved": "https://registry.npmmirror.com/mlly/-/mlly-1.7.4.tgz",
  2603. "integrity": "sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==",
  2604. "dev": true,
  2605. "license": "MIT",
  2606. "dependencies": {
  2607. "acorn": "^8.14.0",
  2608. "pathe": "^2.0.1",
  2609. "pkg-types": "^1.3.0",
  2610. "ufo": "^1.5.4"
  2611. }
  2612. },
  2613. "node_modules/ms": {
  2614. "version": "2.1.3",
  2615. "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
  2616. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  2617. "dev": true,
  2618. "license": "MIT"
  2619. },
  2620. "node_modules/mz": {
  2621. "version": "2.7.0",
  2622. "resolved": "https://mirrors.tencent.com/npm/mz/-/mz-2.7.0.tgz",
  2623. "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
  2624. "dev": true,
  2625. "dependencies": {
  2626. "any-promise": "^1.0.0",
  2627. "object-assign": "^4.0.1",
  2628. "thenify-all": "^1.0.0"
  2629. }
  2630. },
  2631. "node_modules/nanoid": {
  2632. "version": "3.3.8",
  2633. "resolved": "https://mirrors.tencent.com/npm/nanoid/-/nanoid-3.3.8.tgz",
  2634. "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
  2635. "funding": [
  2636. {
  2637. "type": "github",
  2638. "url": "https://github.com/sponsors/ai"
  2639. }
  2640. ],
  2641. "bin": {
  2642. "nanoid": "bin/nanoid.cjs"
  2643. },
  2644. "engines": {
  2645. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2646. }
  2647. },
  2648. "node_modules/node-releases": {
  2649. "version": "2.0.19",
  2650. "resolved": "https://mirrors.tencent.com/npm/node-releases/-/node-releases-2.0.19.tgz",
  2651. "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
  2652. "dev": true
  2653. },
  2654. "node_modules/normalize-path": {
  2655. "version": "3.0.0",
  2656. "resolved": "https://mirrors.tencent.com/npm/normalize-path/-/normalize-path-3.0.0.tgz",
  2657. "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
  2658. "dev": true,
  2659. "engines": {
  2660. "node": ">=0.10.0"
  2661. }
  2662. },
  2663. "node_modules/normalize-range": {
  2664. "version": "0.1.2",
  2665. "resolved": "https://mirrors.tencent.com/npm/normalize-range/-/normalize-range-0.1.2.tgz",
  2666. "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
  2667. "dev": true,
  2668. "engines": {
  2669. "node": ">=0.10.0"
  2670. }
  2671. },
  2672. "node_modules/normalize-wheel-es": {
  2673. "version": "1.2.0",
  2674. "resolved": "https://r.cnpmjs.org/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  2675. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  2676. "license": "BSD-3-Clause"
  2677. },
  2678. "node_modules/npm-run-path": {
  2679. "version": "5.3.0",
  2680. "resolved": "https://mirrors.tencent.com/npm/npm-run-path/-/npm-run-path-5.3.0.tgz",
  2681. "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
  2682. "dev": true,
  2683. "dependencies": {
  2684. "path-key": "^4.0.0"
  2685. },
  2686. "engines": {
  2687. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  2688. },
  2689. "funding": {
  2690. "url": "https://github.com/sponsors/sindresorhus"
  2691. }
  2692. },
  2693. "node_modules/npm-run-path/node_modules/path-key": {
  2694. "version": "4.0.0",
  2695. "resolved": "https://mirrors.tencent.com/npm/path-key/-/path-key-4.0.0.tgz",
  2696. "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
  2697. "dev": true,
  2698. "engines": {
  2699. "node": ">=12"
  2700. },
  2701. "funding": {
  2702. "url": "https://github.com/sponsors/sindresorhus"
  2703. }
  2704. },
  2705. "node_modules/object-assign": {
  2706. "version": "4.1.1",
  2707. "resolved": "https://r2.cnpmjs.org/object-assign/-/object-assign-4.1.1.tgz",
  2708. "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
  2709. "dev": true,
  2710. "license": "MIT",
  2711. "engines": {
  2712. "node": ">=0.10.0"
  2713. }
  2714. },
  2715. "node_modules/object-hash": {
  2716. "version": "3.0.0",
  2717. "resolved": "https://mirrors.tencent.com/npm/object-hash/-/object-hash-3.0.0.tgz",
  2718. "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
  2719. "dev": true,
  2720. "engines": {
  2721. "node": ">= 6"
  2722. }
  2723. },
  2724. "node_modules/onetime": {
  2725. "version": "6.0.0",
  2726. "resolved": "https://mirrors.tencent.com/npm/onetime/-/onetime-6.0.0.tgz",
  2727. "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
  2728. "dev": true,
  2729. "dependencies": {
  2730. "mimic-fn": "^4.0.0"
  2731. },
  2732. "engines": {
  2733. "node": ">=12"
  2734. },
  2735. "funding": {
  2736. "url": "https://github.com/sponsors/sindresorhus"
  2737. }
  2738. },
  2739. "node_modules/package-json-from-dist": {
  2740. "version": "1.0.1",
  2741. "resolved": "https://mirrors.tencent.com/npm/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
  2742. "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
  2743. "dev": true
  2744. },
  2745. "node_modules/path-key": {
  2746. "version": "3.1.1",
  2747. "resolved": "https://mirrors.tencent.com/npm/path-key/-/path-key-3.1.1.tgz",
  2748. "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
  2749. "dev": true,
  2750. "engines": {
  2751. "node": ">=8"
  2752. }
  2753. },
  2754. "node_modules/path-parse": {
  2755. "version": "1.0.7",
  2756. "resolved": "https://mirrors.tencent.com/npm/path-parse/-/path-parse-1.0.7.tgz",
  2757. "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
  2758. "dev": true
  2759. },
  2760. "node_modules/path-scurry": {
  2761. "version": "1.11.1",
  2762. "resolved": "https://mirrors.tencent.com/npm/path-scurry/-/path-scurry-1.11.1.tgz",
  2763. "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
  2764. "dev": true,
  2765. "dependencies": {
  2766. "lru-cache": "^10.2.0",
  2767. "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
  2768. },
  2769. "engines": {
  2770. "node": ">=16 || 14 >=14.18"
  2771. },
  2772. "funding": {
  2773. "url": "https://github.com/sponsors/isaacs"
  2774. }
  2775. },
  2776. "node_modules/pathe": {
  2777. "version": "2.0.3",
  2778. "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz",
  2779. "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
  2780. "dev": true,
  2781. "license": "MIT"
  2782. },
  2783. "node_modules/perfect-debounce": {
  2784. "version": "1.0.0",
  2785. "resolved": "https://mirrors.tencent.com/npm/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
  2786. "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA=="
  2787. },
  2788. "node_modules/picocolors": {
  2789. "version": "1.1.1",
  2790. "resolved": "https://mirrors.tencent.com/npm/picocolors/-/picocolors-1.1.1.tgz",
  2791. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
  2792. },
  2793. "node_modules/picomatch": {
  2794. "version": "2.3.1",
  2795. "resolved": "https://mirrors.tencent.com/npm/picomatch/-/picomatch-2.3.1.tgz",
  2796. "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
  2797. "dev": true,
  2798. "engines": {
  2799. "node": ">=8.6"
  2800. },
  2801. "funding": {
  2802. "url": "https://github.com/sponsors/jonschlinkert"
  2803. }
  2804. },
  2805. "node_modules/pidtree": {
  2806. "version": "0.6.0",
  2807. "resolved": "https://mirrors.tencent.com/npm/pidtree/-/pidtree-0.6.0.tgz",
  2808. "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==",
  2809. "dev": true,
  2810. "bin": {
  2811. "pidtree": "bin/pidtree.js"
  2812. },
  2813. "engines": {
  2814. "node": ">=0.10"
  2815. }
  2816. },
  2817. "node_modules/pify": {
  2818. "version": "2.3.0",
  2819. "resolved": "https://mirrors.tencent.com/npm/pify/-/pify-2.3.0.tgz",
  2820. "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
  2821. "dev": true,
  2822. "engines": {
  2823. "node": ">=0.10.0"
  2824. }
  2825. },
  2826. "node_modules/pinia": {
  2827. "version": "3.0.1",
  2828. "resolved": "https://mirrors.tencent.com/npm/pinia/-/pinia-3.0.1.tgz",
  2829. "integrity": "sha512-WXglsDzztOTH6IfcJ99ltYZin2mY8XZCXujkYWVIJlBjqsP6ST7zw+Aarh63E1cDVYeyUcPCxPHzJpEOmzB6Wg==",
  2830. "dependencies": {
  2831. "@vue/devtools-api": "^7.7.2"
  2832. },
  2833. "funding": {
  2834. "url": "https://github.com/sponsors/posva"
  2835. },
  2836. "peerDependencies": {
  2837. "typescript": ">=4.4.4",
  2838. "vue": "^2.7.0 || ^3.5.11"
  2839. },
  2840. "peerDependenciesMeta": {
  2841. "typescript": {
  2842. "optional": true
  2843. }
  2844. }
  2845. },
  2846. "node_modules/pirates": {
  2847. "version": "4.0.6",
  2848. "resolved": "https://mirrors.tencent.com/npm/pirates/-/pirates-4.0.6.tgz",
  2849. "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
  2850. "dev": true,
  2851. "engines": {
  2852. "node": ">= 6"
  2853. }
  2854. },
  2855. "node_modules/pkg-types": {
  2856. "version": "1.3.1",
  2857. "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.3.1.tgz",
  2858. "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
  2859. "dev": true,
  2860. "license": "MIT",
  2861. "dependencies": {
  2862. "confbox": "^0.1.8",
  2863. "mlly": "^1.7.4",
  2864. "pathe": "^2.0.1"
  2865. }
  2866. },
  2867. "node_modules/postcss": {
  2868. "version": "8.5.3",
  2869. "resolved": "https://mirrors.tencent.com/npm/postcss/-/postcss-8.5.3.tgz",
  2870. "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
  2871. "funding": [
  2872. {
  2873. "type": "opencollective",
  2874. "url": "https://opencollective.com/postcss/"
  2875. },
  2876. {
  2877. "type": "tidelift",
  2878. "url": "https://tidelift.com/funding/github/npm/postcss"
  2879. },
  2880. {
  2881. "type": "github",
  2882. "url": "https://github.com/sponsors/ai"
  2883. }
  2884. ],
  2885. "dependencies": {
  2886. "nanoid": "^3.3.8",
  2887. "picocolors": "^1.1.1",
  2888. "source-map-js": "^1.2.1"
  2889. },
  2890. "engines": {
  2891. "node": "^10 || ^12 || >=14"
  2892. }
  2893. },
  2894. "node_modules/postcss-import": {
  2895. "version": "15.1.0",
  2896. "resolved": "https://mirrors.tencent.com/npm/postcss-import/-/postcss-import-15.1.0.tgz",
  2897. "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
  2898. "dev": true,
  2899. "dependencies": {
  2900. "postcss-value-parser": "^4.0.0",
  2901. "read-cache": "^1.0.0",
  2902. "resolve": "^1.1.7"
  2903. },
  2904. "engines": {
  2905. "node": ">=14.0.0"
  2906. },
  2907. "peerDependencies": {
  2908. "postcss": "^8.0.0"
  2909. }
  2910. },
  2911. "node_modules/postcss-js": {
  2912. "version": "4.0.1",
  2913. "resolved": "https://mirrors.tencent.com/npm/postcss-js/-/postcss-js-4.0.1.tgz",
  2914. "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
  2915. "dev": true,
  2916. "dependencies": {
  2917. "camelcase-css": "^2.0.1"
  2918. },
  2919. "engines": {
  2920. "node": "^12 || ^14 || >= 16"
  2921. },
  2922. "funding": {
  2923. "type": "opencollective",
  2924. "url": "https://opencollective.com/postcss/"
  2925. },
  2926. "peerDependencies": {
  2927. "postcss": "^8.4.21"
  2928. }
  2929. },
  2930. "node_modules/postcss-load-config": {
  2931. "version": "4.0.2",
  2932. "resolved": "https://mirrors.tencent.com/npm/postcss-load-config/-/postcss-load-config-4.0.2.tgz",
  2933. "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
  2934. "dev": true,
  2935. "funding": [
  2936. {
  2937. "type": "opencollective",
  2938. "url": "https://opencollective.com/postcss/"
  2939. },
  2940. {
  2941. "type": "github",
  2942. "url": "https://github.com/sponsors/ai"
  2943. }
  2944. ],
  2945. "dependencies": {
  2946. "lilconfig": "^3.0.0",
  2947. "yaml": "^2.3.4"
  2948. },
  2949. "engines": {
  2950. "node": ">= 14"
  2951. },
  2952. "peerDependencies": {
  2953. "postcss": ">=8.0.9",
  2954. "ts-node": ">=9.0.0"
  2955. },
  2956. "peerDependenciesMeta": {
  2957. "postcss": {
  2958. "optional": true
  2959. },
  2960. "ts-node": {
  2961. "optional": true
  2962. }
  2963. }
  2964. },
  2965. "node_modules/postcss-nested": {
  2966. "version": "6.2.0",
  2967. "resolved": "https://mirrors.tencent.com/npm/postcss-nested/-/postcss-nested-6.2.0.tgz",
  2968. "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
  2969. "dev": true,
  2970. "funding": [
  2971. {
  2972. "type": "opencollective",
  2973. "url": "https://opencollective.com/postcss/"
  2974. },
  2975. {
  2976. "type": "github",
  2977. "url": "https://github.com/sponsors/ai"
  2978. }
  2979. ],
  2980. "dependencies": {
  2981. "postcss-selector-parser": "^6.1.1"
  2982. },
  2983. "engines": {
  2984. "node": ">=12.0"
  2985. },
  2986. "peerDependencies": {
  2987. "postcss": "^8.2.14"
  2988. }
  2989. },
  2990. "node_modules/postcss-px-to-viewport": {
  2991. "version": "1.1.1",
  2992. "resolved": "https://r2.cnpmjs.org/postcss-px-to-viewport/-/postcss-px-to-viewport-1.1.1.tgz",
  2993. "integrity": "sha512-2x9oGnBms+e0cYtBJOZdlwrFg/mLR4P1g2IFu7jYKvnqnH/HLhoKyareW2Q/x4sg0BgklHlP1qeWo2oCyPm8FQ==",
  2994. "dev": true,
  2995. "license": "MIT",
  2996. "dependencies": {
  2997. "object-assign": ">=4.0.1",
  2998. "postcss": ">=5.0.2"
  2999. }
  3000. },
  3001. "node_modules/postcss-selector-parser": {
  3002. "version": "6.1.2",
  3003. "resolved": "https://mirrors.tencent.com/npm/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
  3004. "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
  3005. "dev": true,
  3006. "dependencies": {
  3007. "cssesc": "^3.0.0",
  3008. "util-deprecate": "^1.0.2"
  3009. },
  3010. "engines": {
  3011. "node": ">=4"
  3012. }
  3013. },
  3014. "node_modules/postcss-value-parser": {
  3015. "version": "4.2.0",
  3016. "resolved": "https://mirrors.tencent.com/npm/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
  3017. "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
  3018. "dev": true
  3019. },
  3020. "node_modules/prettier": {
  3021. "version": "3.5.3",
  3022. "resolved": "https://mirrors.tencent.com/npm/prettier/-/prettier-3.5.3.tgz",
  3023. "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
  3024. "dev": true,
  3025. "bin": {
  3026. "prettier": "bin/prettier.cjs"
  3027. },
  3028. "engines": {
  3029. "node": ">=14"
  3030. },
  3031. "funding": {
  3032. "url": "https://github.com/prettier/prettier?sponsor=1"
  3033. }
  3034. },
  3035. "node_modules/proxy-from-env": {
  3036. "version": "1.1.0",
  3037. "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
  3038. "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
  3039. "license": "MIT"
  3040. },
  3041. "node_modules/queue-microtask": {
  3042. "version": "1.2.3",
  3043. "resolved": "https://mirrors.tencent.com/npm/queue-microtask/-/queue-microtask-1.2.3.tgz",
  3044. "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
  3045. "dev": true,
  3046. "funding": [
  3047. {
  3048. "type": "github",
  3049. "url": "https://github.com/sponsors/feross"
  3050. },
  3051. {
  3052. "type": "patreon",
  3053. "url": "https://www.patreon.com/feross"
  3054. },
  3055. {
  3056. "type": "consulting",
  3057. "url": "https://feross.org/support"
  3058. }
  3059. ]
  3060. },
  3061. "node_modules/read-cache": {
  3062. "version": "1.0.0",
  3063. "resolved": "https://mirrors.tencent.com/npm/read-cache/-/read-cache-1.0.0.tgz",
  3064. "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
  3065. "dev": true,
  3066. "dependencies": {
  3067. "pify": "^2.3.0"
  3068. }
  3069. },
  3070. "node_modules/readdirp": {
  3071. "version": "4.0.1",
  3072. "resolved": "https://r.cnpmjs.org/readdirp/-/readdirp-4.0.1.tgz",
  3073. "integrity": "sha512-GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw==",
  3074. "dev": true,
  3075. "license": "MIT",
  3076. "engines": {
  3077. "node": ">= 14.16.0"
  3078. },
  3079. "funding": {
  3080. "type": "individual",
  3081. "url": "https://paulmillr.com/funding/"
  3082. }
  3083. },
  3084. "node_modules/resolve": {
  3085. "version": "1.22.10",
  3086. "resolved": "https://mirrors.tencent.com/npm/resolve/-/resolve-1.22.10.tgz",
  3087. "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
  3088. "dev": true,
  3089. "dependencies": {
  3090. "is-core-module": "^2.16.0",
  3091. "path-parse": "^1.0.7",
  3092. "supports-preserve-symlinks-flag": "^1.0.0"
  3093. },
  3094. "bin": {
  3095. "resolve": "bin/resolve"
  3096. },
  3097. "engines": {
  3098. "node": ">= 0.4"
  3099. },
  3100. "funding": {
  3101. "url": "https://github.com/sponsors/ljharb"
  3102. }
  3103. },
  3104. "node_modules/restore-cursor": {
  3105. "version": "5.1.0",
  3106. "resolved": "https://mirrors.tencent.com/npm/restore-cursor/-/restore-cursor-5.1.0.tgz",
  3107. "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==",
  3108. "dev": true,
  3109. "dependencies": {
  3110. "onetime": "^7.0.0",
  3111. "signal-exit": "^4.1.0"
  3112. },
  3113. "engines": {
  3114. "node": ">=18"
  3115. },
  3116. "funding": {
  3117. "url": "https://github.com/sponsors/sindresorhus"
  3118. }
  3119. },
  3120. "node_modules/restore-cursor/node_modules/onetime": {
  3121. "version": "7.0.0",
  3122. "resolved": "https://mirrors.tencent.com/npm/onetime/-/onetime-7.0.0.tgz",
  3123. "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==",
  3124. "dev": true,
  3125. "dependencies": {
  3126. "mimic-function": "^5.0.0"
  3127. },
  3128. "engines": {
  3129. "node": ">=18"
  3130. },
  3131. "funding": {
  3132. "url": "https://github.com/sponsors/sindresorhus"
  3133. }
  3134. },
  3135. "node_modules/reusify": {
  3136. "version": "1.0.4",
  3137. "resolved": "https://mirrors.tencent.com/npm/reusify/-/reusify-1.0.4.tgz",
  3138. "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
  3139. "dev": true,
  3140. "engines": {
  3141. "iojs": ">=1.0.0",
  3142. "node": ">=0.10.0"
  3143. }
  3144. },
  3145. "node_modules/rfdc": {
  3146. "version": "1.4.1",
  3147. "resolved": "https://mirrors.tencent.com/npm/rfdc/-/rfdc-1.4.1.tgz",
  3148. "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA=="
  3149. },
  3150. "node_modules/rollup": {
  3151. "version": "4.22.4",
  3152. "resolved": "https://r.cnpmjs.org/rollup/-/rollup-4.22.4.tgz",
  3153. "integrity": "sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==",
  3154. "dev": true,
  3155. "license": "MIT",
  3156. "dependencies": {
  3157. "@types/estree": "1.0.5"
  3158. },
  3159. "bin": {
  3160. "rollup": "dist/bin/rollup"
  3161. },
  3162. "engines": {
  3163. "node": ">=18.0.0",
  3164. "npm": ">=8.0.0"
  3165. },
  3166. "optionalDependencies": {
  3167. "@rollup/rollup-android-arm-eabi": "4.22.4",
  3168. "@rollup/rollup-android-arm64": "4.22.4",
  3169. "@rollup/rollup-darwin-arm64": "4.22.4",
  3170. "@rollup/rollup-darwin-x64": "4.22.4",
  3171. "@rollup/rollup-linux-arm-gnueabihf": "4.22.4",
  3172. "@rollup/rollup-linux-arm-musleabihf": "4.22.4",
  3173. "@rollup/rollup-linux-arm64-gnu": "4.22.4",
  3174. "@rollup/rollup-linux-arm64-musl": "4.22.4",
  3175. "@rollup/rollup-linux-powerpc64le-gnu": "4.22.4",
  3176. "@rollup/rollup-linux-riscv64-gnu": "4.22.4",
  3177. "@rollup/rollup-linux-s390x-gnu": "4.22.4",
  3178. "@rollup/rollup-linux-x64-gnu": "4.22.4",
  3179. "@rollup/rollup-linux-x64-musl": "4.22.4",
  3180. "@rollup/rollup-win32-arm64-msvc": "4.22.4",
  3181. "@rollup/rollup-win32-ia32-msvc": "4.22.4",
  3182. "@rollup/rollup-win32-x64-msvc": "4.22.4",
  3183. "fsevents": "~2.3.2"
  3184. }
  3185. },
  3186. "node_modules/run-parallel": {
  3187. "version": "1.2.0",
  3188. "resolved": "https://mirrors.tencent.com/npm/run-parallel/-/run-parallel-1.2.0.tgz",
  3189. "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
  3190. "dev": true,
  3191. "funding": [
  3192. {
  3193. "type": "github",
  3194. "url": "https://github.com/sponsors/feross"
  3195. },
  3196. {
  3197. "type": "patreon",
  3198. "url": "https://www.patreon.com/feross"
  3199. },
  3200. {
  3201. "type": "consulting",
  3202. "url": "https://feross.org/support"
  3203. }
  3204. ],
  3205. "dependencies": {
  3206. "queue-microtask": "^1.2.2"
  3207. }
  3208. },
  3209. "node_modules/sass": {
  3210. "version": "1.79.3",
  3211. "resolved": "https://r.cnpmjs.org/sass/-/sass-1.79.3.tgz",
  3212. "integrity": "sha512-m7dZxh0W9EZ3cw50Me5GOuYm/tVAJAn91SUnohLRo9cXBixGUOdvmryN+dXpwR831bhoY3Zv7rEFt85PUwTmzA==",
  3213. "dev": true,
  3214. "license": "MIT",
  3215. "dependencies": {
  3216. "chokidar": "^4.0.0",
  3217. "immutable": "^4.0.0",
  3218. "source-map-js": ">=0.6.2 <2.0.0"
  3219. },
  3220. "bin": {
  3221. "sass": "sass.js"
  3222. },
  3223. "engines": {
  3224. "node": ">=14.0.0"
  3225. }
  3226. },
  3227. "node_modules/scule": {
  3228. "version": "1.3.0",
  3229. "resolved": "https://registry.npmmirror.com/scule/-/scule-1.3.0.tgz",
  3230. "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==",
  3231. "dev": true,
  3232. "license": "MIT"
  3233. },
  3234. "node_modules/shebang-command": {
  3235. "version": "2.0.0",
  3236. "resolved": "https://mirrors.tencent.com/npm/shebang-command/-/shebang-command-2.0.0.tgz",
  3237. "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
  3238. "dev": true,
  3239. "dependencies": {
  3240. "shebang-regex": "^3.0.0"
  3241. },
  3242. "engines": {
  3243. "node": ">=8"
  3244. }
  3245. },
  3246. "node_modules/shebang-regex": {
  3247. "version": "3.0.0",
  3248. "resolved": "https://mirrors.tencent.com/npm/shebang-regex/-/shebang-regex-3.0.0.tgz",
  3249. "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
  3250. "dev": true,
  3251. "engines": {
  3252. "node": ">=8"
  3253. }
  3254. },
  3255. "node_modules/signal-exit": {
  3256. "version": "4.1.0",
  3257. "resolved": "https://mirrors.tencent.com/npm/signal-exit/-/signal-exit-4.1.0.tgz",
  3258. "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
  3259. "dev": true,
  3260. "engines": {
  3261. "node": ">=14"
  3262. },
  3263. "funding": {
  3264. "url": "https://github.com/sponsors/isaacs"
  3265. }
  3266. },
  3267. "node_modules/slice-ansi": {
  3268. "version": "5.0.0",
  3269. "resolved": "https://mirrors.tencent.com/npm/slice-ansi/-/slice-ansi-5.0.0.tgz",
  3270. "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==",
  3271. "dev": true,
  3272. "dependencies": {
  3273. "ansi-styles": "^6.0.0",
  3274. "is-fullwidth-code-point": "^4.0.0"
  3275. },
  3276. "engines": {
  3277. "node": ">=12"
  3278. },
  3279. "funding": {
  3280. "url": "https://github.com/chalk/slice-ansi?sponsor=1"
  3281. }
  3282. },
  3283. "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": {
  3284. "version": "4.0.0",
  3285. "resolved": "https://mirrors.tencent.com/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz",
  3286. "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==",
  3287. "dev": true,
  3288. "engines": {
  3289. "node": ">=12"
  3290. },
  3291. "funding": {
  3292. "url": "https://github.com/sponsors/sindresorhus"
  3293. }
  3294. },
  3295. "node_modules/source-map-js": {
  3296. "version": "1.2.1",
  3297. "resolved": "https://r.cnpmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  3298. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  3299. "license": "BSD-3-Clause",
  3300. "engines": {
  3301. "node": ">=0.10.0"
  3302. }
  3303. },
  3304. "node_modules/speakingurl": {
  3305. "version": "14.0.1",
  3306. "resolved": "https://mirrors.tencent.com/npm/speakingurl/-/speakingurl-14.0.1.tgz",
  3307. "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
  3308. "engines": {
  3309. "node": ">=0.10.0"
  3310. }
  3311. },
  3312. "node_modules/string-argv": {
  3313. "version": "0.3.2",
  3314. "resolved": "https://mirrors.tencent.com/npm/string-argv/-/string-argv-0.3.2.tgz",
  3315. "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==",
  3316. "dev": true,
  3317. "engines": {
  3318. "node": ">=0.6.19"
  3319. }
  3320. },
  3321. "node_modules/string-width": {
  3322. "version": "5.1.2",
  3323. "resolved": "https://mirrors.tencent.com/npm/string-width/-/string-width-5.1.2.tgz",
  3324. "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
  3325. "dev": true,
  3326. "dependencies": {
  3327. "eastasianwidth": "^0.2.0",
  3328. "emoji-regex": "^9.2.2",
  3329. "strip-ansi": "^7.0.1"
  3330. },
  3331. "engines": {
  3332. "node": ">=12"
  3333. },
  3334. "funding": {
  3335. "url": "https://github.com/sponsors/sindresorhus"
  3336. }
  3337. },
  3338. "node_modules/string-width-cjs": {
  3339. "name": "string-width",
  3340. "version": "4.2.3",
  3341. "resolved": "https://mirrors.tencent.com/npm/string-width/-/string-width-4.2.3.tgz",
  3342. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  3343. "dev": true,
  3344. "dependencies": {
  3345. "emoji-regex": "^8.0.0",
  3346. "is-fullwidth-code-point": "^3.0.0",
  3347. "strip-ansi": "^6.0.1"
  3348. },
  3349. "engines": {
  3350. "node": ">=8"
  3351. }
  3352. },
  3353. "node_modules/string-width-cjs/node_modules/ansi-regex": {
  3354. "version": "5.0.1",
  3355. "resolved": "https://mirrors.tencent.com/npm/ansi-regex/-/ansi-regex-5.0.1.tgz",
  3356. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  3357. "dev": true,
  3358. "engines": {
  3359. "node": ">=8"
  3360. }
  3361. },
  3362. "node_modules/string-width-cjs/node_modules/emoji-regex": {
  3363. "version": "8.0.0",
  3364. "resolved": "https://mirrors.tencent.com/npm/emoji-regex/-/emoji-regex-8.0.0.tgz",
  3365. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  3366. "dev": true
  3367. },
  3368. "node_modules/string-width-cjs/node_modules/strip-ansi": {
  3369. "version": "6.0.1",
  3370. "resolved": "https://mirrors.tencent.com/npm/strip-ansi/-/strip-ansi-6.0.1.tgz",
  3371. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  3372. "dev": true,
  3373. "dependencies": {
  3374. "ansi-regex": "^5.0.1"
  3375. },
  3376. "engines": {
  3377. "node": ">=8"
  3378. }
  3379. },
  3380. "node_modules/strip-ansi": {
  3381. "version": "7.1.0",
  3382. "resolved": "https://mirrors.tencent.com/npm/strip-ansi/-/strip-ansi-7.1.0.tgz",
  3383. "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
  3384. "dev": true,
  3385. "dependencies": {
  3386. "ansi-regex": "^6.0.1"
  3387. },
  3388. "engines": {
  3389. "node": ">=12"
  3390. },
  3391. "funding": {
  3392. "url": "https://github.com/chalk/strip-ansi?sponsor=1"
  3393. }
  3394. },
  3395. "node_modules/strip-ansi-cjs": {
  3396. "name": "strip-ansi",
  3397. "version": "6.0.1",
  3398. "resolved": "https://mirrors.tencent.com/npm/strip-ansi/-/strip-ansi-6.0.1.tgz",
  3399. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  3400. "dev": true,
  3401. "dependencies": {
  3402. "ansi-regex": "^5.0.1"
  3403. },
  3404. "engines": {
  3405. "node": ">=8"
  3406. }
  3407. },
  3408. "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
  3409. "version": "5.0.1",
  3410. "resolved": "https://mirrors.tencent.com/npm/ansi-regex/-/ansi-regex-5.0.1.tgz",
  3411. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  3412. "dev": true,
  3413. "engines": {
  3414. "node": ">=8"
  3415. }
  3416. },
  3417. "node_modules/strip-final-newline": {
  3418. "version": "3.0.0",
  3419. "resolved": "https://mirrors.tencent.com/npm/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
  3420. "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
  3421. "dev": true,
  3422. "engines": {
  3423. "node": ">=12"
  3424. },
  3425. "funding": {
  3426. "url": "https://github.com/sponsors/sindresorhus"
  3427. }
  3428. },
  3429. "node_modules/strip-literal": {
  3430. "version": "3.0.0",
  3431. "resolved": "https://registry.npmmirror.com/strip-literal/-/strip-literal-3.0.0.tgz",
  3432. "integrity": "sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==",
  3433. "dev": true,
  3434. "license": "MIT",
  3435. "dependencies": {
  3436. "js-tokens": "^9.0.1"
  3437. },
  3438. "funding": {
  3439. "url": "https://github.com/sponsors/antfu"
  3440. }
  3441. },
  3442. "node_modules/sucrase": {
  3443. "version": "3.35.0",
  3444. "resolved": "https://mirrors.tencent.com/npm/sucrase/-/sucrase-3.35.0.tgz",
  3445. "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
  3446. "dev": true,
  3447. "dependencies": {
  3448. "@jridgewell/gen-mapping": "^0.3.2",
  3449. "commander": "^4.0.0",
  3450. "glob": "^10.3.10",
  3451. "lines-and-columns": "^1.1.6",
  3452. "mz": "^2.7.0",
  3453. "pirates": "^4.0.1",
  3454. "ts-interface-checker": "^0.1.9"
  3455. },
  3456. "bin": {
  3457. "sucrase": "bin/sucrase",
  3458. "sucrase-node": "bin/sucrase-node"
  3459. },
  3460. "engines": {
  3461. "node": ">=16 || 14 >=14.17"
  3462. }
  3463. },
  3464. "node_modules/superjson": {
  3465. "version": "2.2.2",
  3466. "resolved": "https://mirrors.tencent.com/npm/superjson/-/superjson-2.2.2.tgz",
  3467. "integrity": "sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==",
  3468. "dependencies": {
  3469. "copy-anything": "^3.0.2"
  3470. },
  3471. "engines": {
  3472. "node": ">=16"
  3473. }
  3474. },
  3475. "node_modules/supports-preserve-symlinks-flag": {
  3476. "version": "1.0.0",
  3477. "resolved": "https://mirrors.tencent.com/npm/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
  3478. "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
  3479. "dev": true,
  3480. "engines": {
  3481. "node": ">= 0.4"
  3482. },
  3483. "funding": {
  3484. "url": "https://github.com/sponsors/ljharb"
  3485. }
  3486. },
  3487. "node_modules/tailwindcss": {
  3488. "version": "3.4.17",
  3489. "resolved": "https://mirrors.tencent.com/npm/tailwindcss/-/tailwindcss-3.4.17.tgz",
  3490. "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==",
  3491. "dev": true,
  3492. "dependencies": {
  3493. "@alloc/quick-lru": "^5.2.0",
  3494. "arg": "^5.0.2",
  3495. "chokidar": "^3.6.0",
  3496. "didyoumean": "^1.2.2",
  3497. "dlv": "^1.1.3",
  3498. "fast-glob": "^3.3.2",
  3499. "glob-parent": "^6.0.2",
  3500. "is-glob": "^4.0.3",
  3501. "jiti": "^1.21.6",
  3502. "lilconfig": "^3.1.3",
  3503. "micromatch": "^4.0.8",
  3504. "normalize-path": "^3.0.0",
  3505. "object-hash": "^3.0.0",
  3506. "picocolors": "^1.1.1",
  3507. "postcss": "^8.4.47",
  3508. "postcss-import": "^15.1.0",
  3509. "postcss-js": "^4.0.1",
  3510. "postcss-load-config": "^4.0.2",
  3511. "postcss-nested": "^6.2.0",
  3512. "postcss-selector-parser": "^6.1.2",
  3513. "resolve": "^1.22.8",
  3514. "sucrase": "^3.35.0"
  3515. },
  3516. "bin": {
  3517. "tailwind": "lib/cli.js",
  3518. "tailwindcss": "lib/cli.js"
  3519. },
  3520. "engines": {
  3521. "node": ">=14.0.0"
  3522. }
  3523. },
  3524. "node_modules/tailwindcss/node_modules/chokidar": {
  3525. "version": "3.6.0",
  3526. "resolved": "https://mirrors.tencent.com/npm/chokidar/-/chokidar-3.6.0.tgz",
  3527. "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
  3528. "dev": true,
  3529. "dependencies": {
  3530. "anymatch": "~3.1.2",
  3531. "braces": "~3.0.2",
  3532. "glob-parent": "~5.1.2",
  3533. "is-binary-path": "~2.1.0",
  3534. "is-glob": "~4.0.1",
  3535. "normalize-path": "~3.0.0",
  3536. "readdirp": "~3.6.0"
  3537. },
  3538. "engines": {
  3539. "node": ">= 8.10.0"
  3540. },
  3541. "funding": {
  3542. "url": "https://paulmillr.com/funding/"
  3543. },
  3544. "optionalDependencies": {
  3545. "fsevents": "~2.3.2"
  3546. }
  3547. },
  3548. "node_modules/tailwindcss/node_modules/chokidar/node_modules/glob-parent": {
  3549. "version": "5.1.2",
  3550. "resolved": "https://mirrors.tencent.com/npm/glob-parent/-/glob-parent-5.1.2.tgz",
  3551. "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
  3552. "dev": true,
  3553. "dependencies": {
  3554. "is-glob": "^4.0.1"
  3555. },
  3556. "engines": {
  3557. "node": ">= 6"
  3558. }
  3559. },
  3560. "node_modules/tailwindcss/node_modules/readdirp": {
  3561. "version": "3.6.0",
  3562. "resolved": "https://mirrors.tencent.com/npm/readdirp/-/readdirp-3.6.0.tgz",
  3563. "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
  3564. "dev": true,
  3565. "dependencies": {
  3566. "picomatch": "^2.2.1"
  3567. },
  3568. "engines": {
  3569. "node": ">=8.10.0"
  3570. }
  3571. },
  3572. "node_modules/thenify": {
  3573. "version": "3.3.1",
  3574. "resolved": "https://mirrors.tencent.com/npm/thenify/-/thenify-3.3.1.tgz",
  3575. "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
  3576. "dev": true,
  3577. "dependencies": {
  3578. "any-promise": "^1.0.0"
  3579. }
  3580. },
  3581. "node_modules/thenify-all": {
  3582. "version": "1.6.0",
  3583. "resolved": "https://mirrors.tencent.com/npm/thenify-all/-/thenify-all-1.6.0.tgz",
  3584. "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
  3585. "dev": true,
  3586. "dependencies": {
  3587. "thenify": ">= 3.1.0 < 4"
  3588. },
  3589. "engines": {
  3590. "node": ">=0.8"
  3591. }
  3592. },
  3593. "node_modules/tinyglobby": {
  3594. "version": "0.2.12",
  3595. "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.12.tgz",
  3596. "integrity": "sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==",
  3597. "dev": true,
  3598. "license": "MIT",
  3599. "dependencies": {
  3600. "fdir": "^6.4.3",
  3601. "picomatch": "^4.0.2"
  3602. },
  3603. "engines": {
  3604. "node": ">=12.0.0"
  3605. },
  3606. "funding": {
  3607. "url": "https://github.com/sponsors/SuperchupuDev"
  3608. }
  3609. },
  3610. "node_modules/tinyglobby/node_modules/fdir": {
  3611. "version": "6.4.3",
  3612. "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.4.3.tgz",
  3613. "integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==",
  3614. "dev": true,
  3615. "license": "MIT",
  3616. "peerDependencies": {
  3617. "picomatch": "^3 || ^4"
  3618. },
  3619. "peerDependenciesMeta": {
  3620. "picomatch": {
  3621. "optional": true
  3622. }
  3623. }
  3624. },
  3625. "node_modules/tinyglobby/node_modules/picomatch": {
  3626. "version": "4.0.2",
  3627. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.2.tgz",
  3628. "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
  3629. "dev": true,
  3630. "license": "MIT",
  3631. "engines": {
  3632. "node": ">=12"
  3633. },
  3634. "funding": {
  3635. "url": "https://github.com/sponsors/jonschlinkert"
  3636. }
  3637. },
  3638. "node_modules/to-regex-range": {
  3639. "version": "5.0.1",
  3640. "resolved": "https://mirrors.tencent.com/npm/to-regex-range/-/to-regex-range-5.0.1.tgz",
  3641. "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
  3642. "dev": true,
  3643. "dependencies": {
  3644. "is-number": "^7.0.0"
  3645. },
  3646. "engines": {
  3647. "node": ">=8.0"
  3648. }
  3649. },
  3650. "node_modules/ts-interface-checker": {
  3651. "version": "0.1.13",
  3652. "resolved": "https://mirrors.tencent.com/npm/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
  3653. "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
  3654. "dev": true
  3655. },
  3656. "node_modules/tslib": {
  3657. "version": "2.3.0",
  3658. "resolved": "https://r.cnpmjs.org/tslib/-/tslib-2.3.0.tgz",
  3659. "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==",
  3660. "license": "0BSD"
  3661. },
  3662. "node_modules/ufo": {
  3663. "version": "1.5.4",
  3664. "resolved": "https://registry.npmmirror.com/ufo/-/ufo-1.5.4.tgz",
  3665. "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==",
  3666. "dev": true,
  3667. "license": "MIT"
  3668. },
  3669. "node_modules/unimport": {
  3670. "version": "4.1.2",
  3671. "resolved": "https://registry.npmmirror.com/unimport/-/unimport-4.1.2.tgz",
  3672. "integrity": "sha512-oVUL7PSlyVV3QRhsdcyYEMaDX8HJyS/CnUonEJTYA3//bWO+o/4gG8F7auGWWWkrrxBQBYOO8DKe+C53ktpRXw==",
  3673. "dev": true,
  3674. "license": "MIT",
  3675. "dependencies": {
  3676. "acorn": "^8.14.0",
  3677. "escape-string-regexp": "^5.0.0",
  3678. "estree-walker": "^3.0.3",
  3679. "local-pkg": "^1.0.0",
  3680. "magic-string": "^0.30.17",
  3681. "mlly": "^1.7.4",
  3682. "pathe": "^2.0.3",
  3683. "picomatch": "^4.0.2",
  3684. "pkg-types": "^1.3.1",
  3685. "scule": "^1.3.0",
  3686. "strip-literal": "^3.0.0",
  3687. "tinyglobby": "^0.2.11",
  3688. "unplugin": "^2.2.0",
  3689. "unplugin-utils": "^0.2.4"
  3690. },
  3691. "engines": {
  3692. "node": ">=18.12.0"
  3693. }
  3694. },
  3695. "node_modules/unimport/node_modules/estree-walker": {
  3696. "version": "3.0.3",
  3697. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-3.0.3.tgz",
  3698. "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
  3699. "dev": true,
  3700. "license": "MIT",
  3701. "dependencies": {
  3702. "@types/estree": "^1.0.0"
  3703. }
  3704. },
  3705. "node_modules/unimport/node_modules/picomatch": {
  3706. "version": "4.0.2",
  3707. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.2.tgz",
  3708. "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
  3709. "dev": true,
  3710. "license": "MIT",
  3711. "engines": {
  3712. "node": ">=12"
  3713. },
  3714. "funding": {
  3715. "url": "https://github.com/sponsors/jonschlinkert"
  3716. }
  3717. },
  3718. "node_modules/unplugin": {
  3719. "version": "2.2.0",
  3720. "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-2.2.0.tgz",
  3721. "integrity": "sha512-m1ekpSwuOT5hxkJeZGRxO7gXbXT3gF26NjQ7GdVHoLoF8/nopLcd/QfPigpCy7i51oFHiRJg/CyHhj4vs2+KGw==",
  3722. "dev": true,
  3723. "license": "MIT",
  3724. "dependencies": {
  3725. "acorn": "^8.14.0",
  3726. "webpack-virtual-modules": "^0.6.2"
  3727. },
  3728. "engines": {
  3729. "node": ">=18.12.0"
  3730. }
  3731. },
  3732. "node_modules/unplugin-auto-import": {
  3733. "version": "19.1.0",
  3734. "resolved": "https://registry.npmmirror.com/unplugin-auto-import/-/unplugin-auto-import-19.1.0.tgz",
  3735. "integrity": "sha512-B+TGBEBHqY9aR+7YfShfLujETOHstzpV+yaqgy5PkfV0QG7Py+TYMX7vJ9W4SrysHR+UzR+gzcx/nuZjmPeclA==",
  3736. "dev": true,
  3737. "license": "MIT",
  3738. "dependencies": {
  3739. "local-pkg": "^1.0.0",
  3740. "magic-string": "^0.30.17",
  3741. "picomatch": "^4.0.2",
  3742. "unimport": "^4.1.1",
  3743. "unplugin": "^2.2.0",
  3744. "unplugin-utils": "^0.2.4"
  3745. },
  3746. "engines": {
  3747. "node": ">=14"
  3748. },
  3749. "funding": {
  3750. "url": "https://github.com/sponsors/antfu"
  3751. },
  3752. "peerDependencies": {
  3753. "@nuxt/kit": "^3.2.2",
  3754. "@vueuse/core": "*"
  3755. },
  3756. "peerDependenciesMeta": {
  3757. "@nuxt/kit": {
  3758. "optional": true
  3759. },
  3760. "@vueuse/core": {
  3761. "optional": true
  3762. }
  3763. }
  3764. },
  3765. "node_modules/unplugin-auto-import/node_modules/picomatch": {
  3766. "version": "4.0.2",
  3767. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.2.tgz",
  3768. "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
  3769. "dev": true,
  3770. "license": "MIT",
  3771. "engines": {
  3772. "node": ">=12"
  3773. },
  3774. "funding": {
  3775. "url": "https://github.com/sponsors/jonschlinkert"
  3776. }
  3777. },
  3778. "node_modules/unplugin-utils": {
  3779. "version": "0.2.4",
  3780. "resolved": "https://registry.npmmirror.com/unplugin-utils/-/unplugin-utils-0.2.4.tgz",
  3781. "integrity": "sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==",
  3782. "dev": true,
  3783. "license": "MIT",
  3784. "dependencies": {
  3785. "pathe": "^2.0.2",
  3786. "picomatch": "^4.0.2"
  3787. },
  3788. "engines": {
  3789. "node": ">=18.12.0"
  3790. },
  3791. "funding": {
  3792. "url": "https://github.com/sponsors/sxzz"
  3793. }
  3794. },
  3795. "node_modules/unplugin-utils/node_modules/picomatch": {
  3796. "version": "4.0.2",
  3797. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.2.tgz",
  3798. "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
  3799. "dev": true,
  3800. "license": "MIT",
  3801. "engines": {
  3802. "node": ">=12"
  3803. },
  3804. "funding": {
  3805. "url": "https://github.com/sponsors/jonschlinkert"
  3806. }
  3807. },
  3808. "node_modules/unplugin-vue-components": {
  3809. "version": "28.4.0",
  3810. "resolved": "https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.4.0.tgz",
  3811. "integrity": "sha512-fnamX2RiKM30nPK4tihEas+bHnbLICo6MmOiP4jGg7fAlgNEuaLvN9yx96JwZDOYfLQcrNzikDdPhZ8k6pkhMg==",
  3812. "dev": true,
  3813. "license": "MIT",
  3814. "dependencies": {
  3815. "chokidar": "^3.6.0",
  3816. "debug": "^4.4.0",
  3817. "local-pkg": "^1.0.0",
  3818. "magic-string": "^0.30.17",
  3819. "mlly": "^1.7.4",
  3820. "tinyglobby": "^0.2.10",
  3821. "unplugin": "^2.2.0",
  3822. "unplugin-utils": "^0.2.4"
  3823. },
  3824. "engines": {
  3825. "node": ">=14"
  3826. },
  3827. "funding": {
  3828. "url": "https://github.com/sponsors/antfu"
  3829. },
  3830. "peerDependencies": {
  3831. "@babel/parser": "^7.15.8",
  3832. "@nuxt/kit": "^3.2.2",
  3833. "vue": "2 || 3"
  3834. },
  3835. "peerDependenciesMeta": {
  3836. "@babel/parser": {
  3837. "optional": true
  3838. },
  3839. "@nuxt/kit": {
  3840. "optional": true
  3841. }
  3842. }
  3843. },
  3844. "node_modules/unplugin-vue-components/node_modules/chokidar": {
  3845. "version": "3.6.0",
  3846. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.6.0.tgz",
  3847. "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
  3848. "dev": true,
  3849. "license": "MIT",
  3850. "dependencies": {
  3851. "anymatch": "~3.1.2",
  3852. "braces": "~3.0.2",
  3853. "glob-parent": "~5.1.2",
  3854. "is-binary-path": "~2.1.0",
  3855. "is-glob": "~4.0.1",
  3856. "normalize-path": "~3.0.0",
  3857. "readdirp": "~3.6.0"
  3858. },
  3859. "engines": {
  3860. "node": ">= 8.10.0"
  3861. },
  3862. "funding": {
  3863. "url": "https://paulmillr.com/funding/"
  3864. },
  3865. "optionalDependencies": {
  3866. "fsevents": "~2.3.2"
  3867. }
  3868. },
  3869. "node_modules/unplugin-vue-components/node_modules/glob-parent": {
  3870. "version": "5.1.2",
  3871. "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz",
  3872. "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
  3873. "dev": true,
  3874. "license": "ISC",
  3875. "dependencies": {
  3876. "is-glob": "^4.0.1"
  3877. },
  3878. "engines": {
  3879. "node": ">= 6"
  3880. }
  3881. },
  3882. "node_modules/unplugin-vue-components/node_modules/readdirp": {
  3883. "version": "3.6.0",
  3884. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz",
  3885. "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
  3886. "dev": true,
  3887. "license": "MIT",
  3888. "dependencies": {
  3889. "picomatch": "^2.2.1"
  3890. },
  3891. "engines": {
  3892. "node": ">=8.10.0"
  3893. }
  3894. },
  3895. "node_modules/update-browserslist-db": {
  3896. "version": "1.1.2",
  3897. "resolved": "https://mirrors.tencent.com/npm/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz",
  3898. "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==",
  3899. "dev": true,
  3900. "funding": [
  3901. {
  3902. "type": "opencollective",
  3903. "url": "https://opencollective.com/browserslist"
  3904. },
  3905. {
  3906. "type": "tidelift",
  3907. "url": "https://tidelift.com/funding/github/npm/browserslist"
  3908. },
  3909. {
  3910. "type": "github",
  3911. "url": "https://github.com/sponsors/ai"
  3912. }
  3913. ],
  3914. "dependencies": {
  3915. "escalade": "^3.2.0",
  3916. "picocolors": "^1.1.1"
  3917. },
  3918. "bin": {
  3919. "update-browserslist-db": "cli.js"
  3920. },
  3921. "peerDependencies": {
  3922. "browserslist": ">= 4.21.0"
  3923. }
  3924. },
  3925. "node_modules/util-deprecate": {
  3926. "version": "1.0.2",
  3927. "resolved": "https://mirrors.tencent.com/npm/util-deprecate/-/util-deprecate-1.0.2.tgz",
  3928. "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
  3929. "dev": true
  3930. },
  3931. "node_modules/vite": {
  3932. "version": "5.4.7",
  3933. "resolved": "https://r.cnpmjs.org/vite/-/vite-5.4.7.tgz",
  3934. "integrity": "sha512-5l2zxqMEPVENgvzTuBpHer2awaetimj2BGkhBPdnwKbPNOlHsODU+oiazEZzLK7KhAnOrO+XGYJYn4ZlUhDtDQ==",
  3935. "dev": true,
  3936. "license": "MIT",
  3937. "dependencies": {
  3938. "esbuild": "^0.21.3",
  3939. "postcss": "^8.4.43",
  3940. "rollup": "^4.20.0"
  3941. },
  3942. "bin": {
  3943. "vite": "bin/vite.js"
  3944. },
  3945. "engines": {
  3946. "node": "^18.0.0 || >=20.0.0"
  3947. },
  3948. "funding": {
  3949. "url": "https://github.com/vitejs/vite?sponsor=1"
  3950. },
  3951. "optionalDependencies": {
  3952. "fsevents": "~2.3.3"
  3953. },
  3954. "peerDependencies": {
  3955. "@types/node": "^18.0.0 || >=20.0.0",
  3956. "less": "*",
  3957. "lightningcss": "^1.21.0",
  3958. "sass": "*",
  3959. "sass-embedded": "*",
  3960. "stylus": "*",
  3961. "sugarss": "*",
  3962. "terser": "^5.4.0"
  3963. },
  3964. "peerDependenciesMeta": {
  3965. "@types/node": {
  3966. "optional": true
  3967. },
  3968. "less": {
  3969. "optional": true
  3970. },
  3971. "lightningcss": {
  3972. "optional": true
  3973. },
  3974. "sass": {
  3975. "optional": true
  3976. },
  3977. "sass-embedded": {
  3978. "optional": true
  3979. },
  3980. "stylus": {
  3981. "optional": true
  3982. },
  3983. "sugarss": {
  3984. "optional": true
  3985. },
  3986. "terser": {
  3987. "optional": true
  3988. }
  3989. }
  3990. },
  3991. "node_modules/vue": {
  3992. "version": "3.5.13",
  3993. "resolved": "https://mirrors.tencent.com/npm/vue/-/vue-3.5.13.tgz",
  3994. "integrity": "sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==",
  3995. "dependencies": {
  3996. "@vue/compiler-dom": "3.5.13",
  3997. "@vue/compiler-sfc": "3.5.13",
  3998. "@vue/runtime-dom": "3.5.13",
  3999. "@vue/server-renderer": "3.5.13",
  4000. "@vue/shared": "3.5.13"
  4001. },
  4002. "peerDependencies": {
  4003. "typescript": "*"
  4004. },
  4005. "peerDependenciesMeta": {
  4006. "typescript": {
  4007. "optional": true
  4008. }
  4009. }
  4010. },
  4011. "node_modules/vue-count-to": {
  4012. "version": "1.0.13",
  4013. "resolved": "https://mirrors.tencent.com/npm/vue-count-to/-/vue-count-to-1.0.13.tgz",
  4014. "integrity": "sha512-6R4OVBVNtQTlcbXu6SJ8ENR35M2/CdWt3Jmv57jOUM+1ojiFmjVGvZPH8DfHpMDSA+ITs+EW5V6qthADxeyYOQ=="
  4015. },
  4016. "node_modules/vue-router": {
  4017. "version": "4.5.0",
  4018. "resolved": "https://mirrors.tencent.com/npm/vue-router/-/vue-router-4.5.0.tgz",
  4019. "integrity": "sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==",
  4020. "dependencies": {
  4021. "@vue/devtools-api": "^6.6.4"
  4022. },
  4023. "funding": {
  4024. "url": "https://github.com/sponsors/posva"
  4025. },
  4026. "peerDependencies": {
  4027. "vue": "^3.2.0"
  4028. }
  4029. },
  4030. "node_modules/vue-router/node_modules/@vue/devtools-api": {
  4031. "version": "6.6.4",
  4032. "resolved": "https://mirrors.tencent.com/npm/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
  4033. "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g=="
  4034. },
  4035. "node_modules/vue3-count-to": {
  4036. "version": "1.1.2",
  4037. "resolved": "https://mirrors.tencent.com/npm/vue3-count-to/-/vue3-count-to-1.1.2.tgz",
  4038. "integrity": "sha512-C5AvlcGfyM4XvFqPDkni94rqGd5K/+RB+B4xv/1NQx3RrdC+GvXPFzeXW5hWL/jh8ehWLm4LITyK0eMKf4iJbg==",
  4039. "dependencies": {
  4040. "core-js": "^3.8.1",
  4041. "vue-count-to": "^1.0.13"
  4042. },
  4043. "peerDependencies": {
  4044. "vue": ">= 3 < 4"
  4045. }
  4046. },
  4047. "node_modules/webpack-virtual-modules": {
  4048. "version": "0.6.2",
  4049. "resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
  4050. "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
  4051. "dev": true,
  4052. "license": "MIT"
  4053. },
  4054. "node_modules/which": {
  4055. "version": "2.0.2",
  4056. "resolved": "https://mirrors.tencent.com/npm/which/-/which-2.0.2.tgz",
  4057. "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
  4058. "dev": true,
  4059. "dependencies": {
  4060. "isexe": "^2.0.0"
  4061. },
  4062. "bin": {
  4063. "node-which": "bin/node-which"
  4064. },
  4065. "engines": {
  4066. "node": ">= 8"
  4067. }
  4068. },
  4069. "node_modules/wrap-ansi": {
  4070. "version": "8.1.0",
  4071. "resolved": "https://mirrors.tencent.com/npm/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
  4072. "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
  4073. "dev": true,
  4074. "dependencies": {
  4075. "ansi-styles": "^6.1.0",
  4076. "string-width": "^5.0.1",
  4077. "strip-ansi": "^7.0.1"
  4078. },
  4079. "engines": {
  4080. "node": ">=12"
  4081. },
  4082. "funding": {
  4083. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  4084. }
  4085. },
  4086. "node_modules/wrap-ansi-cjs": {
  4087. "name": "wrap-ansi",
  4088. "version": "7.0.0",
  4089. "resolved": "https://mirrors.tencent.com/npm/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
  4090. "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
  4091. "dev": true,
  4092. "dependencies": {
  4093. "ansi-styles": "^4.0.0",
  4094. "string-width": "^4.1.0",
  4095. "strip-ansi": "^6.0.0"
  4096. },
  4097. "engines": {
  4098. "node": ">=10"
  4099. },
  4100. "funding": {
  4101. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  4102. }
  4103. },
  4104. "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
  4105. "version": "5.0.1",
  4106. "resolved": "https://mirrors.tencent.com/npm/ansi-regex/-/ansi-regex-5.0.1.tgz",
  4107. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  4108. "dev": true,
  4109. "engines": {
  4110. "node": ">=8"
  4111. }
  4112. },
  4113. "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
  4114. "version": "4.3.0",
  4115. "resolved": "https://mirrors.tencent.com/npm/ansi-styles/-/ansi-styles-4.3.0.tgz",
  4116. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  4117. "dev": true,
  4118. "dependencies": {
  4119. "color-convert": "^2.0.1"
  4120. },
  4121. "engines": {
  4122. "node": ">=8"
  4123. },
  4124. "funding": {
  4125. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  4126. }
  4127. },
  4128. "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
  4129. "version": "8.0.0",
  4130. "resolved": "https://mirrors.tencent.com/npm/emoji-regex/-/emoji-regex-8.0.0.tgz",
  4131. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  4132. "dev": true
  4133. },
  4134. "node_modules/wrap-ansi-cjs/node_modules/string-width": {
  4135. "version": "4.2.3",
  4136. "resolved": "https://mirrors.tencent.com/npm/string-width/-/string-width-4.2.3.tgz",
  4137. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  4138. "dev": true,
  4139. "dependencies": {
  4140. "emoji-regex": "^8.0.0",
  4141. "is-fullwidth-code-point": "^3.0.0",
  4142. "strip-ansi": "^6.0.1"
  4143. },
  4144. "engines": {
  4145. "node": ">=8"
  4146. }
  4147. },
  4148. "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
  4149. "version": "6.0.1",
  4150. "resolved": "https://mirrors.tencent.com/npm/strip-ansi/-/strip-ansi-6.0.1.tgz",
  4151. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  4152. "dev": true,
  4153. "dependencies": {
  4154. "ansi-regex": "^5.0.1"
  4155. },
  4156. "engines": {
  4157. "node": ">=8"
  4158. }
  4159. },
  4160. "node_modules/yaml": {
  4161. "version": "2.7.0",
  4162. "resolved": "https://mirrors.tencent.com/npm/yaml/-/yaml-2.7.0.tgz",
  4163. "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==",
  4164. "dev": true,
  4165. "bin": {
  4166. "yaml": "bin.mjs"
  4167. },
  4168. "engines": {
  4169. "node": ">= 14"
  4170. }
  4171. },
  4172. "node_modules/zrender": {
  4173. "version": "5.6.0",
  4174. "resolved": "https://r.cnpmjs.org/zrender/-/zrender-5.6.0.tgz",
  4175. "integrity": "sha512-uzgraf4njmmHAbEUxMJ8Oxg+P3fT04O+9p7gY+wJRVxo8Ge+KmYv0WJev945EH4wFuc4OY2NLXz46FZrWS9xJg==",
  4176. "license": "BSD-3-Clause",
  4177. "dependencies": {
  4178. "tslib": "2.3.0"
  4179. }
  4180. }
  4181. }
  4182. }