pnpm-lock.yaml 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. element-plus:
  9. specifier: ^2.7.3
  10. version: 2.7.3(vue@3.4.27(typescript@5.4.5))
  11. pinia:
  12. specifier: ^2.1.7
  13. version: 2.1.7(typescript@5.4.5)(vue@3.4.27(typescript@5.4.5))
  14. vue:
  15. specifier: ^3.4.21
  16. version: 3.4.27(typescript@5.4.5)
  17. vue-pdf-embed:
  18. specifier: ^2.0.3
  19. version: 2.0.3(vue@3.4.27(typescript@5.4.5))
  20. vue-router:
  21. specifier: ^4.3.0
  22. version: 4.3.2(vue@3.4.27(typescript@5.4.5))
  23. devDependencies:
  24. '@tsconfig/node20':
  25. specifier: ^20.1.4
  26. version: 20.1.4
  27. '@types/node':
  28. specifier: ^20.12.5
  29. version: 20.12.12
  30. '@vitejs/plugin-vue':
  31. specifier: ^5.0.4
  32. version: 5.0.4(vite@5.2.11(@types/node@20.12.12)(sass@1.77.2))(vue@3.4.27(typescript@5.4.5))
  33. '@vitejs/plugin-vue-jsx':
  34. specifier: ^3.1.0
  35. version: 3.1.0(vite@5.2.11(@types/node@20.12.12)(sass@1.77.2))(vue@3.4.27(typescript@5.4.5))
  36. '@vue/tsconfig':
  37. specifier: ^0.5.1
  38. version: 0.5.1
  39. npm-run-all2:
  40. specifier: ^6.1.2
  41. version: 6.2.0
  42. sass:
  43. specifier: ^1.77.1
  44. version: 1.77.2
  45. typescript:
  46. specifier: ~5.4.0
  47. version: 5.4.5
  48. unplugin-auto-import:
  49. specifier: ^0.17.6
  50. version: 0.17.6(@vueuse/core@9.13.0(vue@3.4.27(typescript@5.4.5)))(rollup@4.18.0)
  51. unplugin-vue-components:
  52. specifier: ^0.27.0
  53. version: 0.27.0(@babel/parser@7.24.6)(rollup@4.18.0)(vue@3.4.27(typescript@5.4.5))
  54. vite:
  55. specifier: ^5.2.8
  56. version: 5.2.11(@types/node@20.12.12)(sass@1.77.2)
  57. vue-tsc:
  58. specifier: ^2.0.11
  59. version: 2.0.19(typescript@5.4.5)
  60. packages:
  61. '@ampproject/remapping@2.3.0':
  62. resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
  63. engines: {node: '>=6.0.0'}
  64. '@antfu/utils@0.7.8':
  65. resolution: {integrity: sha512-rWQkqXRESdjXtc+7NRfK9lASQjpXJu1ayp7qi1d23zZorY+wBHVLHHoVcMsEnkqEBWTFqbztO7/QdJFzyEcLTg==}
  66. '@babel/code-frame@7.24.6':
  67. resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==}
  68. engines: {node: '>=6.9.0'}
  69. '@babel/compat-data@7.24.6':
  70. resolution: {integrity: sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==}
  71. engines: {node: '>=6.9.0'}
  72. '@babel/core@7.24.6':
  73. resolution: {integrity: sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==}
  74. engines: {node: '>=6.9.0'}
  75. '@babel/generator@7.24.6':
  76. resolution: {integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==}
  77. engines: {node: '>=6.9.0'}
  78. '@babel/helper-annotate-as-pure@7.24.6':
  79. resolution: {integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==}
  80. engines: {node: '>=6.9.0'}
  81. '@babel/helper-compilation-targets@7.24.6':
  82. resolution: {integrity: sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==}
  83. engines: {node: '>=6.9.0'}
  84. '@babel/helper-create-class-features-plugin@7.24.6':
  85. resolution: {integrity: sha512-djsosdPJVZE6Vsw3kk7IPRWethP94WHGOhQTc67SNXE0ZzMhHgALw8iGmYS0TD1bbMM0VDROy43od7/hN6WYcA==}
  86. engines: {node: '>=6.9.0'}
  87. peerDependencies:
  88. '@babel/core': ^7.0.0
  89. '@babel/helper-environment-visitor@7.24.6':
  90. resolution: {integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==}
  91. engines: {node: '>=6.9.0'}
  92. '@babel/helper-function-name@7.24.6':
  93. resolution: {integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==}
  94. engines: {node: '>=6.9.0'}
  95. '@babel/helper-hoist-variables@7.24.6':
  96. resolution: {integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==}
  97. engines: {node: '>=6.9.0'}
  98. '@babel/helper-member-expression-to-functions@7.24.6':
  99. resolution: {integrity: sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg==}
  100. engines: {node: '>=6.9.0'}
  101. '@babel/helper-module-imports@7.22.15':
  102. resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
  103. engines: {node: '>=6.9.0'}
  104. '@babel/helper-module-imports@7.24.6':
  105. resolution: {integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==}
  106. engines: {node: '>=6.9.0'}
  107. '@babel/helper-module-transforms@7.24.6':
  108. resolution: {integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==}
  109. engines: {node: '>=6.9.0'}
  110. peerDependencies:
  111. '@babel/core': ^7.0.0
  112. '@babel/helper-optimise-call-expression@7.24.6':
  113. resolution: {integrity: sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA==}
  114. engines: {node: '>=6.9.0'}
  115. '@babel/helper-plugin-utils@7.24.6':
  116. resolution: {integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==}
  117. engines: {node: '>=6.9.0'}
  118. '@babel/helper-replace-supers@7.24.6':
  119. resolution: {integrity: sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ==}
  120. engines: {node: '>=6.9.0'}
  121. peerDependencies:
  122. '@babel/core': ^7.0.0
  123. '@babel/helper-simple-access@7.24.6':
  124. resolution: {integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==}
  125. engines: {node: '>=6.9.0'}
  126. '@babel/helper-skip-transparent-expression-wrappers@7.24.6':
  127. resolution: {integrity: sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==}
  128. engines: {node: '>=6.9.0'}
  129. '@babel/helper-split-export-declaration@7.24.6':
  130. resolution: {integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==}
  131. engines: {node: '>=6.9.0'}
  132. '@babel/helper-string-parser@7.24.6':
  133. resolution: {integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==}
  134. engines: {node: '>=6.9.0'}
  135. '@babel/helper-validator-identifier@7.24.6':
  136. resolution: {integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==}
  137. engines: {node: '>=6.9.0'}
  138. '@babel/helper-validator-option@7.24.6':
  139. resolution: {integrity: sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==}
  140. engines: {node: '>=6.9.0'}
  141. '@babel/helpers@7.24.6':
  142. resolution: {integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==}
  143. engines: {node: '>=6.9.0'}
  144. '@babel/highlight@7.24.6':
  145. resolution: {integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==}
  146. engines: {node: '>=6.9.0'}
  147. '@babel/parser@7.24.6':
  148. resolution: {integrity: sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==}
  149. engines: {node: '>=6.0.0'}
  150. hasBin: true
  151. '@babel/plugin-syntax-jsx@7.24.6':
  152. resolution: {integrity: sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw==}
  153. engines: {node: '>=6.9.0'}
  154. peerDependencies:
  155. '@babel/core': ^7.0.0-0
  156. '@babel/plugin-syntax-typescript@7.24.6':
  157. resolution: {integrity: sha512-TzCtxGgVTEJWWwcYwQhCIQ6WaKlo80/B+Onsk4RRCcYqpYGFcG9etPW94VToGte5AAcxRrhjPUFvUS3Y2qKi4A==}
  158. engines: {node: '>=6.9.0'}
  159. peerDependencies:
  160. '@babel/core': ^7.0.0-0
  161. '@babel/plugin-transform-typescript@7.24.6':
  162. resolution: {integrity: sha512-H0i+hDLmaYYSt6KU9cZE0gb3Cbssa/oxWis7PX4ofQzbvsfix9Lbh8SRk7LCPDlLWJHUiFeHU0qRRpF/4Zv7mQ==}
  163. engines: {node: '>=6.9.0'}
  164. peerDependencies:
  165. '@babel/core': ^7.0.0-0
  166. '@babel/template@7.24.6':
  167. resolution: {integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==}
  168. engines: {node: '>=6.9.0'}
  169. '@babel/traverse@7.24.6':
  170. resolution: {integrity: sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==}
  171. engines: {node: '>=6.9.0'}
  172. '@babel/types@7.24.6':
  173. resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==}
  174. engines: {node: '>=6.9.0'}
  175. '@ctrl/tinycolor@3.6.1':
  176. resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
  177. engines: {node: '>=10'}
  178. '@element-plus/icons-vue@2.3.1':
  179. resolution: {integrity: sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==}
  180. peerDependencies:
  181. vue: ^3.2.0
  182. '@esbuild/aix-ppc64@0.20.2':
  183. resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
  184. engines: {node: '>=12'}
  185. cpu: [ppc64]
  186. os: [aix]
  187. '@esbuild/android-arm64@0.20.2':
  188. resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
  189. engines: {node: '>=12'}
  190. cpu: [arm64]
  191. os: [android]
  192. '@esbuild/android-arm@0.20.2':
  193. resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
  194. engines: {node: '>=12'}
  195. cpu: [arm]
  196. os: [android]
  197. '@esbuild/android-x64@0.20.2':
  198. resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
  199. engines: {node: '>=12'}
  200. cpu: [x64]
  201. os: [android]
  202. '@esbuild/darwin-arm64@0.20.2':
  203. resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
  204. engines: {node: '>=12'}
  205. cpu: [arm64]
  206. os: [darwin]
  207. '@esbuild/darwin-x64@0.20.2':
  208. resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
  209. engines: {node: '>=12'}
  210. cpu: [x64]
  211. os: [darwin]
  212. '@esbuild/freebsd-arm64@0.20.2':
  213. resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
  214. engines: {node: '>=12'}
  215. cpu: [arm64]
  216. os: [freebsd]
  217. '@esbuild/freebsd-x64@0.20.2':
  218. resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
  219. engines: {node: '>=12'}
  220. cpu: [x64]
  221. os: [freebsd]
  222. '@esbuild/linux-arm64@0.20.2':
  223. resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
  224. engines: {node: '>=12'}
  225. cpu: [arm64]
  226. os: [linux]
  227. '@esbuild/linux-arm@0.20.2':
  228. resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
  229. engines: {node: '>=12'}
  230. cpu: [arm]
  231. os: [linux]
  232. '@esbuild/linux-ia32@0.20.2':
  233. resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
  234. engines: {node: '>=12'}
  235. cpu: [ia32]
  236. os: [linux]
  237. '@esbuild/linux-loong64@0.20.2':
  238. resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
  239. engines: {node: '>=12'}
  240. cpu: [loong64]
  241. os: [linux]
  242. '@esbuild/linux-mips64el@0.20.2':
  243. resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
  244. engines: {node: '>=12'}
  245. cpu: [mips64el]
  246. os: [linux]
  247. '@esbuild/linux-ppc64@0.20.2':
  248. resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
  249. engines: {node: '>=12'}
  250. cpu: [ppc64]
  251. os: [linux]
  252. '@esbuild/linux-riscv64@0.20.2':
  253. resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
  254. engines: {node: '>=12'}
  255. cpu: [riscv64]
  256. os: [linux]
  257. '@esbuild/linux-s390x@0.20.2':
  258. resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
  259. engines: {node: '>=12'}
  260. cpu: [s390x]
  261. os: [linux]
  262. '@esbuild/linux-x64@0.20.2':
  263. resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
  264. engines: {node: '>=12'}
  265. cpu: [x64]
  266. os: [linux]
  267. '@esbuild/netbsd-x64@0.20.2':
  268. resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
  269. engines: {node: '>=12'}
  270. cpu: [x64]
  271. os: [netbsd]
  272. '@esbuild/openbsd-x64@0.20.2':
  273. resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
  274. engines: {node: '>=12'}
  275. cpu: [x64]
  276. os: [openbsd]
  277. '@esbuild/sunos-x64@0.20.2':
  278. resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
  279. engines: {node: '>=12'}
  280. cpu: [x64]
  281. os: [sunos]
  282. '@esbuild/win32-arm64@0.20.2':
  283. resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
  284. engines: {node: '>=12'}
  285. cpu: [arm64]
  286. os: [win32]
  287. '@esbuild/win32-ia32@0.20.2':
  288. resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
  289. engines: {node: '>=12'}
  290. cpu: [ia32]
  291. os: [win32]
  292. '@esbuild/win32-x64@0.20.2':
  293. resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
  294. engines: {node: '>=12'}
  295. cpu: [x64]
  296. os: [win32]
  297. '@floating-ui/core@1.6.2':
  298. resolution: {integrity: sha512-+2XpQV9LLZeanU4ZevzRnGFg2neDeKHgFLjP6YLW+tly0IvrhqT4u8enLGjLH3qeh85g19xY5rsAusfwTdn5lg==}
  299. '@floating-ui/dom@1.6.5':
  300. resolution: {integrity: sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==}
  301. '@floating-ui/utils@0.2.2':
  302. resolution: {integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==}
  303. '@jridgewell/gen-mapping@0.3.5':
  304. resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
  305. engines: {node: '>=6.0.0'}
  306. '@jridgewell/resolve-uri@3.1.2':
  307. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  308. engines: {node: '>=6.0.0'}
  309. '@jridgewell/set-array@1.2.1':
  310. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  311. engines: {node: '>=6.0.0'}
  312. '@jridgewell/sourcemap-codec@1.4.15':
  313. resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
  314. '@jridgewell/trace-mapping@0.3.25':
  315. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  316. '@mapbox/node-pre-gyp@1.0.11':
  317. resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
  318. hasBin: true
  319. '@nodelib/fs.scandir@2.1.5':
  320. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  321. engines: {node: '>= 8'}
  322. '@nodelib/fs.stat@2.0.5':
  323. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  324. engines: {node: '>= 8'}
  325. '@nodelib/fs.walk@1.2.8':
  326. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  327. engines: {node: '>= 8'}
  328. '@rollup/pluginutils@5.1.0':
  329. resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
  330. engines: {node: '>=14.0.0'}
  331. peerDependencies:
  332. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  333. peerDependenciesMeta:
  334. rollup:
  335. optional: true
  336. '@rollup/rollup-android-arm-eabi@4.18.0':
  337. resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==}
  338. cpu: [arm]
  339. os: [android]
  340. '@rollup/rollup-android-arm64@4.18.0':
  341. resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==}
  342. cpu: [arm64]
  343. os: [android]
  344. '@rollup/rollup-darwin-arm64@4.18.0':
  345. resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==}
  346. cpu: [arm64]
  347. os: [darwin]
  348. '@rollup/rollup-darwin-x64@4.18.0':
  349. resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==}
  350. cpu: [x64]
  351. os: [darwin]
  352. '@rollup/rollup-linux-arm-gnueabihf@4.18.0':
  353. resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==}
  354. cpu: [arm]
  355. os: [linux]
  356. libc: [glibc]
  357. '@rollup/rollup-linux-arm-musleabihf@4.18.0':
  358. resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==}
  359. cpu: [arm]
  360. os: [linux]
  361. libc: [musl]
  362. '@rollup/rollup-linux-arm64-gnu@4.18.0':
  363. resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==}
  364. cpu: [arm64]
  365. os: [linux]
  366. libc: [glibc]
  367. '@rollup/rollup-linux-arm64-musl@4.18.0':
  368. resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==}
  369. cpu: [arm64]
  370. os: [linux]
  371. libc: [musl]
  372. '@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
  373. resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==}
  374. cpu: [ppc64]
  375. os: [linux]
  376. libc: [glibc]
  377. '@rollup/rollup-linux-riscv64-gnu@4.18.0':
  378. resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==}
  379. cpu: [riscv64]
  380. os: [linux]
  381. libc: [glibc]
  382. '@rollup/rollup-linux-s390x-gnu@4.18.0':
  383. resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==}
  384. cpu: [s390x]
  385. os: [linux]
  386. libc: [glibc]
  387. '@rollup/rollup-linux-x64-gnu@4.18.0':
  388. resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==}
  389. cpu: [x64]
  390. os: [linux]
  391. libc: [glibc]
  392. '@rollup/rollup-linux-x64-musl@4.18.0':
  393. resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==}
  394. cpu: [x64]
  395. os: [linux]
  396. libc: [musl]
  397. '@rollup/rollup-win32-arm64-msvc@4.18.0':
  398. resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==}
  399. cpu: [arm64]
  400. os: [win32]
  401. '@rollup/rollup-win32-ia32-msvc@4.18.0':
  402. resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==}
  403. cpu: [ia32]
  404. os: [win32]
  405. '@rollup/rollup-win32-x64-msvc@4.18.0':
  406. resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==}
  407. cpu: [x64]
  408. os: [win32]
  409. '@sxzz/popperjs-es@2.11.7':
  410. resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==}
  411. '@tsconfig/node20@20.1.4':
  412. resolution: {integrity: sha512-sqgsT69YFeLWf5NtJ4Xq/xAF8p4ZQHlmGW74Nu2tD4+g5fAsposc4ZfaaPixVu4y01BEiDCWLRDCvDM5JOsRxg==}
  413. '@types/estree@1.0.5':
  414. resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
  415. '@types/lodash-es@4.17.12':
  416. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  417. '@types/lodash@4.17.4':
  418. resolution: {integrity: sha512-wYCP26ZLxaT3R39kiN2+HcJ4kTd3U1waI/cY7ivWYqFP6pW3ZNpvi6Wd6PHZx7T/t8z0vlkXMg3QYLa7DZ/IJQ==}
  419. '@types/node@20.12.12':
  420. resolution: {integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==}
  421. '@types/web-bluetooth@0.0.16':
  422. resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==}
  423. '@vitejs/plugin-vue-jsx@3.1.0':
  424. resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
  425. engines: {node: ^14.18.0 || >=16.0.0}
  426. peerDependencies:
  427. vite: ^4.0.0 || ^5.0.0
  428. vue: ^3.0.0
  429. '@vitejs/plugin-vue@5.0.4':
  430. resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==}
  431. engines: {node: ^18.0.0 || >=20.0.0}
  432. peerDependencies:
  433. vite: ^5.0.0
  434. vue: ^3.2.25
  435. '@volar/language-core@2.2.5':
  436. resolution: {integrity: sha512-2htyAuxRrAgETmFeUhT4XLELk3LiEcqoW/B8YUXMF6BrGWLMwIR09MFaZYvrA2UhbdAeSyeQ726HaWSWkexUcQ==}
  437. '@volar/source-map@2.2.5':
  438. resolution: {integrity: sha512-wrOEIiZNf4E+PWB0AxyM4tfhkfldPsb3bxg8N6FHrxJH2ohar7aGu48e98bp3pR9HUA7P/pR9VrLmkTrgCCnWQ==}
  439. '@volar/typescript@2.2.5':
  440. resolution: {integrity: sha512-eSV/n75+ppfEVugMC/salZsI44nXDPAyL6+iTYCNLtiLHGJsnMv9GwiDMujrvAUj/aLQyqRJgYtXRoxop2clCw==}
  441. '@vue/babel-helper-vue-transform-on@1.2.2':
  442. resolution: {integrity: sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==}
  443. '@vue/babel-plugin-jsx@1.2.2':
  444. resolution: {integrity: sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==}
  445. peerDependencies:
  446. '@babel/core': ^7.0.0-0
  447. peerDependenciesMeta:
  448. '@babel/core':
  449. optional: true
  450. '@vue/babel-plugin-resolve-type@1.2.2':
  451. resolution: {integrity: sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==}
  452. peerDependencies:
  453. '@babel/core': ^7.0.0-0
  454. '@vue/compiler-core@3.4.27':
  455. resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==}
  456. '@vue/compiler-dom@3.4.27':
  457. resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==}
  458. '@vue/compiler-sfc@3.4.27':
  459. resolution: {integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==}
  460. '@vue/compiler-ssr@3.4.27':
  461. resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==}
  462. '@vue/devtools-api@6.6.1':
  463. resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
  464. '@vue/language-core@2.0.19':
  465. resolution: {integrity: sha512-A9EGOnvb51jOvnCYoRLnMP+CcoPlbZVxI9gZXE/y2GksRWM6j/PrLEIC++pnosWTN08tFpJgxhSS//E9v/Sg+Q==}
  466. peerDependencies:
  467. typescript: '*'
  468. peerDependenciesMeta:
  469. typescript:
  470. optional: true
  471. '@vue/reactivity@3.4.27':
  472. resolution: {integrity: sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==}
  473. '@vue/runtime-core@3.4.27':
  474. resolution: {integrity: sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==}
  475. '@vue/runtime-dom@3.4.27':
  476. resolution: {integrity: sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==}
  477. '@vue/server-renderer@3.4.27':
  478. resolution: {integrity: sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==}
  479. peerDependencies:
  480. vue: 3.4.27
  481. '@vue/shared@3.4.27':
  482. resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==}
  483. '@vue/tsconfig@0.5.1':
  484. resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==}
  485. '@vueuse/core@9.13.0':
  486. resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==}
  487. '@vueuse/metadata@9.13.0':
  488. resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==}
  489. '@vueuse/shared@9.13.0':
  490. resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==}
  491. abbrev@1.1.1:
  492. resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
  493. acorn@8.11.3:
  494. resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
  495. engines: {node: '>=0.4.0'}
  496. hasBin: true
  497. agent-base@6.0.2:
  498. resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
  499. engines: {node: '>= 6.0.0'}
  500. ansi-regex@5.0.1:
  501. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  502. engines: {node: '>=8'}
  503. ansi-styles@3.2.1:
  504. resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
  505. engines: {node: '>=4'}
  506. ansi-styles@6.2.1:
  507. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  508. engines: {node: '>=12'}
  509. anymatch@3.1.3:
  510. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  511. engines: {node: '>= 8'}
  512. aproba@2.0.0:
  513. resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
  514. are-we-there-yet@2.0.0:
  515. resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==}
  516. engines: {node: '>=10'}
  517. async-validator@4.2.5:
  518. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  519. balanced-match@1.0.2:
  520. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  521. binary-extensions@2.3.0:
  522. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  523. engines: {node: '>=8'}
  524. brace-expansion@1.1.11:
  525. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  526. brace-expansion@2.0.1:
  527. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  528. braces@3.0.3:
  529. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  530. engines: {node: '>=8'}
  531. browserslist@4.23.0:
  532. resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
  533. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  534. hasBin: true
  535. camelcase@6.3.0:
  536. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  537. engines: {node: '>=10'}
  538. caniuse-lite@1.0.30001621:
  539. resolution: {integrity: sha512-+NLXZiviFFKX0fk8Piwv3PfLPGtRqJeq2TiNoUff/qB5KJgwecJTvCXDpmlyP/eCI/GUEmp/h/y5j0yckiiZrA==}
  540. canvas@2.11.2:
  541. resolution: {integrity: sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==}
  542. engines: {node: '>=6'}
  543. chalk@2.4.2:
  544. resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
  545. engines: {node: '>=4'}
  546. chokidar@3.6.0:
  547. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  548. engines: {node: '>= 8.10.0'}
  549. chownr@2.0.0:
  550. resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
  551. engines: {node: '>=10'}
  552. color-convert@1.9.3:
  553. resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
  554. color-name@1.1.3:
  555. resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
  556. color-support@1.1.3:
  557. resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
  558. hasBin: true
  559. computeds@0.0.1:
  560. resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==}
  561. concat-map@0.0.1:
  562. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  563. confbox@0.1.7:
  564. resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
  565. console-control-strings@1.1.0:
  566. resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
  567. convert-source-map@2.0.0:
  568. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  569. cross-spawn@7.0.3:
  570. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  571. engines: {node: '>= 8'}
  572. csstype@3.1.3:
  573. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  574. dayjs@1.11.11:
  575. resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==}
  576. de-indent@1.0.2:
  577. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  578. debug@4.3.4:
  579. resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
  580. engines: {node: '>=6.0'}
  581. peerDependencies:
  582. supports-color: '*'
  583. peerDependenciesMeta:
  584. supports-color:
  585. optional: true
  586. decompress-response@4.2.1:
  587. resolution: {integrity: sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==}
  588. engines: {node: '>=8'}
  589. delegates@1.0.0:
  590. resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
  591. detect-libc@2.0.3:
  592. resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
  593. engines: {node: '>=8'}
  594. electron-to-chromium@1.4.783:
  595. resolution: {integrity: sha512-bT0jEz/Xz1fahQpbZ1D7LgmPYZ3iHVY39NcWWro1+hA2IvjiPeaXtfSqrQ+nXjApMvQRE2ASt1itSLRrebHMRQ==}
  596. element-plus@2.7.3:
  597. resolution: {integrity: sha512-OaqY1kQ2xzNyRFyge3fzM7jqMwux+464RBEqd+ybRV9xPiGxtgnj/sVK4iEbnKnzQIa9XK03DOIFzoToUhu1DA==}
  598. peerDependencies:
  599. vue: ^3.2.0
  600. emoji-regex@8.0.0:
  601. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  602. entities@4.5.0:
  603. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  604. engines: {node: '>=0.12'}
  605. esbuild@0.20.2:
  606. resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
  607. engines: {node: '>=12'}
  608. hasBin: true
  609. escalade@3.1.2:
  610. resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
  611. engines: {node: '>=6'}
  612. escape-html@1.0.3:
  613. resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
  614. escape-string-regexp@1.0.5:
  615. resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
  616. engines: {node: '>=0.8.0'}
  617. escape-string-regexp@5.0.0:
  618. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  619. engines: {node: '>=12'}
  620. estree-walker@2.0.2:
  621. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  622. estree-walker@3.0.3:
  623. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  624. fast-glob@3.3.2:
  625. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  626. engines: {node: '>=8.6.0'}
  627. fastq@1.17.1:
  628. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  629. fill-range@7.1.1:
  630. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  631. engines: {node: '>=8'}
  632. fs-minipass@2.1.0:
  633. resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
  634. engines: {node: '>= 8'}
  635. fs.realpath@1.0.0:
  636. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  637. fsevents@2.3.3:
  638. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  639. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  640. os: [darwin]
  641. function-bind@1.1.2:
  642. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  643. gauge@3.0.2:
  644. resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
  645. engines: {node: '>=10'}
  646. gensync@1.0.0-beta.2:
  647. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  648. engines: {node: '>=6.9.0'}
  649. glob-parent@5.1.2:
  650. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  651. engines: {node: '>= 6'}
  652. glob@7.2.3:
  653. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  654. deprecated: Glob versions prior to v9 are no longer supported
  655. globals@11.12.0:
  656. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  657. engines: {node: '>=4'}
  658. has-flag@3.0.0:
  659. resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
  660. engines: {node: '>=4'}
  661. has-unicode@2.0.1:
  662. resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
  663. hasown@2.0.2:
  664. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  665. engines: {node: '>= 0.4'}
  666. he@1.2.0:
  667. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  668. hasBin: true
  669. html-tags@3.3.1:
  670. resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
  671. engines: {node: '>=8'}
  672. https-proxy-agent@5.0.1:
  673. resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
  674. engines: {node: '>= 6'}
  675. immutable@4.3.6:
  676. resolution: {integrity: sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==}
  677. inflight@1.0.6:
  678. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  679. deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
  680. inherits@2.0.4:
  681. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  682. is-binary-path@2.1.0:
  683. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  684. engines: {node: '>=8'}
  685. is-core-module@2.13.1:
  686. resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
  687. is-extglob@2.1.1:
  688. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  689. engines: {node: '>=0.10.0'}
  690. is-fullwidth-code-point@3.0.0:
  691. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  692. engines: {node: '>=8'}
  693. is-glob@4.0.3:
  694. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  695. engines: {node: '>=0.10.0'}
  696. is-number@7.0.0:
  697. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  698. engines: {node: '>=0.12.0'}
  699. isexe@2.0.0:
  700. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  701. js-tokens@4.0.0:
  702. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  703. js-tokens@9.0.0:
  704. resolution: {integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==}
  705. jsesc@2.5.2:
  706. resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
  707. engines: {node: '>=4'}
  708. hasBin: true
  709. json-parse-even-better-errors@3.0.2:
  710. resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
  711. engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
  712. json5@2.2.3:
  713. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  714. engines: {node: '>=6'}
  715. hasBin: true
  716. local-pkg@0.5.0:
  717. resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
  718. engines: {node: '>=14'}
  719. lodash-es@4.17.21:
  720. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  721. lodash-unified@1.0.3:
  722. resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
  723. peerDependencies:
  724. '@types/lodash-es': '*'
  725. lodash: '*'
  726. lodash-es: '*'
  727. lodash@4.17.21:
  728. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  729. lru-cache@5.1.1:
  730. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  731. magic-string@0.30.10:
  732. resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
  733. make-dir@3.1.0:
  734. resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
  735. engines: {node: '>=8'}
  736. memoize-one@6.0.0:
  737. resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
  738. memorystream@0.3.1:
  739. resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
  740. engines: {node: '>= 0.10.0'}
  741. merge2@1.4.1:
  742. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  743. engines: {node: '>= 8'}
  744. micromatch@4.0.7:
  745. resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
  746. engines: {node: '>=8.6'}
  747. mimic-response@2.1.0:
  748. resolution: {integrity: sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==}
  749. engines: {node: '>=8'}
  750. minimatch@3.1.2:
  751. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  752. minimatch@9.0.4:
  753. resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
  754. engines: {node: '>=16 || 14 >=14.17'}
  755. minipass@3.3.6:
  756. resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
  757. engines: {node: '>=8'}
  758. minipass@5.0.0:
  759. resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
  760. engines: {node: '>=8'}
  761. minizlib@2.1.2:
  762. resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
  763. engines: {node: '>= 8'}
  764. mkdirp@1.0.4:
  765. resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
  766. engines: {node: '>=10'}
  767. hasBin: true
  768. mlly@1.7.0:
  769. resolution: {integrity: sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==}
  770. ms@2.1.2:
  771. resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
  772. muggle-string@0.4.1:
  773. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  774. nan@2.19.0:
  775. resolution: {integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==}
  776. nanoid@3.3.7:
  777. resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
  778. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  779. hasBin: true
  780. node-fetch@2.7.0:
  781. resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
  782. engines: {node: 4.x || >=6.0.0}
  783. peerDependencies:
  784. encoding: ^0.1.0
  785. peerDependenciesMeta:
  786. encoding:
  787. optional: true
  788. node-releases@2.0.14:
  789. resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
  790. nopt@5.0.0:
  791. resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
  792. engines: {node: '>=6'}
  793. hasBin: true
  794. normalize-path@3.0.0:
  795. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  796. engines: {node: '>=0.10.0'}
  797. normalize-wheel-es@1.2.0:
  798. resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
  799. npm-normalize-package-bin@3.0.1:
  800. resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
  801. engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
  802. npm-run-all2@6.2.0:
  803. resolution: {integrity: sha512-wA7yVIkthe6qJBfiJ2g6aweaaRlw72itsFGF6HuwCHKwtwAx/4BY1vVpk6bw6lS8RLMsexoasOkd0aYOmsFG7Q==}
  804. engines: {node: ^14.18.0 || >=16.0.0, npm: '>= 8'}
  805. hasBin: true
  806. npmlog@5.0.1:
  807. resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==}
  808. deprecated: This package is no longer supported.
  809. object-assign@4.1.1:
  810. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  811. engines: {node: '>=0.10.0'}
  812. once@1.4.0:
  813. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  814. path-browserify@1.0.1:
  815. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  816. path-is-absolute@1.0.1:
  817. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  818. engines: {node: '>=0.10.0'}
  819. path-key@3.1.1:
  820. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  821. engines: {node: '>=8'}
  822. path-parse@1.0.7:
  823. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  824. path2d-polyfill@2.0.1:
  825. resolution: {integrity: sha512-ad/3bsalbbWhmBo0D6FZ4RNMwsLsPpL6gnvhuSaU5Vm7b06Kr5ubSltQQ0T7YKsiJQO+g22zJ4dJKNTXIyOXtA==}
  826. engines: {node: '>=8'}
  827. pathe@1.1.2:
  828. resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
  829. pdfjs-dist@3.11.174:
  830. resolution: {integrity: sha512-TdTZPf1trZ8/UFu5Cx/GXB7GZM30LT+wWUNfsi6Bq8ePLnb+woNKtDymI2mxZYBpMbonNFqKmiz684DIfnd8dA==}
  831. engines: {node: '>=18'}
  832. picocolors@1.0.1:
  833. resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
  834. picomatch@2.3.1:
  835. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  836. engines: {node: '>=8.6'}
  837. pidtree@0.6.0:
  838. resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
  839. engines: {node: '>=0.10'}
  840. hasBin: true
  841. pinia@2.1.7:
  842. resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==}
  843. peerDependencies:
  844. '@vue/composition-api': ^1.4.0
  845. typescript: '>=4.4.4'
  846. vue: ^2.6.14 || ^3.3.0
  847. peerDependenciesMeta:
  848. '@vue/composition-api':
  849. optional: true
  850. typescript:
  851. optional: true
  852. pkg-types@1.1.1:
  853. resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==}
  854. postcss@8.4.38:
  855. resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
  856. engines: {node: ^10 || ^12 || >=14}
  857. queue-microtask@1.2.3:
  858. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  859. read-package-json-fast@3.0.2:
  860. resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
  861. engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
  862. readable-stream@3.6.2:
  863. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  864. engines: {node: '>= 6'}
  865. readdirp@3.6.0:
  866. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  867. engines: {node: '>=8.10.0'}
  868. resolve@1.22.8:
  869. resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
  870. hasBin: true
  871. reusify@1.0.4:
  872. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  873. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  874. rimraf@3.0.2:
  875. resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
  876. deprecated: Rimraf versions prior to v4 are no longer supported
  877. hasBin: true
  878. rollup@4.18.0:
  879. resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==}
  880. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  881. hasBin: true
  882. run-parallel@1.2.0:
  883. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  884. safe-buffer@5.2.1:
  885. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  886. sass@1.77.2:
  887. resolution: {integrity: sha512-eb4GZt1C3avsX3heBNlrc7I09nyT00IUuo4eFhAbeXWU2fvA7oXI53SxODVAA+zgZCk9aunAZgO+losjR3fAwA==}
  888. engines: {node: '>=14.0.0'}
  889. hasBin: true
  890. scule@1.3.0:
  891. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  892. semver@6.3.1:
  893. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  894. hasBin: true
  895. semver@7.6.2:
  896. resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
  897. engines: {node: '>=10'}
  898. hasBin: true
  899. set-blocking@2.0.0:
  900. resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
  901. shebang-command@2.0.0:
  902. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  903. engines: {node: '>=8'}
  904. shebang-regex@3.0.0:
  905. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  906. engines: {node: '>=8'}
  907. shell-quote@1.8.1:
  908. resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
  909. signal-exit@3.0.7:
  910. resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
  911. simple-concat@1.0.1:
  912. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  913. simple-get@3.1.1:
  914. resolution: {integrity: sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==}
  915. source-map-js@1.2.0:
  916. resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
  917. engines: {node: '>=0.10.0'}
  918. string-width@4.2.3:
  919. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  920. engines: {node: '>=8'}
  921. string_decoder@1.3.0:
  922. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  923. strip-ansi@6.0.1:
  924. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  925. engines: {node: '>=8'}
  926. strip-literal@2.1.0:
  927. resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==}
  928. supports-color@5.5.0:
  929. resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
  930. engines: {node: '>=4'}
  931. supports-preserve-symlinks-flag@1.0.0:
  932. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  933. engines: {node: '>= 0.4'}
  934. svg-tags@1.0.0:
  935. resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
  936. tar@6.2.1:
  937. resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
  938. engines: {node: '>=10'}
  939. to-fast-properties@2.0.0:
  940. resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
  941. engines: {node: '>=4'}
  942. to-regex-range@5.0.1:
  943. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  944. engines: {node: '>=8.0'}
  945. tr46@0.0.3:
  946. resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
  947. typescript@5.4.5:
  948. resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
  949. engines: {node: '>=14.17'}
  950. hasBin: true
  951. ufo@1.5.3:
  952. resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
  953. undici-types@5.26.5:
  954. resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
  955. unimport@3.7.2:
  956. resolution: {integrity: sha512-91mxcZTadgXyj3lFWmrGT8GyoRHWuE5fqPOjg5RVtF6vj+OfM5G6WCzXjuYtSgELE5ggB34RY4oiCSEP8I3AHw==}
  957. unplugin-auto-import@0.17.6:
  958. resolution: {integrity: sha512-dmX0Pex5DzMzVuALkexboOZvh51fL/BD6aoPO7qHoTYGlQp0GRKsREv2KMF1lzYI9SXKQiRxAjwzbQnrFFNydQ==}
  959. engines: {node: '>=14'}
  960. peerDependencies:
  961. '@nuxt/kit': ^3.2.2
  962. '@vueuse/core': '*'
  963. peerDependenciesMeta:
  964. '@nuxt/kit':
  965. optional: true
  966. '@vueuse/core':
  967. optional: true
  968. unplugin-vue-components@0.27.0:
  969. resolution: {integrity: sha512-77eTEy23sQ0UpzGWnZ9I2mY3cnmXwklz4ITcn3JfxjCoX643ghImkiZ4nFm58sxbdVcc4Fo/o4LIoFnlqEqsSg==}
  970. engines: {node: '>=14'}
  971. peerDependencies:
  972. '@babel/parser': ^7.15.8
  973. '@nuxt/kit': ^3.2.2
  974. vue: 2 || 3
  975. peerDependenciesMeta:
  976. '@babel/parser':
  977. optional: true
  978. '@nuxt/kit':
  979. optional: true
  980. unplugin@1.10.1:
  981. resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}
  982. engines: {node: '>=14.0.0'}
  983. update-browserslist-db@1.0.16:
  984. resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==}
  985. hasBin: true
  986. peerDependencies:
  987. browserslist: '>= 4.21.0'
  988. util-deprecate@1.0.2:
  989. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  990. vite@5.2.11:
  991. resolution: {integrity: sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==}
  992. engines: {node: ^18.0.0 || >=20.0.0}
  993. hasBin: true
  994. peerDependencies:
  995. '@types/node': ^18.0.0 || >=20.0.0
  996. less: '*'
  997. lightningcss: ^1.21.0
  998. sass: '*'
  999. stylus: '*'
  1000. sugarss: '*'
  1001. terser: ^5.4.0
  1002. peerDependenciesMeta:
  1003. '@types/node':
  1004. optional: true
  1005. less:
  1006. optional: true
  1007. lightningcss:
  1008. optional: true
  1009. sass:
  1010. optional: true
  1011. stylus:
  1012. optional: true
  1013. sugarss:
  1014. optional: true
  1015. terser:
  1016. optional: true
  1017. vue-demi@0.14.7:
  1018. resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==}
  1019. engines: {node: '>=12'}
  1020. hasBin: true
  1021. peerDependencies:
  1022. '@vue/composition-api': ^1.0.0-rc.1
  1023. vue: ^3.0.0-0 || ^2.6.0
  1024. peerDependenciesMeta:
  1025. '@vue/composition-api':
  1026. optional: true
  1027. vue-pdf-embed@2.0.3:
  1028. resolution: {integrity: sha512-3kSBUBen/ZUezWtbby9J8FhmS8u3cgPoogeFZMge33keelJqZbUC3PvpJi5CDnrCLVuty/gtvSill+GQPnXDow==}
  1029. peerDependencies:
  1030. vue: ^3.3.0
  1031. vue-router@4.3.2:
  1032. resolution: {integrity: sha512-hKQJ1vDAZ5LVkKEnHhmm1f9pMiWIBNGF5AwU67PdH7TyXCj/a4hTccuUuYCAMgJK6rO/NVYtQIEN3yL8CECa7Q==}
  1033. peerDependencies:
  1034. vue: ^3.2.0
  1035. vue-template-compiler@2.7.16:
  1036. resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==}
  1037. vue-tsc@2.0.19:
  1038. resolution: {integrity: sha512-JWay5Zt2/871iodGF72cELIbcAoPyhJxq56mPPh+M2K7IwI688FMrFKc/+DvB05wDWEuCPexQJ6L10zSwzzapg==}
  1039. hasBin: true
  1040. peerDependencies:
  1041. typescript: '*'
  1042. vue@3.4.27:
  1043. resolution: {integrity: sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==}
  1044. peerDependencies:
  1045. typescript: '*'
  1046. peerDependenciesMeta:
  1047. typescript:
  1048. optional: true
  1049. webidl-conversions@3.0.1:
  1050. resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
  1051. webpack-sources@3.2.3:
  1052. resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
  1053. engines: {node: '>=10.13.0'}
  1054. webpack-virtual-modules@0.6.1:
  1055. resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
  1056. whatwg-url@5.0.0:
  1057. resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
  1058. which@2.0.2:
  1059. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1060. engines: {node: '>= 8'}
  1061. hasBin: true
  1062. wide-align@1.1.5:
  1063. resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
  1064. wrappy@1.0.2:
  1065. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1066. yallist@3.1.1:
  1067. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1068. yallist@4.0.0:
  1069. resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
  1070. snapshots:
  1071. '@ampproject/remapping@2.3.0':
  1072. dependencies:
  1073. '@jridgewell/gen-mapping': 0.3.5
  1074. '@jridgewell/trace-mapping': 0.3.25
  1075. '@antfu/utils@0.7.8': {}
  1076. '@babel/code-frame@7.24.6':
  1077. dependencies:
  1078. '@babel/highlight': 7.24.6
  1079. picocolors: 1.0.1
  1080. '@babel/compat-data@7.24.6': {}
  1081. '@babel/core@7.24.6':
  1082. dependencies:
  1083. '@ampproject/remapping': 2.3.0
  1084. '@babel/code-frame': 7.24.6
  1085. '@babel/generator': 7.24.6
  1086. '@babel/helper-compilation-targets': 7.24.6
  1087. '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
  1088. '@babel/helpers': 7.24.6
  1089. '@babel/parser': 7.24.6
  1090. '@babel/template': 7.24.6
  1091. '@babel/traverse': 7.24.6
  1092. '@babel/types': 7.24.6
  1093. convert-source-map: 2.0.0
  1094. debug: 4.3.4
  1095. gensync: 1.0.0-beta.2
  1096. json5: 2.2.3
  1097. semver: 6.3.1
  1098. transitivePeerDependencies:
  1099. - supports-color
  1100. '@babel/generator@7.24.6':
  1101. dependencies:
  1102. '@babel/types': 7.24.6
  1103. '@jridgewell/gen-mapping': 0.3.5
  1104. '@jridgewell/trace-mapping': 0.3.25
  1105. jsesc: 2.5.2
  1106. '@babel/helper-annotate-as-pure@7.24.6':
  1107. dependencies:
  1108. '@babel/types': 7.24.6
  1109. '@babel/helper-compilation-targets@7.24.6':
  1110. dependencies:
  1111. '@babel/compat-data': 7.24.6
  1112. '@babel/helper-validator-option': 7.24.6
  1113. browserslist: 4.23.0
  1114. lru-cache: 5.1.1
  1115. semver: 6.3.1
  1116. '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6)':
  1117. dependencies:
  1118. '@babel/core': 7.24.6
  1119. '@babel/helper-annotate-as-pure': 7.24.6
  1120. '@babel/helper-environment-visitor': 7.24.6
  1121. '@babel/helper-function-name': 7.24.6
  1122. '@babel/helper-member-expression-to-functions': 7.24.6
  1123. '@babel/helper-optimise-call-expression': 7.24.6
  1124. '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6)
  1125. '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
  1126. '@babel/helper-split-export-declaration': 7.24.6
  1127. semver: 6.3.1
  1128. '@babel/helper-environment-visitor@7.24.6': {}
  1129. '@babel/helper-function-name@7.24.6':
  1130. dependencies:
  1131. '@babel/template': 7.24.6
  1132. '@babel/types': 7.24.6
  1133. '@babel/helper-hoist-variables@7.24.6':
  1134. dependencies:
  1135. '@babel/types': 7.24.6
  1136. '@babel/helper-member-expression-to-functions@7.24.6':
  1137. dependencies:
  1138. '@babel/types': 7.24.6
  1139. '@babel/helper-module-imports@7.22.15':
  1140. dependencies:
  1141. '@babel/types': 7.24.6
  1142. '@babel/helper-module-imports@7.24.6':
  1143. dependencies:
  1144. '@babel/types': 7.24.6
  1145. '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6)':
  1146. dependencies:
  1147. '@babel/core': 7.24.6
  1148. '@babel/helper-environment-visitor': 7.24.6
  1149. '@babel/helper-module-imports': 7.24.6
  1150. '@babel/helper-simple-access': 7.24.6
  1151. '@babel/helper-split-export-declaration': 7.24.6
  1152. '@babel/helper-validator-identifier': 7.24.6
  1153. '@babel/helper-optimise-call-expression@7.24.6':
  1154. dependencies:
  1155. '@babel/types': 7.24.6
  1156. '@babel/helper-plugin-utils@7.24.6': {}
  1157. '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6)':
  1158. dependencies:
  1159. '@babel/core': 7.24.6
  1160. '@babel/helper-environment-visitor': 7.24.6
  1161. '@babel/helper-member-expression-to-functions': 7.24.6
  1162. '@babel/helper-optimise-call-expression': 7.24.6
  1163. '@babel/helper-simple-access@7.24.6':
  1164. dependencies:
  1165. '@babel/types': 7.24.6
  1166. '@babel/helper-skip-transparent-expression-wrappers@7.24.6':
  1167. dependencies:
  1168. '@babel/types': 7.24.6
  1169. '@babel/helper-split-export-declaration@7.24.6':
  1170. dependencies:
  1171. '@babel/types': 7.24.6
  1172. '@babel/helper-string-parser@7.24.6': {}
  1173. '@babel/helper-validator-identifier@7.24.6': {}
  1174. '@babel/helper-validator-option@7.24.6': {}
  1175. '@babel/helpers@7.24.6':
  1176. dependencies:
  1177. '@babel/template': 7.24.6
  1178. '@babel/types': 7.24.6
  1179. '@babel/highlight@7.24.6':
  1180. dependencies:
  1181. '@babel/helper-validator-identifier': 7.24.6
  1182. chalk: 2.4.2
  1183. js-tokens: 4.0.0
  1184. picocolors: 1.0.1
  1185. '@babel/parser@7.24.6':
  1186. dependencies:
  1187. '@babel/types': 7.24.6
  1188. '@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.6)':
  1189. dependencies:
  1190. '@babel/core': 7.24.6
  1191. '@babel/helper-plugin-utils': 7.24.6
  1192. '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6)':
  1193. dependencies:
  1194. '@babel/core': 7.24.6
  1195. '@babel/helper-plugin-utils': 7.24.6
  1196. '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6)':
  1197. dependencies:
  1198. '@babel/core': 7.24.6
  1199. '@babel/helper-annotate-as-pure': 7.24.6
  1200. '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
  1201. '@babel/helper-plugin-utils': 7.24.6
  1202. '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6)
  1203. '@babel/template@7.24.6':
  1204. dependencies:
  1205. '@babel/code-frame': 7.24.6
  1206. '@babel/parser': 7.24.6
  1207. '@babel/types': 7.24.6
  1208. '@babel/traverse@7.24.6':
  1209. dependencies:
  1210. '@babel/code-frame': 7.24.6
  1211. '@babel/generator': 7.24.6
  1212. '@babel/helper-environment-visitor': 7.24.6
  1213. '@babel/helper-function-name': 7.24.6
  1214. '@babel/helper-hoist-variables': 7.24.6
  1215. '@babel/helper-split-export-declaration': 7.24.6
  1216. '@babel/parser': 7.24.6
  1217. '@babel/types': 7.24.6
  1218. debug: 4.3.4
  1219. globals: 11.12.0
  1220. transitivePeerDependencies:
  1221. - supports-color
  1222. '@babel/types@7.24.6':
  1223. dependencies:
  1224. '@babel/helper-string-parser': 7.24.6
  1225. '@babel/helper-validator-identifier': 7.24.6
  1226. to-fast-properties: 2.0.0
  1227. '@ctrl/tinycolor@3.6.1': {}
  1228. '@element-plus/icons-vue@2.3.1(vue@3.4.27(typescript@5.4.5))':
  1229. dependencies:
  1230. vue: 3.4.27(typescript@5.4.5)
  1231. '@esbuild/aix-ppc64@0.20.2':
  1232. optional: true
  1233. '@esbuild/android-arm64@0.20.2':
  1234. optional: true
  1235. '@esbuild/android-arm@0.20.2':
  1236. optional: true
  1237. '@esbuild/android-x64@0.20.2':
  1238. optional: true
  1239. '@esbuild/darwin-arm64@0.20.2':
  1240. optional: true
  1241. '@esbuild/darwin-x64@0.20.2':
  1242. optional: true
  1243. '@esbuild/freebsd-arm64@0.20.2':
  1244. optional: true
  1245. '@esbuild/freebsd-x64@0.20.2':
  1246. optional: true
  1247. '@esbuild/linux-arm64@0.20.2':
  1248. optional: true
  1249. '@esbuild/linux-arm@0.20.2':
  1250. optional: true
  1251. '@esbuild/linux-ia32@0.20.2':
  1252. optional: true
  1253. '@esbuild/linux-loong64@0.20.2':
  1254. optional: true
  1255. '@esbuild/linux-mips64el@0.20.2':
  1256. optional: true
  1257. '@esbuild/linux-ppc64@0.20.2':
  1258. optional: true
  1259. '@esbuild/linux-riscv64@0.20.2':
  1260. optional: true
  1261. '@esbuild/linux-s390x@0.20.2':
  1262. optional: true
  1263. '@esbuild/linux-x64@0.20.2':
  1264. optional: true
  1265. '@esbuild/netbsd-x64@0.20.2':
  1266. optional: true
  1267. '@esbuild/openbsd-x64@0.20.2':
  1268. optional: true
  1269. '@esbuild/sunos-x64@0.20.2':
  1270. optional: true
  1271. '@esbuild/win32-arm64@0.20.2':
  1272. optional: true
  1273. '@esbuild/win32-ia32@0.20.2':
  1274. optional: true
  1275. '@esbuild/win32-x64@0.20.2':
  1276. optional: true
  1277. '@floating-ui/core@1.6.2':
  1278. dependencies:
  1279. '@floating-ui/utils': 0.2.2
  1280. '@floating-ui/dom@1.6.5':
  1281. dependencies:
  1282. '@floating-ui/core': 1.6.2
  1283. '@floating-ui/utils': 0.2.2
  1284. '@floating-ui/utils@0.2.2': {}
  1285. '@jridgewell/gen-mapping@0.3.5':
  1286. dependencies:
  1287. '@jridgewell/set-array': 1.2.1
  1288. '@jridgewell/sourcemap-codec': 1.4.15
  1289. '@jridgewell/trace-mapping': 0.3.25
  1290. '@jridgewell/resolve-uri@3.1.2': {}
  1291. '@jridgewell/set-array@1.2.1': {}
  1292. '@jridgewell/sourcemap-codec@1.4.15': {}
  1293. '@jridgewell/trace-mapping@0.3.25':
  1294. dependencies:
  1295. '@jridgewell/resolve-uri': 3.1.2
  1296. '@jridgewell/sourcemap-codec': 1.4.15
  1297. '@mapbox/node-pre-gyp@1.0.11':
  1298. dependencies:
  1299. detect-libc: 2.0.3
  1300. https-proxy-agent: 5.0.1
  1301. make-dir: 3.1.0
  1302. node-fetch: 2.7.0
  1303. nopt: 5.0.0
  1304. npmlog: 5.0.1
  1305. rimraf: 3.0.2
  1306. semver: 7.6.2
  1307. tar: 6.2.1
  1308. transitivePeerDependencies:
  1309. - encoding
  1310. - supports-color
  1311. optional: true
  1312. '@nodelib/fs.scandir@2.1.5':
  1313. dependencies:
  1314. '@nodelib/fs.stat': 2.0.5
  1315. run-parallel: 1.2.0
  1316. '@nodelib/fs.stat@2.0.5': {}
  1317. '@nodelib/fs.walk@1.2.8':
  1318. dependencies:
  1319. '@nodelib/fs.scandir': 2.1.5
  1320. fastq: 1.17.1
  1321. '@rollup/pluginutils@5.1.0(rollup@4.18.0)':
  1322. dependencies:
  1323. '@types/estree': 1.0.5
  1324. estree-walker: 2.0.2
  1325. picomatch: 2.3.1
  1326. optionalDependencies:
  1327. rollup: 4.18.0
  1328. '@rollup/rollup-android-arm-eabi@4.18.0':
  1329. optional: true
  1330. '@rollup/rollup-android-arm64@4.18.0':
  1331. optional: true
  1332. '@rollup/rollup-darwin-arm64@4.18.0':
  1333. optional: true
  1334. '@rollup/rollup-darwin-x64@4.18.0':
  1335. optional: true
  1336. '@rollup/rollup-linux-arm-gnueabihf@4.18.0':
  1337. optional: true
  1338. '@rollup/rollup-linux-arm-musleabihf@4.18.0':
  1339. optional: true
  1340. '@rollup/rollup-linux-arm64-gnu@4.18.0':
  1341. optional: true
  1342. '@rollup/rollup-linux-arm64-musl@4.18.0':
  1343. optional: true
  1344. '@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
  1345. optional: true
  1346. '@rollup/rollup-linux-riscv64-gnu@4.18.0':
  1347. optional: true
  1348. '@rollup/rollup-linux-s390x-gnu@4.18.0':
  1349. optional: true
  1350. '@rollup/rollup-linux-x64-gnu@4.18.0':
  1351. optional: true
  1352. '@rollup/rollup-linux-x64-musl@4.18.0':
  1353. optional: true
  1354. '@rollup/rollup-win32-arm64-msvc@4.18.0':
  1355. optional: true
  1356. '@rollup/rollup-win32-ia32-msvc@4.18.0':
  1357. optional: true
  1358. '@rollup/rollup-win32-x64-msvc@4.18.0':
  1359. optional: true
  1360. '@sxzz/popperjs-es@2.11.7': {}
  1361. '@tsconfig/node20@20.1.4': {}
  1362. '@types/estree@1.0.5': {}
  1363. '@types/lodash-es@4.17.12':
  1364. dependencies:
  1365. '@types/lodash': 4.17.4
  1366. '@types/lodash@4.17.4': {}
  1367. '@types/node@20.12.12':
  1368. dependencies:
  1369. undici-types: 5.26.5
  1370. '@types/web-bluetooth@0.0.16': {}
  1371. '@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.11(@types/node@20.12.12)(sass@1.77.2))(vue@3.4.27(typescript@5.4.5))':
  1372. dependencies:
  1373. '@babel/core': 7.24.6
  1374. '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6)
  1375. '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.6)
  1376. vite: 5.2.11(@types/node@20.12.12)(sass@1.77.2)
  1377. vue: 3.4.27(typescript@5.4.5)
  1378. transitivePeerDependencies:
  1379. - supports-color
  1380. '@vitejs/plugin-vue@5.0.4(vite@5.2.11(@types/node@20.12.12)(sass@1.77.2))(vue@3.4.27(typescript@5.4.5))':
  1381. dependencies:
  1382. vite: 5.2.11(@types/node@20.12.12)(sass@1.77.2)
  1383. vue: 3.4.27(typescript@5.4.5)
  1384. '@volar/language-core@2.2.5':
  1385. dependencies:
  1386. '@volar/source-map': 2.2.5
  1387. '@volar/source-map@2.2.5':
  1388. dependencies:
  1389. muggle-string: 0.4.1
  1390. '@volar/typescript@2.2.5':
  1391. dependencies:
  1392. '@volar/language-core': 2.2.5
  1393. path-browserify: 1.0.1
  1394. '@vue/babel-helper-vue-transform-on@1.2.2': {}
  1395. '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.6)':
  1396. dependencies:
  1397. '@babel/helper-module-imports': 7.22.15
  1398. '@babel/helper-plugin-utils': 7.24.6
  1399. '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6)
  1400. '@babel/template': 7.24.6
  1401. '@babel/traverse': 7.24.6
  1402. '@babel/types': 7.24.6
  1403. '@vue/babel-helper-vue-transform-on': 1.2.2
  1404. '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.6)
  1405. camelcase: 6.3.0
  1406. html-tags: 3.3.1
  1407. svg-tags: 1.0.0
  1408. optionalDependencies:
  1409. '@babel/core': 7.24.6
  1410. transitivePeerDependencies:
  1411. - supports-color
  1412. '@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.6)':
  1413. dependencies:
  1414. '@babel/code-frame': 7.24.6
  1415. '@babel/core': 7.24.6
  1416. '@babel/helper-module-imports': 7.22.15
  1417. '@babel/helper-plugin-utils': 7.24.6
  1418. '@babel/parser': 7.24.6
  1419. '@vue/compiler-sfc': 3.4.27
  1420. '@vue/compiler-core@3.4.27':
  1421. dependencies:
  1422. '@babel/parser': 7.24.6
  1423. '@vue/shared': 3.4.27
  1424. entities: 4.5.0
  1425. estree-walker: 2.0.2
  1426. source-map-js: 1.2.0
  1427. '@vue/compiler-dom@3.4.27':
  1428. dependencies:
  1429. '@vue/compiler-core': 3.4.27
  1430. '@vue/shared': 3.4.27
  1431. '@vue/compiler-sfc@3.4.27':
  1432. dependencies:
  1433. '@babel/parser': 7.24.6
  1434. '@vue/compiler-core': 3.4.27
  1435. '@vue/compiler-dom': 3.4.27
  1436. '@vue/compiler-ssr': 3.4.27
  1437. '@vue/shared': 3.4.27
  1438. estree-walker: 2.0.2
  1439. magic-string: 0.30.10
  1440. postcss: 8.4.38
  1441. source-map-js: 1.2.0
  1442. '@vue/compiler-ssr@3.4.27':
  1443. dependencies:
  1444. '@vue/compiler-dom': 3.4.27
  1445. '@vue/shared': 3.4.27
  1446. '@vue/devtools-api@6.6.1': {}
  1447. '@vue/language-core@2.0.19(typescript@5.4.5)':
  1448. dependencies:
  1449. '@volar/language-core': 2.2.5
  1450. '@vue/compiler-dom': 3.4.27
  1451. '@vue/shared': 3.4.27
  1452. computeds: 0.0.1
  1453. minimatch: 9.0.4
  1454. path-browserify: 1.0.1
  1455. vue-template-compiler: 2.7.16
  1456. optionalDependencies:
  1457. typescript: 5.4.5
  1458. '@vue/reactivity@3.4.27':
  1459. dependencies:
  1460. '@vue/shared': 3.4.27
  1461. '@vue/runtime-core@3.4.27':
  1462. dependencies:
  1463. '@vue/reactivity': 3.4.27
  1464. '@vue/shared': 3.4.27
  1465. '@vue/runtime-dom@3.4.27':
  1466. dependencies:
  1467. '@vue/runtime-core': 3.4.27
  1468. '@vue/shared': 3.4.27
  1469. csstype: 3.1.3
  1470. '@vue/server-renderer@3.4.27(vue@3.4.27(typescript@5.4.5))':
  1471. dependencies:
  1472. '@vue/compiler-ssr': 3.4.27
  1473. '@vue/shared': 3.4.27
  1474. vue: 3.4.27(typescript@5.4.5)
  1475. '@vue/shared@3.4.27': {}
  1476. '@vue/tsconfig@0.5.1': {}
  1477. '@vueuse/core@9.13.0(vue@3.4.27(typescript@5.4.5))':
  1478. dependencies:
  1479. '@types/web-bluetooth': 0.0.16
  1480. '@vueuse/metadata': 9.13.0
  1481. '@vueuse/shared': 9.13.0(vue@3.4.27(typescript@5.4.5))
  1482. vue-demi: 0.14.7(vue@3.4.27(typescript@5.4.5))
  1483. transitivePeerDependencies:
  1484. - '@vue/composition-api'
  1485. - vue
  1486. '@vueuse/metadata@9.13.0': {}
  1487. '@vueuse/shared@9.13.0(vue@3.4.27(typescript@5.4.5))':
  1488. dependencies:
  1489. vue-demi: 0.14.7(vue@3.4.27(typescript@5.4.5))
  1490. transitivePeerDependencies:
  1491. - '@vue/composition-api'
  1492. - vue
  1493. abbrev@1.1.1:
  1494. optional: true
  1495. acorn@8.11.3: {}
  1496. agent-base@6.0.2:
  1497. dependencies:
  1498. debug: 4.3.4
  1499. transitivePeerDependencies:
  1500. - supports-color
  1501. optional: true
  1502. ansi-regex@5.0.1:
  1503. optional: true
  1504. ansi-styles@3.2.1:
  1505. dependencies:
  1506. color-convert: 1.9.3
  1507. ansi-styles@6.2.1: {}
  1508. anymatch@3.1.3:
  1509. dependencies:
  1510. normalize-path: 3.0.0
  1511. picomatch: 2.3.1
  1512. aproba@2.0.0:
  1513. optional: true
  1514. are-we-there-yet@2.0.0:
  1515. dependencies:
  1516. delegates: 1.0.0
  1517. readable-stream: 3.6.2
  1518. optional: true
  1519. async-validator@4.2.5: {}
  1520. balanced-match@1.0.2: {}
  1521. binary-extensions@2.3.0: {}
  1522. brace-expansion@1.1.11:
  1523. dependencies:
  1524. balanced-match: 1.0.2
  1525. concat-map: 0.0.1
  1526. optional: true
  1527. brace-expansion@2.0.1:
  1528. dependencies:
  1529. balanced-match: 1.0.2
  1530. braces@3.0.3:
  1531. dependencies:
  1532. fill-range: 7.1.1
  1533. browserslist@4.23.0:
  1534. dependencies:
  1535. caniuse-lite: 1.0.30001621
  1536. electron-to-chromium: 1.4.783
  1537. node-releases: 2.0.14
  1538. update-browserslist-db: 1.0.16(browserslist@4.23.0)
  1539. camelcase@6.3.0: {}
  1540. caniuse-lite@1.0.30001621: {}
  1541. canvas@2.11.2:
  1542. dependencies:
  1543. '@mapbox/node-pre-gyp': 1.0.11
  1544. nan: 2.19.0
  1545. simple-get: 3.1.1
  1546. transitivePeerDependencies:
  1547. - encoding
  1548. - supports-color
  1549. optional: true
  1550. chalk@2.4.2:
  1551. dependencies:
  1552. ansi-styles: 3.2.1
  1553. escape-string-regexp: 1.0.5
  1554. supports-color: 5.5.0
  1555. chokidar@3.6.0:
  1556. dependencies:
  1557. anymatch: 3.1.3
  1558. braces: 3.0.3
  1559. glob-parent: 5.1.2
  1560. is-binary-path: 2.1.0
  1561. is-glob: 4.0.3
  1562. normalize-path: 3.0.0
  1563. readdirp: 3.6.0
  1564. optionalDependencies:
  1565. fsevents: 2.3.3
  1566. chownr@2.0.0:
  1567. optional: true
  1568. color-convert@1.9.3:
  1569. dependencies:
  1570. color-name: 1.1.3
  1571. color-name@1.1.3: {}
  1572. color-support@1.1.3:
  1573. optional: true
  1574. computeds@0.0.1: {}
  1575. concat-map@0.0.1:
  1576. optional: true
  1577. confbox@0.1.7: {}
  1578. console-control-strings@1.1.0:
  1579. optional: true
  1580. convert-source-map@2.0.0: {}
  1581. cross-spawn@7.0.3:
  1582. dependencies:
  1583. path-key: 3.1.1
  1584. shebang-command: 2.0.0
  1585. which: 2.0.2
  1586. csstype@3.1.3: {}
  1587. dayjs@1.11.11: {}
  1588. de-indent@1.0.2: {}
  1589. debug@4.3.4:
  1590. dependencies:
  1591. ms: 2.1.2
  1592. decompress-response@4.2.1:
  1593. dependencies:
  1594. mimic-response: 2.1.0
  1595. optional: true
  1596. delegates@1.0.0:
  1597. optional: true
  1598. detect-libc@2.0.3:
  1599. optional: true
  1600. electron-to-chromium@1.4.783: {}
  1601. element-plus@2.7.3(vue@3.4.27(typescript@5.4.5)):
  1602. dependencies:
  1603. '@ctrl/tinycolor': 3.6.1
  1604. '@element-plus/icons-vue': 2.3.1(vue@3.4.27(typescript@5.4.5))
  1605. '@floating-ui/dom': 1.6.5
  1606. '@popperjs/core': '@sxzz/popperjs-es@2.11.7'
  1607. '@types/lodash': 4.17.4
  1608. '@types/lodash-es': 4.17.12
  1609. '@vueuse/core': 9.13.0(vue@3.4.27(typescript@5.4.5))
  1610. async-validator: 4.2.5
  1611. dayjs: 1.11.11
  1612. escape-html: 1.0.3
  1613. lodash: 4.17.21
  1614. lodash-es: 4.17.21
  1615. lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21)
  1616. memoize-one: 6.0.0
  1617. normalize-wheel-es: 1.2.0
  1618. vue: 3.4.27(typescript@5.4.5)
  1619. transitivePeerDependencies:
  1620. - '@vue/composition-api'
  1621. emoji-regex@8.0.0:
  1622. optional: true
  1623. entities@4.5.0: {}
  1624. esbuild@0.20.2:
  1625. optionalDependencies:
  1626. '@esbuild/aix-ppc64': 0.20.2
  1627. '@esbuild/android-arm': 0.20.2
  1628. '@esbuild/android-arm64': 0.20.2
  1629. '@esbuild/android-x64': 0.20.2
  1630. '@esbuild/darwin-arm64': 0.20.2
  1631. '@esbuild/darwin-x64': 0.20.2
  1632. '@esbuild/freebsd-arm64': 0.20.2
  1633. '@esbuild/freebsd-x64': 0.20.2
  1634. '@esbuild/linux-arm': 0.20.2
  1635. '@esbuild/linux-arm64': 0.20.2
  1636. '@esbuild/linux-ia32': 0.20.2
  1637. '@esbuild/linux-loong64': 0.20.2
  1638. '@esbuild/linux-mips64el': 0.20.2
  1639. '@esbuild/linux-ppc64': 0.20.2
  1640. '@esbuild/linux-riscv64': 0.20.2
  1641. '@esbuild/linux-s390x': 0.20.2
  1642. '@esbuild/linux-x64': 0.20.2
  1643. '@esbuild/netbsd-x64': 0.20.2
  1644. '@esbuild/openbsd-x64': 0.20.2
  1645. '@esbuild/sunos-x64': 0.20.2
  1646. '@esbuild/win32-arm64': 0.20.2
  1647. '@esbuild/win32-ia32': 0.20.2
  1648. '@esbuild/win32-x64': 0.20.2
  1649. escalade@3.1.2: {}
  1650. escape-html@1.0.3: {}
  1651. escape-string-regexp@1.0.5: {}
  1652. escape-string-regexp@5.0.0: {}
  1653. estree-walker@2.0.2: {}
  1654. estree-walker@3.0.3:
  1655. dependencies:
  1656. '@types/estree': 1.0.5
  1657. fast-glob@3.3.2:
  1658. dependencies:
  1659. '@nodelib/fs.stat': 2.0.5
  1660. '@nodelib/fs.walk': 1.2.8
  1661. glob-parent: 5.1.2
  1662. merge2: 1.4.1
  1663. micromatch: 4.0.7
  1664. fastq@1.17.1:
  1665. dependencies:
  1666. reusify: 1.0.4
  1667. fill-range@7.1.1:
  1668. dependencies:
  1669. to-regex-range: 5.0.1
  1670. fs-minipass@2.1.0:
  1671. dependencies:
  1672. minipass: 3.3.6
  1673. optional: true
  1674. fs.realpath@1.0.0:
  1675. optional: true
  1676. fsevents@2.3.3:
  1677. optional: true
  1678. function-bind@1.1.2: {}
  1679. gauge@3.0.2:
  1680. dependencies:
  1681. aproba: 2.0.0
  1682. color-support: 1.1.3
  1683. console-control-strings: 1.1.0
  1684. has-unicode: 2.0.1
  1685. object-assign: 4.1.1
  1686. signal-exit: 3.0.7
  1687. string-width: 4.2.3
  1688. strip-ansi: 6.0.1
  1689. wide-align: 1.1.5
  1690. optional: true
  1691. gensync@1.0.0-beta.2: {}
  1692. glob-parent@5.1.2:
  1693. dependencies:
  1694. is-glob: 4.0.3
  1695. glob@7.2.3:
  1696. dependencies:
  1697. fs.realpath: 1.0.0
  1698. inflight: 1.0.6
  1699. inherits: 2.0.4
  1700. minimatch: 3.1.2
  1701. once: 1.4.0
  1702. path-is-absolute: 1.0.1
  1703. optional: true
  1704. globals@11.12.0: {}
  1705. has-flag@3.0.0: {}
  1706. has-unicode@2.0.1:
  1707. optional: true
  1708. hasown@2.0.2:
  1709. dependencies:
  1710. function-bind: 1.1.2
  1711. he@1.2.0: {}
  1712. html-tags@3.3.1: {}
  1713. https-proxy-agent@5.0.1:
  1714. dependencies:
  1715. agent-base: 6.0.2
  1716. debug: 4.3.4
  1717. transitivePeerDependencies:
  1718. - supports-color
  1719. optional: true
  1720. immutable@4.3.6: {}
  1721. inflight@1.0.6:
  1722. dependencies:
  1723. once: 1.4.0
  1724. wrappy: 1.0.2
  1725. optional: true
  1726. inherits@2.0.4:
  1727. optional: true
  1728. is-binary-path@2.1.0:
  1729. dependencies:
  1730. binary-extensions: 2.3.0
  1731. is-core-module@2.13.1:
  1732. dependencies:
  1733. hasown: 2.0.2
  1734. is-extglob@2.1.1: {}
  1735. is-fullwidth-code-point@3.0.0:
  1736. optional: true
  1737. is-glob@4.0.3:
  1738. dependencies:
  1739. is-extglob: 2.1.1
  1740. is-number@7.0.0: {}
  1741. isexe@2.0.0: {}
  1742. js-tokens@4.0.0: {}
  1743. js-tokens@9.0.0: {}
  1744. jsesc@2.5.2: {}
  1745. json-parse-even-better-errors@3.0.2: {}
  1746. json5@2.2.3: {}
  1747. local-pkg@0.5.0:
  1748. dependencies:
  1749. mlly: 1.7.0
  1750. pkg-types: 1.1.1
  1751. lodash-es@4.17.21: {}
  1752. lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.21)(lodash@4.17.21):
  1753. dependencies:
  1754. '@types/lodash-es': 4.17.12
  1755. lodash: 4.17.21
  1756. lodash-es: 4.17.21
  1757. lodash@4.17.21: {}
  1758. lru-cache@5.1.1:
  1759. dependencies:
  1760. yallist: 3.1.1
  1761. magic-string@0.30.10:
  1762. dependencies:
  1763. '@jridgewell/sourcemap-codec': 1.4.15
  1764. make-dir@3.1.0:
  1765. dependencies:
  1766. semver: 6.3.1
  1767. optional: true
  1768. memoize-one@6.0.0: {}
  1769. memorystream@0.3.1: {}
  1770. merge2@1.4.1: {}
  1771. micromatch@4.0.7:
  1772. dependencies:
  1773. braces: 3.0.3
  1774. picomatch: 2.3.1
  1775. mimic-response@2.1.0:
  1776. optional: true
  1777. minimatch@3.1.2:
  1778. dependencies:
  1779. brace-expansion: 1.1.11
  1780. optional: true
  1781. minimatch@9.0.4:
  1782. dependencies:
  1783. brace-expansion: 2.0.1
  1784. minipass@3.3.6:
  1785. dependencies:
  1786. yallist: 4.0.0
  1787. optional: true
  1788. minipass@5.0.0:
  1789. optional: true
  1790. minizlib@2.1.2:
  1791. dependencies:
  1792. minipass: 3.3.6
  1793. yallist: 4.0.0
  1794. optional: true
  1795. mkdirp@1.0.4:
  1796. optional: true
  1797. mlly@1.7.0:
  1798. dependencies:
  1799. acorn: 8.11.3
  1800. pathe: 1.1.2
  1801. pkg-types: 1.1.1
  1802. ufo: 1.5.3
  1803. ms@2.1.2: {}
  1804. muggle-string@0.4.1: {}
  1805. nan@2.19.0:
  1806. optional: true
  1807. nanoid@3.3.7: {}
  1808. node-fetch@2.7.0:
  1809. dependencies:
  1810. whatwg-url: 5.0.0
  1811. optional: true
  1812. node-releases@2.0.14: {}
  1813. nopt@5.0.0:
  1814. dependencies:
  1815. abbrev: 1.1.1
  1816. optional: true
  1817. normalize-path@3.0.0: {}
  1818. normalize-wheel-es@1.2.0: {}
  1819. npm-normalize-package-bin@3.0.1: {}
  1820. npm-run-all2@6.2.0:
  1821. dependencies:
  1822. ansi-styles: 6.2.1
  1823. cross-spawn: 7.0.3
  1824. memorystream: 0.3.1
  1825. minimatch: 9.0.4
  1826. pidtree: 0.6.0
  1827. read-package-json-fast: 3.0.2
  1828. shell-quote: 1.8.1
  1829. npmlog@5.0.1:
  1830. dependencies:
  1831. are-we-there-yet: 2.0.0
  1832. console-control-strings: 1.1.0
  1833. gauge: 3.0.2
  1834. set-blocking: 2.0.0
  1835. optional: true
  1836. object-assign@4.1.1:
  1837. optional: true
  1838. once@1.4.0:
  1839. dependencies:
  1840. wrappy: 1.0.2
  1841. optional: true
  1842. path-browserify@1.0.1: {}
  1843. path-is-absolute@1.0.1:
  1844. optional: true
  1845. path-key@3.1.1: {}
  1846. path-parse@1.0.7: {}
  1847. path2d-polyfill@2.0.1:
  1848. optional: true
  1849. pathe@1.1.2: {}
  1850. pdfjs-dist@3.11.174:
  1851. optionalDependencies:
  1852. canvas: 2.11.2
  1853. path2d-polyfill: 2.0.1
  1854. transitivePeerDependencies:
  1855. - encoding
  1856. - supports-color
  1857. picocolors@1.0.1: {}
  1858. picomatch@2.3.1: {}
  1859. pidtree@0.6.0: {}
  1860. pinia@2.1.7(typescript@5.4.5)(vue@3.4.27(typescript@5.4.5)):
  1861. dependencies:
  1862. '@vue/devtools-api': 6.6.1
  1863. vue: 3.4.27(typescript@5.4.5)
  1864. vue-demi: 0.14.7(vue@3.4.27(typescript@5.4.5))
  1865. optionalDependencies:
  1866. typescript: 5.4.5
  1867. pkg-types@1.1.1:
  1868. dependencies:
  1869. confbox: 0.1.7
  1870. mlly: 1.7.0
  1871. pathe: 1.1.2
  1872. postcss@8.4.38:
  1873. dependencies:
  1874. nanoid: 3.3.7
  1875. picocolors: 1.0.1
  1876. source-map-js: 1.2.0
  1877. queue-microtask@1.2.3: {}
  1878. read-package-json-fast@3.0.2:
  1879. dependencies:
  1880. json-parse-even-better-errors: 3.0.2
  1881. npm-normalize-package-bin: 3.0.1
  1882. readable-stream@3.6.2:
  1883. dependencies:
  1884. inherits: 2.0.4
  1885. string_decoder: 1.3.0
  1886. util-deprecate: 1.0.2
  1887. optional: true
  1888. readdirp@3.6.0:
  1889. dependencies:
  1890. picomatch: 2.3.1
  1891. resolve@1.22.8:
  1892. dependencies:
  1893. is-core-module: 2.13.1
  1894. path-parse: 1.0.7
  1895. supports-preserve-symlinks-flag: 1.0.0
  1896. reusify@1.0.4: {}
  1897. rimraf@3.0.2:
  1898. dependencies:
  1899. glob: 7.2.3
  1900. optional: true
  1901. rollup@4.18.0:
  1902. dependencies:
  1903. '@types/estree': 1.0.5
  1904. optionalDependencies:
  1905. '@rollup/rollup-android-arm-eabi': 4.18.0
  1906. '@rollup/rollup-android-arm64': 4.18.0
  1907. '@rollup/rollup-darwin-arm64': 4.18.0
  1908. '@rollup/rollup-darwin-x64': 4.18.0
  1909. '@rollup/rollup-linux-arm-gnueabihf': 4.18.0
  1910. '@rollup/rollup-linux-arm-musleabihf': 4.18.0
  1911. '@rollup/rollup-linux-arm64-gnu': 4.18.0
  1912. '@rollup/rollup-linux-arm64-musl': 4.18.0
  1913. '@rollup/rollup-linux-powerpc64le-gnu': 4.18.0
  1914. '@rollup/rollup-linux-riscv64-gnu': 4.18.0
  1915. '@rollup/rollup-linux-s390x-gnu': 4.18.0
  1916. '@rollup/rollup-linux-x64-gnu': 4.18.0
  1917. '@rollup/rollup-linux-x64-musl': 4.18.0
  1918. '@rollup/rollup-win32-arm64-msvc': 4.18.0
  1919. '@rollup/rollup-win32-ia32-msvc': 4.18.0
  1920. '@rollup/rollup-win32-x64-msvc': 4.18.0
  1921. fsevents: 2.3.3
  1922. run-parallel@1.2.0:
  1923. dependencies:
  1924. queue-microtask: 1.2.3
  1925. safe-buffer@5.2.1:
  1926. optional: true
  1927. sass@1.77.2:
  1928. dependencies:
  1929. chokidar: 3.6.0
  1930. immutable: 4.3.6
  1931. source-map-js: 1.2.0
  1932. scule@1.3.0: {}
  1933. semver@6.3.1: {}
  1934. semver@7.6.2: {}
  1935. set-blocking@2.0.0:
  1936. optional: true
  1937. shebang-command@2.0.0:
  1938. dependencies:
  1939. shebang-regex: 3.0.0
  1940. shebang-regex@3.0.0: {}
  1941. shell-quote@1.8.1: {}
  1942. signal-exit@3.0.7:
  1943. optional: true
  1944. simple-concat@1.0.1:
  1945. optional: true
  1946. simple-get@3.1.1:
  1947. dependencies:
  1948. decompress-response: 4.2.1
  1949. once: 1.4.0
  1950. simple-concat: 1.0.1
  1951. optional: true
  1952. source-map-js@1.2.0: {}
  1953. string-width@4.2.3:
  1954. dependencies:
  1955. emoji-regex: 8.0.0
  1956. is-fullwidth-code-point: 3.0.0
  1957. strip-ansi: 6.0.1
  1958. optional: true
  1959. string_decoder@1.3.0:
  1960. dependencies:
  1961. safe-buffer: 5.2.1
  1962. optional: true
  1963. strip-ansi@6.0.1:
  1964. dependencies:
  1965. ansi-regex: 5.0.1
  1966. optional: true
  1967. strip-literal@2.1.0:
  1968. dependencies:
  1969. js-tokens: 9.0.0
  1970. supports-color@5.5.0:
  1971. dependencies:
  1972. has-flag: 3.0.0
  1973. supports-preserve-symlinks-flag@1.0.0: {}
  1974. svg-tags@1.0.0: {}
  1975. tar@6.2.1:
  1976. dependencies:
  1977. chownr: 2.0.0
  1978. fs-minipass: 2.1.0
  1979. minipass: 5.0.0
  1980. minizlib: 2.1.2
  1981. mkdirp: 1.0.4
  1982. yallist: 4.0.0
  1983. optional: true
  1984. to-fast-properties@2.0.0: {}
  1985. to-regex-range@5.0.1:
  1986. dependencies:
  1987. is-number: 7.0.0
  1988. tr46@0.0.3:
  1989. optional: true
  1990. typescript@5.4.5: {}
  1991. ufo@1.5.3: {}
  1992. undici-types@5.26.5: {}
  1993. unimport@3.7.2(rollup@4.18.0):
  1994. dependencies:
  1995. '@rollup/pluginutils': 5.1.0(rollup@4.18.0)
  1996. acorn: 8.11.3
  1997. escape-string-regexp: 5.0.0
  1998. estree-walker: 3.0.3
  1999. fast-glob: 3.3.2
  2000. local-pkg: 0.5.0
  2001. magic-string: 0.30.10
  2002. mlly: 1.7.0
  2003. pathe: 1.1.2
  2004. pkg-types: 1.1.1
  2005. scule: 1.3.0
  2006. strip-literal: 2.1.0
  2007. unplugin: 1.10.1
  2008. transitivePeerDependencies:
  2009. - rollup
  2010. unplugin-auto-import@0.17.6(@vueuse/core@9.13.0(vue@3.4.27(typescript@5.4.5)))(rollup@4.18.0):
  2011. dependencies:
  2012. '@antfu/utils': 0.7.8
  2013. '@rollup/pluginutils': 5.1.0(rollup@4.18.0)
  2014. fast-glob: 3.3.2
  2015. local-pkg: 0.5.0
  2016. magic-string: 0.30.10
  2017. minimatch: 9.0.4
  2018. unimport: 3.7.2(rollup@4.18.0)
  2019. unplugin: 1.10.1
  2020. optionalDependencies:
  2021. '@vueuse/core': 9.13.0(vue@3.4.27(typescript@5.4.5))
  2022. transitivePeerDependencies:
  2023. - rollup
  2024. unplugin-vue-components@0.27.0(@babel/parser@7.24.6)(rollup@4.18.0)(vue@3.4.27(typescript@5.4.5)):
  2025. dependencies:
  2026. '@antfu/utils': 0.7.8
  2027. '@rollup/pluginutils': 5.1.0(rollup@4.18.0)
  2028. chokidar: 3.6.0
  2029. debug: 4.3.4
  2030. fast-glob: 3.3.2
  2031. local-pkg: 0.5.0
  2032. magic-string: 0.30.10
  2033. minimatch: 9.0.4
  2034. resolve: 1.22.8
  2035. unplugin: 1.10.1
  2036. vue: 3.4.27(typescript@5.4.5)
  2037. optionalDependencies:
  2038. '@babel/parser': 7.24.6
  2039. transitivePeerDependencies:
  2040. - rollup
  2041. - supports-color
  2042. unplugin@1.10.1:
  2043. dependencies:
  2044. acorn: 8.11.3
  2045. chokidar: 3.6.0
  2046. webpack-sources: 3.2.3
  2047. webpack-virtual-modules: 0.6.1
  2048. update-browserslist-db@1.0.16(browserslist@4.23.0):
  2049. dependencies:
  2050. browserslist: 4.23.0
  2051. escalade: 3.1.2
  2052. picocolors: 1.0.1
  2053. util-deprecate@1.0.2:
  2054. optional: true
  2055. vite@5.2.11(@types/node@20.12.12)(sass@1.77.2):
  2056. dependencies:
  2057. esbuild: 0.20.2
  2058. postcss: 8.4.38
  2059. rollup: 4.18.0
  2060. optionalDependencies:
  2061. '@types/node': 20.12.12
  2062. fsevents: 2.3.3
  2063. sass: 1.77.2
  2064. vue-demi@0.14.7(vue@3.4.27(typescript@5.4.5)):
  2065. dependencies:
  2066. vue: 3.4.27(typescript@5.4.5)
  2067. vue-pdf-embed@2.0.3(vue@3.4.27(typescript@5.4.5)):
  2068. dependencies:
  2069. pdfjs-dist: 3.11.174
  2070. vue: 3.4.27(typescript@5.4.5)
  2071. transitivePeerDependencies:
  2072. - encoding
  2073. - supports-color
  2074. vue-router@4.3.2(vue@3.4.27(typescript@5.4.5)):
  2075. dependencies:
  2076. '@vue/devtools-api': 6.6.1
  2077. vue: 3.4.27(typescript@5.4.5)
  2078. vue-template-compiler@2.7.16:
  2079. dependencies:
  2080. de-indent: 1.0.2
  2081. he: 1.2.0
  2082. vue-tsc@2.0.19(typescript@5.4.5):
  2083. dependencies:
  2084. '@volar/typescript': 2.2.5
  2085. '@vue/language-core': 2.0.19(typescript@5.4.5)
  2086. semver: 7.6.2
  2087. typescript: 5.4.5
  2088. vue@3.4.27(typescript@5.4.5):
  2089. dependencies:
  2090. '@vue/compiler-dom': 3.4.27
  2091. '@vue/compiler-sfc': 3.4.27
  2092. '@vue/runtime-dom': 3.4.27
  2093. '@vue/server-renderer': 3.4.27(vue@3.4.27(typescript@5.4.5))
  2094. '@vue/shared': 3.4.27
  2095. optionalDependencies:
  2096. typescript: 5.4.5
  2097. webidl-conversions@3.0.1:
  2098. optional: true
  2099. webpack-sources@3.2.3: {}
  2100. webpack-virtual-modules@0.6.1: {}
  2101. whatwg-url@5.0.0:
  2102. dependencies:
  2103. tr46: 0.0.3
  2104. webidl-conversions: 3.0.1
  2105. optional: true
  2106. which@2.0.2:
  2107. dependencies:
  2108. isexe: 2.0.0
  2109. wide-align@1.1.5:
  2110. dependencies:
  2111. string-width: 4.2.3
  2112. optional: true
  2113. wrappy@1.0.2:
  2114. optional: true
  2115. yallist@3.1.1: {}
  2116. yallist@4.0.0:
  2117. optional: true