pnpm-lock.yaml 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@vueuse/components':
  9. specifier: ^10.6.1
  10. version: 10.11.1(vue@3.5.13)
  11. '@vueuse/core':
  12. specifier: ^10.6.1
  13. version: 10.11.1(vue@3.5.13)
  14. '@vueuse/integrations':
  15. specifier: ^10.6.1
  16. version: 10.11.1(async-validator@4.2.5)(axios@1.9.0)(vue@3.5.13)
  17. '@vueuse/sound':
  18. specifier: ^2.0.1
  19. version: 2.1.3(vue@3.5.13)
  20. axios:
  21. specifier: ^1.6.2
  22. version: 1.9.0
  23. naive-ui:
  24. specifier: ^2.35.0
  25. version: 2.41.0(vue@3.5.13)
  26. pinia:
  27. specifier: ^2.1.7
  28. version: 2.3.1(vue@3.5.13)
  29. pnpm:
  30. specifier: ^10.15.0
  31. version: 10.15.0
  32. sharp:
  33. specifier: ^0.32.6
  34. version: 0.32.6
  35. svgo:
  36. specifier: ^3.0.4
  37. version: 3.3.2
  38. vite-plugin-image-optimizer:
  39. specifier: ^1.1.7
  40. version: 1.1.8(vite@5.4.18(sass@1.87.0))
  41. vue:
  42. specifier: ^3.3.8
  43. version: 3.5.13
  44. vue-router:
  45. specifier: ^4.0.13
  46. version: 4.5.1(vue@3.5.13)
  47. devDependencies:
  48. '@vitejs/plugin-vue':
  49. specifier: ^4.5.0
  50. version: 4.6.2(vite@5.4.18(sass@1.87.0))(vue@3.5.13)
  51. sass:
  52. specifier: ^1.69.5
  53. version: 1.87.0
  54. unplugin-auto-import:
  55. specifier: ^0.16.7
  56. version: 0.16.7(@vueuse/core@10.11.1(vue@3.5.13))(rollup@4.40.0)
  57. unplugin-vue-components:
  58. specifier: ^0.25.2
  59. version: 0.25.2(@babel/parser@7.27.0)(rollup@4.40.0)(vue@3.5.13)
  60. vite:
  61. specifier: ^5.0.0
  62. version: 5.4.18(sass@1.87.0)
  63. packages:
  64. '@antfu/utils@0.7.10':
  65. resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
  66. '@babel/helper-string-parser@7.25.9':
  67. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  68. engines: {node: '>=6.9.0'}
  69. '@babel/helper-validator-identifier@7.25.9':
  70. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  71. engines: {node: '>=6.9.0'}
  72. '@babel/parser@7.27.0':
  73. resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
  74. engines: {node: '>=6.0.0'}
  75. hasBin: true
  76. '@babel/types@7.27.0':
  77. resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
  78. engines: {node: '>=6.9.0'}
  79. '@css-render/plugin-bem@0.15.14':
  80. resolution: {integrity: sha512-QK513CJ7yEQxm/P3EwsI+d+ha8kSOcjGvD6SevM41neEMxdULE+18iuQK6tEChAWMOQNQPLG/Rw3Khb69r5neg==}
  81. peerDependencies:
  82. css-render: ~0.15.14
  83. '@css-render/vue3-ssr@0.15.14':
  84. resolution: {integrity: sha512-//8027GSbxE9n3QlD73xFY6z4ZbHbvrOVB7AO6hsmrEzGbg+h2A09HboUyDgu+xsmj7JnvJD39Irt+2D0+iV8g==}
  85. peerDependencies:
  86. vue: ^3.0.11
  87. '@emotion/hash@0.8.0':
  88. resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
  89. '@esbuild/aix-ppc64@0.21.5':
  90. resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
  91. engines: {node: '>=12'}
  92. cpu: [ppc64]
  93. os: [aix]
  94. '@esbuild/android-arm64@0.21.5':
  95. resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
  96. engines: {node: '>=12'}
  97. cpu: [arm64]
  98. os: [android]
  99. '@esbuild/android-arm@0.21.5':
  100. resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
  101. engines: {node: '>=12'}
  102. cpu: [arm]
  103. os: [android]
  104. '@esbuild/android-x64@0.21.5':
  105. resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
  106. engines: {node: '>=12'}
  107. cpu: [x64]
  108. os: [android]
  109. '@esbuild/darwin-arm64@0.21.5':
  110. resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
  111. engines: {node: '>=12'}
  112. cpu: [arm64]
  113. os: [darwin]
  114. '@esbuild/darwin-x64@0.21.5':
  115. resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
  116. engines: {node: '>=12'}
  117. cpu: [x64]
  118. os: [darwin]
  119. '@esbuild/freebsd-arm64@0.21.5':
  120. resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
  121. engines: {node: '>=12'}
  122. cpu: [arm64]
  123. os: [freebsd]
  124. '@esbuild/freebsd-x64@0.21.5':
  125. resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
  126. engines: {node: '>=12'}
  127. cpu: [x64]
  128. os: [freebsd]
  129. '@esbuild/linux-arm64@0.21.5':
  130. resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
  131. engines: {node: '>=12'}
  132. cpu: [arm64]
  133. os: [linux]
  134. '@esbuild/linux-arm@0.21.5':
  135. resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
  136. engines: {node: '>=12'}
  137. cpu: [arm]
  138. os: [linux]
  139. '@esbuild/linux-ia32@0.21.5':
  140. resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
  141. engines: {node: '>=12'}
  142. cpu: [ia32]
  143. os: [linux]
  144. '@esbuild/linux-loong64@0.21.5':
  145. resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
  146. engines: {node: '>=12'}
  147. cpu: [loong64]
  148. os: [linux]
  149. '@esbuild/linux-mips64el@0.21.5':
  150. resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
  151. engines: {node: '>=12'}
  152. cpu: [mips64el]
  153. os: [linux]
  154. '@esbuild/linux-ppc64@0.21.5':
  155. resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
  156. engines: {node: '>=12'}
  157. cpu: [ppc64]
  158. os: [linux]
  159. '@esbuild/linux-riscv64@0.21.5':
  160. resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
  161. engines: {node: '>=12'}
  162. cpu: [riscv64]
  163. os: [linux]
  164. '@esbuild/linux-s390x@0.21.5':
  165. resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
  166. engines: {node: '>=12'}
  167. cpu: [s390x]
  168. os: [linux]
  169. '@esbuild/linux-x64@0.21.5':
  170. resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
  171. engines: {node: '>=12'}
  172. cpu: [x64]
  173. os: [linux]
  174. '@esbuild/netbsd-x64@0.21.5':
  175. resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
  176. engines: {node: '>=12'}
  177. cpu: [x64]
  178. os: [netbsd]
  179. '@esbuild/openbsd-x64@0.21.5':
  180. resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
  181. engines: {node: '>=12'}
  182. cpu: [x64]
  183. os: [openbsd]
  184. '@esbuild/sunos-x64@0.21.5':
  185. resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
  186. engines: {node: '>=12'}
  187. cpu: [x64]
  188. os: [sunos]
  189. '@esbuild/win32-arm64@0.21.5':
  190. resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
  191. engines: {node: '>=12'}
  192. cpu: [arm64]
  193. os: [win32]
  194. '@esbuild/win32-ia32@0.21.5':
  195. resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
  196. engines: {node: '>=12'}
  197. cpu: [ia32]
  198. os: [win32]
  199. '@esbuild/win32-x64@0.21.5':
  200. resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
  201. engines: {node: '>=12'}
  202. cpu: [x64]
  203. os: [win32]
  204. '@jridgewell/sourcemap-codec@1.5.0':
  205. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  206. '@juggle/resize-observer@3.4.0':
  207. resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
  208. '@nodelib/fs.scandir@2.1.5':
  209. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  210. engines: {node: '>= 8'}
  211. '@nodelib/fs.stat@2.0.5':
  212. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  213. engines: {node: '>= 8'}
  214. '@nodelib/fs.walk@1.2.8':
  215. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  216. engines: {node: '>= 8'}
  217. '@parcel/watcher-android-arm64@2.5.1':
  218. resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
  219. engines: {node: '>= 10.0.0'}
  220. cpu: [arm64]
  221. os: [android]
  222. '@parcel/watcher-darwin-arm64@2.5.1':
  223. resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
  224. engines: {node: '>= 10.0.0'}
  225. cpu: [arm64]
  226. os: [darwin]
  227. '@parcel/watcher-darwin-x64@2.5.1':
  228. resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
  229. engines: {node: '>= 10.0.0'}
  230. cpu: [x64]
  231. os: [darwin]
  232. '@parcel/watcher-freebsd-x64@2.5.1':
  233. resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
  234. engines: {node: '>= 10.0.0'}
  235. cpu: [x64]
  236. os: [freebsd]
  237. '@parcel/watcher-linux-arm-glibc@2.5.1':
  238. resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
  239. engines: {node: '>= 10.0.0'}
  240. cpu: [arm]
  241. os: [linux]
  242. libc: [glibc]
  243. '@parcel/watcher-linux-arm-musl@2.5.1':
  244. resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
  245. engines: {node: '>= 10.0.0'}
  246. cpu: [arm]
  247. os: [linux]
  248. libc: [musl]
  249. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  250. resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
  251. engines: {node: '>= 10.0.0'}
  252. cpu: [arm64]
  253. os: [linux]
  254. libc: [glibc]
  255. '@parcel/watcher-linux-arm64-musl@2.5.1':
  256. resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
  257. engines: {node: '>= 10.0.0'}
  258. cpu: [arm64]
  259. os: [linux]
  260. libc: [musl]
  261. '@parcel/watcher-linux-x64-glibc@2.5.1':
  262. resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
  263. engines: {node: '>= 10.0.0'}
  264. cpu: [x64]
  265. os: [linux]
  266. libc: [glibc]
  267. '@parcel/watcher-linux-x64-musl@2.5.1':
  268. resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
  269. engines: {node: '>= 10.0.0'}
  270. cpu: [x64]
  271. os: [linux]
  272. libc: [musl]
  273. '@parcel/watcher-win32-arm64@2.5.1':
  274. resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
  275. engines: {node: '>= 10.0.0'}
  276. cpu: [arm64]
  277. os: [win32]
  278. '@parcel/watcher-win32-ia32@2.5.1':
  279. resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
  280. engines: {node: '>= 10.0.0'}
  281. cpu: [ia32]
  282. os: [win32]
  283. '@parcel/watcher-win32-x64@2.5.1':
  284. resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
  285. engines: {node: '>= 10.0.0'}
  286. cpu: [x64]
  287. os: [win32]
  288. '@parcel/watcher@2.5.1':
  289. resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
  290. engines: {node: '>= 10.0.0'}
  291. '@rollup/pluginutils@5.1.4':
  292. resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
  293. engines: {node: '>=14.0.0'}
  294. peerDependencies:
  295. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  296. peerDependenciesMeta:
  297. rollup:
  298. optional: true
  299. '@rollup/rollup-android-arm-eabi@4.40.0':
  300. resolution: {integrity: sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg==}
  301. cpu: [arm]
  302. os: [android]
  303. '@rollup/rollup-android-arm64@4.40.0':
  304. resolution: {integrity: sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w==}
  305. cpu: [arm64]
  306. os: [android]
  307. '@rollup/rollup-darwin-arm64@4.40.0':
  308. resolution: {integrity: sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ==}
  309. cpu: [arm64]
  310. os: [darwin]
  311. '@rollup/rollup-darwin-x64@4.40.0':
  312. resolution: {integrity: sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA==}
  313. cpu: [x64]
  314. os: [darwin]
  315. '@rollup/rollup-freebsd-arm64@4.40.0':
  316. resolution: {integrity: sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg==}
  317. cpu: [arm64]
  318. os: [freebsd]
  319. '@rollup/rollup-freebsd-x64@4.40.0':
  320. resolution: {integrity: sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw==}
  321. cpu: [x64]
  322. os: [freebsd]
  323. '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
  324. resolution: {integrity: sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==}
  325. cpu: [arm]
  326. os: [linux]
  327. libc: [glibc]
  328. '@rollup/rollup-linux-arm-musleabihf@4.40.0':
  329. resolution: {integrity: sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==}
  330. cpu: [arm]
  331. os: [linux]
  332. libc: [musl]
  333. '@rollup/rollup-linux-arm64-gnu@4.40.0':
  334. resolution: {integrity: sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==}
  335. cpu: [arm64]
  336. os: [linux]
  337. libc: [glibc]
  338. '@rollup/rollup-linux-arm64-musl@4.40.0':
  339. resolution: {integrity: sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==}
  340. cpu: [arm64]
  341. os: [linux]
  342. libc: [musl]
  343. '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
  344. resolution: {integrity: sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==}
  345. cpu: [loong64]
  346. os: [linux]
  347. libc: [glibc]
  348. '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
  349. resolution: {integrity: sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==}
  350. cpu: [ppc64]
  351. os: [linux]
  352. libc: [glibc]
  353. '@rollup/rollup-linux-riscv64-gnu@4.40.0':
  354. resolution: {integrity: sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==}
  355. cpu: [riscv64]
  356. os: [linux]
  357. libc: [glibc]
  358. '@rollup/rollup-linux-riscv64-musl@4.40.0':
  359. resolution: {integrity: sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==}
  360. cpu: [riscv64]
  361. os: [linux]
  362. libc: [musl]
  363. '@rollup/rollup-linux-s390x-gnu@4.40.0':
  364. resolution: {integrity: sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==}
  365. cpu: [s390x]
  366. os: [linux]
  367. libc: [glibc]
  368. '@rollup/rollup-linux-x64-gnu@4.40.0':
  369. resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==}
  370. cpu: [x64]
  371. os: [linux]
  372. libc: [glibc]
  373. '@rollup/rollup-linux-x64-musl@4.40.0':
  374. resolution: {integrity: sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==}
  375. cpu: [x64]
  376. os: [linux]
  377. libc: [musl]
  378. '@rollup/rollup-win32-arm64-msvc@4.40.0':
  379. resolution: {integrity: sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==}
  380. cpu: [arm64]
  381. os: [win32]
  382. '@rollup/rollup-win32-ia32-msvc@4.40.0':
  383. resolution: {integrity: sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA==}
  384. cpu: [ia32]
  385. os: [win32]
  386. '@rollup/rollup-win32-x64-msvc@4.40.0':
  387. resolution: {integrity: sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ==}
  388. cpu: [x64]
  389. os: [win32]
  390. '@trysound/sax@0.2.0':
  391. resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
  392. engines: {node: '>=10.13.0'}
  393. '@types/estree@1.0.7':
  394. resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
  395. '@types/katex@0.16.7':
  396. resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==}
  397. '@types/lodash-es@4.17.12':
  398. resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
  399. '@types/lodash@4.17.16':
  400. resolution: {integrity: sha512-HX7Em5NYQAXKW+1T+FiuG27NGwzJfCX3s1GjOa7ujxZa52kjJLOr4FUxT+giF6Tgxv1e+/czV/iTtBw27WTU9g==}
  401. '@types/web-bluetooth@0.0.20':
  402. resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
  403. '@vitejs/plugin-vue@4.6.2':
  404. resolution: {integrity: sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==}
  405. engines: {node: ^14.18.0 || >=16.0.0}
  406. peerDependencies:
  407. vite: ^4.0.0 || ^5.0.0
  408. vue: ^3.2.25
  409. '@vue/compiler-core@3.5.13':
  410. resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
  411. '@vue/compiler-dom@3.5.13':
  412. resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
  413. '@vue/compiler-sfc@3.5.13':
  414. resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
  415. '@vue/compiler-ssr@3.5.13':
  416. resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
  417. '@vue/devtools-api@6.6.4':
  418. resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
  419. '@vue/reactivity@3.5.13':
  420. resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
  421. '@vue/runtime-core@3.5.13':
  422. resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
  423. '@vue/runtime-dom@3.5.13':
  424. resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
  425. '@vue/server-renderer@3.5.13':
  426. resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
  427. peerDependencies:
  428. vue: 3.5.13
  429. '@vue/shared@3.5.13':
  430. resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
  431. '@vueuse/components@10.11.1':
  432. resolution: {integrity: sha512-ThcreQCX/eq61sLkLKjigD4PQvs3Wy4zglICvQH9tP6xl87y5KsQEoizn6OI+R3hrOgwQHLJe7Y0wLLh3fBKcg==}
  433. '@vueuse/core@10.11.1':
  434. resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
  435. '@vueuse/integrations@10.11.1':
  436. resolution: {integrity: sha512-Y5hCGBguN+vuVYTZmdd/IMXLOdfS60zAmDmFYc4BKBcMUPZH1n4tdyDECCPjXm0bNT3ZRUy1xzTLGaUje8Xyaw==}
  437. peerDependencies:
  438. async-validator: ^4
  439. axios: ^1
  440. change-case: ^4
  441. drauu: ^0.3
  442. focus-trap: ^7
  443. fuse.js: ^6
  444. idb-keyval: ^6
  445. jwt-decode: ^3
  446. nprogress: ^0.2
  447. qrcode: ^1.5
  448. sortablejs: ^1
  449. universal-cookie: ^6
  450. peerDependenciesMeta:
  451. async-validator:
  452. optional: true
  453. axios:
  454. optional: true
  455. change-case:
  456. optional: true
  457. drauu:
  458. optional: true
  459. focus-trap:
  460. optional: true
  461. fuse.js:
  462. optional: true
  463. idb-keyval:
  464. optional: true
  465. jwt-decode:
  466. optional: true
  467. nprogress:
  468. optional: true
  469. qrcode:
  470. optional: true
  471. sortablejs:
  472. optional: true
  473. universal-cookie:
  474. optional: true
  475. '@vueuse/metadata@10.11.1':
  476. resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
  477. '@vueuse/shared@10.11.1':
  478. resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
  479. '@vueuse/sound@2.1.3':
  480. resolution: {integrity: sha512-yZW1dzMJqCp57+ZM1tJ2oPye4RJvWhzkUpGvokB5fhk/jAmOwKGbdvm8O7dJ/YAmP+eLFCBQmELjso6sXSfnAg==}
  481. peerDependencies:
  482. '@vue/composition-api': ^1.0.0-rc.1
  483. vue: ^2.0.0 || >=3.0.0
  484. peerDependenciesMeta:
  485. '@vue/composition-api':
  486. optional: true
  487. acorn@8.14.1:
  488. resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
  489. engines: {node: '>=0.4.0'}
  490. hasBin: true
  491. ansi-colors@4.1.3:
  492. resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
  493. engines: {node: '>=6'}
  494. anymatch@3.1.3:
  495. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  496. engines: {node: '>= 8'}
  497. async-validator@4.2.5:
  498. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  499. asynckit@0.4.0:
  500. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  501. axios@1.9.0:
  502. resolution: {integrity: sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==}
  503. b4a@1.6.7:
  504. resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
  505. balanced-match@1.0.2:
  506. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  507. bare-events@2.5.4:
  508. resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==}
  509. bare-fs@4.1.3:
  510. resolution: {integrity: sha512-OeEZYIg+2qepaWLyphaOXHAHKo3xkM8y3BeGAvHdMN8GNWvEAU1Yw6rYpGzu/wDDbKxgEjVeVDpgGhDzaeMpjg==}
  511. engines: {bare: '>=1.16.0'}
  512. peerDependencies:
  513. bare-buffer: '*'
  514. peerDependenciesMeta:
  515. bare-buffer:
  516. optional: true
  517. bare-os@3.6.1:
  518. resolution: {integrity: sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==}
  519. engines: {bare: '>=1.14.0'}
  520. bare-path@3.0.0:
  521. resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
  522. bare-stream@2.6.5:
  523. resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==}
  524. peerDependencies:
  525. bare-buffer: '*'
  526. bare-events: '*'
  527. peerDependenciesMeta:
  528. bare-buffer:
  529. optional: true
  530. bare-events:
  531. optional: true
  532. base64-js@1.5.1:
  533. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  534. binary-extensions@2.3.0:
  535. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  536. engines: {node: '>=8'}
  537. bl@4.1.0:
  538. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  539. boolbase@1.0.0:
  540. resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
  541. brace-expansion@2.0.1:
  542. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  543. braces@3.0.3:
  544. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  545. engines: {node: '>=8'}
  546. buffer@5.7.1:
  547. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  548. call-bind-apply-helpers@1.0.2:
  549. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  550. engines: {node: '>= 0.4'}
  551. chokidar@3.6.0:
  552. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  553. engines: {node: '>= 8.10.0'}
  554. chokidar@4.0.3:
  555. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  556. engines: {node: '>= 14.16.0'}
  557. chownr@1.1.4:
  558. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  559. color-convert@2.0.1:
  560. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  561. engines: {node: '>=7.0.0'}
  562. color-name@1.1.4:
  563. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  564. color-string@1.9.1:
  565. resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
  566. color@4.2.3:
  567. resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
  568. engines: {node: '>=12.5.0'}
  569. combined-stream@1.0.8:
  570. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  571. engines: {node: '>= 0.8'}
  572. commander@7.2.0:
  573. resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
  574. engines: {node: '>= 10'}
  575. confbox@0.1.8:
  576. resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
  577. confbox@0.2.2:
  578. resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==}
  579. css-render@0.15.14:
  580. resolution: {integrity: sha512-9nF4PdUle+5ta4W5SyZdLCCmFd37uVimSjg1evcTqKJCyvCEEj12WKzOSBNak6r4im4J4iYXKH1OWpUV5LBYFg==}
  581. css-select@5.1.0:
  582. resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
  583. css-tree@2.2.1:
  584. resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
  585. engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
  586. css-tree@2.3.1:
  587. resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
  588. engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
  589. css-what@6.1.0:
  590. resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
  591. engines: {node: '>= 6'}
  592. csso@5.0.5:
  593. resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
  594. engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
  595. csstype@3.0.11:
  596. resolution: {integrity: sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==}
  597. csstype@3.1.3:
  598. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  599. date-fns-tz@3.2.0:
  600. resolution: {integrity: sha512-sg8HqoTEulcbbbVXeg84u5UnlsQa8GS5QXMqjjYIhS4abEVVKIUwe0/l/UhrZdKaL/W5eWZNlbTeEIiOXTcsBQ==}
  601. peerDependencies:
  602. date-fns: ^3.0.0 || ^4.0.0
  603. date-fns@3.6.0:
  604. resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==}
  605. debug@4.4.0:
  606. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  607. engines: {node: '>=6.0'}
  608. peerDependencies:
  609. supports-color: '*'
  610. peerDependenciesMeta:
  611. supports-color:
  612. optional: true
  613. decompress-response@6.0.0:
  614. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  615. engines: {node: '>=10'}
  616. deep-extend@0.6.0:
  617. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  618. engines: {node: '>=4.0.0'}
  619. delayed-stream@1.0.0:
  620. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  621. engines: {node: '>=0.4.0'}
  622. detect-libc@1.0.3:
  623. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  624. engines: {node: '>=0.10'}
  625. hasBin: true
  626. detect-libc@2.0.4:
  627. resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
  628. engines: {node: '>=8'}
  629. dom-serializer@2.0.0:
  630. resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
  631. domelementtype@2.3.0:
  632. resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
  633. domhandler@5.0.3:
  634. resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
  635. engines: {node: '>= 4'}
  636. domutils@3.2.2:
  637. resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
  638. dunder-proto@1.0.1:
  639. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  640. engines: {node: '>= 0.4'}
  641. end-of-stream@1.4.4:
  642. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  643. entities@4.5.0:
  644. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  645. engines: {node: '>=0.12'}
  646. es-define-property@1.0.1:
  647. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  648. engines: {node: '>= 0.4'}
  649. es-errors@1.3.0:
  650. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  651. engines: {node: '>= 0.4'}
  652. es-object-atoms@1.1.1:
  653. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  654. engines: {node: '>= 0.4'}
  655. es-set-tostringtag@2.1.0:
  656. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  657. engines: {node: '>= 0.4'}
  658. esbuild@0.21.5:
  659. resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
  660. engines: {node: '>=12'}
  661. hasBin: true
  662. escape-string-regexp@5.0.0:
  663. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  664. engines: {node: '>=12'}
  665. estree-walker@2.0.2:
  666. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  667. estree-walker@3.0.3:
  668. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  669. evtd@0.2.4:
  670. resolution: {integrity: sha512-qaeGN5bx63s/AXgQo8gj6fBkxge+OoLddLniox5qtLAEY5HSnuSlISXVPxnSae1dWblvTh4/HoMIB+mbMsvZzw==}
  671. expand-template@2.0.3:
  672. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  673. engines: {node: '>=6'}
  674. exsolve@1.0.5:
  675. resolution: {integrity: sha512-pz5dvkYYKQ1AHVrgOzBKWeP4u4FRb3a6DNK2ucr0OoNwYIU4QWsJ+NM36LLzORT+z845MzKHHhpXiUF5nvQoJg==}
  676. fast-fifo@1.3.2:
  677. resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
  678. fast-glob@3.3.3:
  679. resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
  680. engines: {node: '>=8.6.0'}
  681. fastq@1.19.1:
  682. resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
  683. fill-range@7.1.1:
  684. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  685. engines: {node: '>=8'}
  686. follow-redirects@1.15.9:
  687. resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
  688. engines: {node: '>=4.0'}
  689. peerDependencies:
  690. debug: '*'
  691. peerDependenciesMeta:
  692. debug:
  693. optional: true
  694. form-data@4.0.2:
  695. resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
  696. engines: {node: '>= 6'}
  697. fs-constants@1.0.0:
  698. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  699. fsevents@2.3.3:
  700. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  701. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  702. os: [darwin]
  703. function-bind@1.1.2:
  704. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  705. get-intrinsic@1.3.0:
  706. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  707. engines: {node: '>= 0.4'}
  708. get-proto@1.0.1:
  709. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  710. engines: {node: '>= 0.4'}
  711. github-from-package@0.0.0:
  712. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  713. glob-parent@5.1.2:
  714. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  715. engines: {node: '>= 6'}
  716. gopd@1.2.0:
  717. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  718. engines: {node: '>= 0.4'}
  719. has-symbols@1.1.0:
  720. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  721. engines: {node: '>= 0.4'}
  722. has-tostringtag@1.0.2:
  723. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  724. engines: {node: '>= 0.4'}
  725. hasown@2.0.2:
  726. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  727. engines: {node: '>= 0.4'}
  728. highlight.js@11.11.1:
  729. resolution: {integrity: sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==}
  730. engines: {node: '>=12.0.0'}
  731. howler@2.2.4:
  732. resolution: {integrity: sha512-iARIBPgcQrwtEr+tALF+rapJ8qSc+Set2GJQl7xT1MQzWaVkFebdJhR3alVlSiUf5U7nAANKuj3aWpwerocD5w==}
  733. ieee754@1.2.1:
  734. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  735. immutable@5.1.1:
  736. resolution: {integrity: sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==}
  737. inherits@2.0.4:
  738. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  739. ini@1.3.8:
  740. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  741. is-arrayish@0.3.2:
  742. resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
  743. is-binary-path@2.1.0:
  744. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  745. engines: {node: '>=8'}
  746. is-core-module@2.16.1:
  747. resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  748. engines: {node: '>= 0.4'}
  749. is-extglob@2.1.1:
  750. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  751. engines: {node: '>=0.10.0'}
  752. is-glob@4.0.3:
  753. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  754. engines: {node: '>=0.10.0'}
  755. is-number@7.0.0:
  756. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  757. engines: {node: '>=0.12.0'}
  758. js-tokens@9.0.1:
  759. resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
  760. local-pkg@0.4.3:
  761. resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
  762. engines: {node: '>=14'}
  763. local-pkg@0.5.1:
  764. resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
  765. engines: {node: '>=14'}
  766. local-pkg@1.1.1:
  767. resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==}
  768. engines: {node: '>=14'}
  769. lodash-es@4.17.21:
  770. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  771. lodash@4.17.21:
  772. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  773. magic-string@0.30.17:
  774. resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
  775. math-intrinsics@1.1.0:
  776. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  777. engines: {node: '>= 0.4'}
  778. mdn-data@2.0.28:
  779. resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
  780. mdn-data@2.0.30:
  781. resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
  782. merge2@1.4.1:
  783. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  784. engines: {node: '>= 8'}
  785. micromatch@4.0.8:
  786. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  787. engines: {node: '>=8.6'}
  788. mime-db@1.52.0:
  789. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  790. engines: {node: '>= 0.6'}
  791. mime-types@2.1.35:
  792. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  793. engines: {node: '>= 0.6'}
  794. mimic-response@3.1.0:
  795. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  796. engines: {node: '>=10'}
  797. minimatch@9.0.5:
  798. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  799. engines: {node: '>=16 || 14 >=14.17'}
  800. minimist@1.2.8:
  801. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  802. mkdirp-classic@0.5.3:
  803. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  804. mlly@1.7.4:
  805. resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
  806. ms@2.1.3:
  807. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  808. naive-ui@2.41.0:
  809. resolution: {integrity: sha512-KnmLg+xPLwXV8QVR7ZZ69eCjvel7R5vru8+eFe4VoAJHEgqAJgVph6Zno9K2IVQRpSF3GBGea3tjavslOR4FAA==}
  810. peerDependencies:
  811. vue: ^3.0.0
  812. nanoid@3.3.11:
  813. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  814. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  815. hasBin: true
  816. napi-build-utils@2.0.0:
  817. resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
  818. node-abi@3.74.0:
  819. resolution: {integrity: sha512-c5XK0MjkGBrQPGYG24GBADZud0NCbznxNx0ZkS+ebUTrmV1qTDxPxSL8zEAPURXSbLRWVexxmP4986BziahL5w==}
  820. engines: {node: '>=10'}
  821. node-addon-api@6.1.0:
  822. resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
  823. node-addon-api@7.1.1:
  824. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  825. normalize-path@3.0.0:
  826. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  827. engines: {node: '>=0.10.0'}
  828. nth-check@2.1.1:
  829. resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
  830. once@1.4.0:
  831. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  832. path-parse@1.0.7:
  833. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  834. pathe@1.1.2:
  835. resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
  836. pathe@2.0.3:
  837. resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
  838. picocolors@1.1.1:
  839. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  840. picomatch@2.3.1:
  841. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  842. engines: {node: '>=8.6'}
  843. picomatch@4.0.2:
  844. resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
  845. engines: {node: '>=12'}
  846. pinia@2.3.1:
  847. resolution: {integrity: sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==}
  848. peerDependencies:
  849. typescript: '>=4.4.4'
  850. vue: ^2.7.0 || ^3.5.11
  851. peerDependenciesMeta:
  852. typescript:
  853. optional: true
  854. pkg-types@1.3.1:
  855. resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
  856. pkg-types@2.1.0:
  857. resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==}
  858. pnpm@10.15.0:
  859. resolution: {integrity: sha512-SG68JZ0+mZpOhpHOA7XKxKccvso5Nyqbdiy1AM/fCHPiyxar49lRse4s8BJQPwJ7mLZYTk3yJSTgx0UNnseqew==}
  860. engines: {node: '>=18.12'}
  861. hasBin: true
  862. postcss@8.5.3:
  863. resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
  864. engines: {node: ^10 || ^12 || >=14}
  865. prebuild-install@7.1.3:
  866. resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
  867. engines: {node: '>=10'}
  868. hasBin: true
  869. proxy-from-env@1.1.0:
  870. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  871. pump@3.0.2:
  872. resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
  873. quansync@0.2.10:
  874. resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==}
  875. queue-microtask@1.2.3:
  876. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  877. rc@1.2.8:
  878. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  879. hasBin: true
  880. readable-stream@3.6.2:
  881. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  882. engines: {node: '>= 6'}
  883. readdirp@3.6.0:
  884. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  885. engines: {node: '>=8.10.0'}
  886. readdirp@4.1.2:
  887. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  888. engines: {node: '>= 14.18.0'}
  889. resolve@1.22.10:
  890. resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
  891. engines: {node: '>= 0.4'}
  892. hasBin: true
  893. reusify@1.1.0:
  894. resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
  895. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  896. rollup@4.40.0:
  897. resolution: {integrity: sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==}
  898. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  899. hasBin: true
  900. run-parallel@1.2.0:
  901. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  902. safe-buffer@5.2.1:
  903. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  904. sass@1.87.0:
  905. resolution: {integrity: sha512-d0NoFH4v6SjEK7BoX810Jsrhj7IQSYHAHLi/iSpgqKc7LaIDshFRlSg5LOymf9FqQhxEHs2W5ZQXlvy0KD45Uw==}
  906. engines: {node: '>=14.0.0'}
  907. hasBin: true
  908. scule@1.3.0:
  909. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  910. seemly@0.3.10:
  911. resolution: {integrity: sha512-2+SMxtG1PcsL0uyhkumlOU6Qo9TAQ/WyH7tthnPIOQB05/12jz9naq6GZ6iZ6ApVsO3rr2gsnTf3++OV63kE1Q==}
  912. semver@7.7.1:
  913. resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
  914. engines: {node: '>=10'}
  915. hasBin: true
  916. sharp@0.32.6:
  917. resolution: {integrity: sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==}
  918. engines: {node: '>=14.15.0'}
  919. simple-concat@1.0.1:
  920. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  921. simple-get@4.0.1:
  922. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  923. simple-swizzle@0.2.2:
  924. resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
  925. source-map-js@1.2.1:
  926. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  927. engines: {node: '>=0.10.0'}
  928. streamx@2.22.0:
  929. resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==}
  930. string_decoder@1.3.0:
  931. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  932. strip-json-comments@2.0.1:
  933. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  934. engines: {node: '>=0.10.0'}
  935. strip-literal@2.1.1:
  936. resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
  937. supports-preserve-symlinks-flag@1.0.0:
  938. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  939. engines: {node: '>= 0.4'}
  940. svgo@3.3.2:
  941. resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==}
  942. engines: {node: '>=14.0.0'}
  943. hasBin: true
  944. tar-fs@2.1.2:
  945. resolution: {integrity: sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==}
  946. tar-fs@3.0.8:
  947. resolution: {integrity: sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==}
  948. tar-stream@2.2.0:
  949. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  950. engines: {node: '>=6'}
  951. tar-stream@3.1.7:
  952. resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
  953. text-decoder@1.2.3:
  954. resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
  955. to-regex-range@5.0.1:
  956. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  957. engines: {node: '>=8.0'}
  958. treemate@0.3.11:
  959. resolution: {integrity: sha512-M8RGFoKtZ8dF+iwJfAJTOH/SM4KluKOKRJpjCMhI8bG3qB74zrFoArKZ62ll0Fr3mqkMJiQOmWYkdYgDeITYQg==}
  960. tunnel-agent@0.6.0:
  961. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  962. ufo@1.6.1:
  963. resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
  964. unimport@3.14.6:
  965. resolution: {integrity: sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g==}
  966. unplugin-auto-import@0.16.7:
  967. resolution: {integrity: sha512-w7XmnRlchq6YUFJVFGSvG1T/6j8GrdYN6Em9Wf0Ye+HXgD/22kont+WnuCAA0UaUoxtuvRR1u/mXKy63g/hfqQ==}
  968. engines: {node: '>=14'}
  969. peerDependencies:
  970. '@nuxt/kit': ^3.2.2
  971. '@vueuse/core': '*'
  972. peerDependenciesMeta:
  973. '@nuxt/kit':
  974. optional: true
  975. '@vueuse/core':
  976. optional: true
  977. unplugin-vue-components@0.25.2:
  978. resolution: {integrity: sha512-OVmLFqILH6w+eM8fyt/d/eoJT9A6WO51NZLf1vC5c1FZ4rmq2bbGxTy8WP2Jm7xwFdukaIdv819+UI7RClPyCA==}
  979. engines: {node: '>=14'}
  980. peerDependencies:
  981. '@babel/parser': ^7.15.8
  982. '@nuxt/kit': ^3.2.2
  983. vue: 2 || 3
  984. peerDependenciesMeta:
  985. '@babel/parser':
  986. optional: true
  987. '@nuxt/kit':
  988. optional: true
  989. unplugin@1.16.1:
  990. resolution: {integrity: sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==}
  991. engines: {node: '>=14.0.0'}
  992. util-deprecate@1.0.2:
  993. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  994. vdirs@0.1.8:
  995. resolution: {integrity: sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==}
  996. peerDependencies:
  997. vue: ^3.0.11
  998. vite-plugin-image-optimizer@1.1.8:
  999. resolution: {integrity: sha512-40bYRDHQLUOrIwJIJQqyKJHrfgVshqzDLtMy8SEgf+fB7PnppslSTTkY7PJFrBGqgbCdOdN9KkqsvccXmnEa5Q==}
  1000. engines: {node: '>=14'}
  1001. peerDependencies:
  1002. vite: '>=3'
  1003. vite@5.4.18:
  1004. resolution: {integrity: sha512-1oDcnEp3lVyHCuQ2YFelM4Alm2o91xNoMncRm1U7S+JdYfYOvbiGZ3/CxGttrOu2M/KcGz7cRC2DoNUA6urmMA==}
  1005. engines: {node: ^18.0.0 || >=20.0.0}
  1006. hasBin: true
  1007. peerDependencies:
  1008. '@types/node': ^18.0.0 || >=20.0.0
  1009. less: '*'
  1010. lightningcss: ^1.21.0
  1011. sass: '*'
  1012. sass-embedded: '*'
  1013. stylus: '*'
  1014. sugarss: '*'
  1015. terser: ^5.4.0
  1016. peerDependenciesMeta:
  1017. '@types/node':
  1018. optional: true
  1019. less:
  1020. optional: true
  1021. lightningcss:
  1022. optional: true
  1023. sass:
  1024. optional: true
  1025. sass-embedded:
  1026. optional: true
  1027. stylus:
  1028. optional: true
  1029. sugarss:
  1030. optional: true
  1031. terser:
  1032. optional: true
  1033. vooks@0.2.12:
  1034. resolution: {integrity: sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==}
  1035. peerDependencies:
  1036. vue: ^3.0.0
  1037. vue-demi@0.14.10:
  1038. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  1039. engines: {node: '>=12'}
  1040. hasBin: true
  1041. peerDependencies:
  1042. '@vue/composition-api': ^1.0.0-rc.1
  1043. vue: ^3.0.0-0 || ^2.6.0
  1044. peerDependenciesMeta:
  1045. '@vue/composition-api':
  1046. optional: true
  1047. vue-router@4.5.1:
  1048. resolution: {integrity: sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==}
  1049. peerDependencies:
  1050. vue: ^3.2.0
  1051. vue@3.5.13:
  1052. resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
  1053. peerDependencies:
  1054. typescript: '*'
  1055. peerDependenciesMeta:
  1056. typescript:
  1057. optional: true
  1058. vueuc@0.4.64:
  1059. resolution: {integrity: sha512-wlJQj7fIwKK2pOEoOq4Aro8JdPOGpX8aWQhV8YkTW9OgWD2uj2O8ANzvSsIGjx7LTOc7QbS7sXdxHi6XvRnHPA==}
  1060. peerDependencies:
  1061. vue: ^3.0.11
  1062. webpack-virtual-modules@0.6.2:
  1063. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  1064. wrappy@1.0.2:
  1065. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1066. snapshots:
  1067. '@antfu/utils@0.7.10': {}
  1068. '@babel/helper-string-parser@7.25.9': {}
  1069. '@babel/helper-validator-identifier@7.25.9': {}
  1070. '@babel/parser@7.27.0':
  1071. dependencies:
  1072. '@babel/types': 7.27.0
  1073. '@babel/types@7.27.0':
  1074. dependencies:
  1075. '@babel/helper-string-parser': 7.25.9
  1076. '@babel/helper-validator-identifier': 7.25.9
  1077. '@css-render/plugin-bem@0.15.14(css-render@0.15.14)':
  1078. dependencies:
  1079. css-render: 0.15.14
  1080. '@css-render/vue3-ssr@0.15.14(vue@3.5.13)':
  1081. dependencies:
  1082. vue: 3.5.13
  1083. '@emotion/hash@0.8.0': {}
  1084. '@esbuild/aix-ppc64@0.21.5':
  1085. optional: true
  1086. '@esbuild/android-arm64@0.21.5':
  1087. optional: true
  1088. '@esbuild/android-arm@0.21.5':
  1089. optional: true
  1090. '@esbuild/android-x64@0.21.5':
  1091. optional: true
  1092. '@esbuild/darwin-arm64@0.21.5':
  1093. optional: true
  1094. '@esbuild/darwin-x64@0.21.5':
  1095. optional: true
  1096. '@esbuild/freebsd-arm64@0.21.5':
  1097. optional: true
  1098. '@esbuild/freebsd-x64@0.21.5':
  1099. optional: true
  1100. '@esbuild/linux-arm64@0.21.5':
  1101. optional: true
  1102. '@esbuild/linux-arm@0.21.5':
  1103. optional: true
  1104. '@esbuild/linux-ia32@0.21.5':
  1105. optional: true
  1106. '@esbuild/linux-loong64@0.21.5':
  1107. optional: true
  1108. '@esbuild/linux-mips64el@0.21.5':
  1109. optional: true
  1110. '@esbuild/linux-ppc64@0.21.5':
  1111. optional: true
  1112. '@esbuild/linux-riscv64@0.21.5':
  1113. optional: true
  1114. '@esbuild/linux-s390x@0.21.5':
  1115. optional: true
  1116. '@esbuild/linux-x64@0.21.5':
  1117. optional: true
  1118. '@esbuild/netbsd-x64@0.21.5':
  1119. optional: true
  1120. '@esbuild/openbsd-x64@0.21.5':
  1121. optional: true
  1122. '@esbuild/sunos-x64@0.21.5':
  1123. optional: true
  1124. '@esbuild/win32-arm64@0.21.5':
  1125. optional: true
  1126. '@esbuild/win32-ia32@0.21.5':
  1127. optional: true
  1128. '@esbuild/win32-x64@0.21.5':
  1129. optional: true
  1130. '@jridgewell/sourcemap-codec@1.5.0': {}
  1131. '@juggle/resize-observer@3.4.0': {}
  1132. '@nodelib/fs.scandir@2.1.5':
  1133. dependencies:
  1134. '@nodelib/fs.stat': 2.0.5
  1135. run-parallel: 1.2.0
  1136. '@nodelib/fs.stat@2.0.5': {}
  1137. '@nodelib/fs.walk@1.2.8':
  1138. dependencies:
  1139. '@nodelib/fs.scandir': 2.1.5
  1140. fastq: 1.19.1
  1141. '@parcel/watcher-android-arm64@2.5.1':
  1142. optional: true
  1143. '@parcel/watcher-darwin-arm64@2.5.1':
  1144. optional: true
  1145. '@parcel/watcher-darwin-x64@2.5.1':
  1146. optional: true
  1147. '@parcel/watcher-freebsd-x64@2.5.1':
  1148. optional: true
  1149. '@parcel/watcher-linux-arm-glibc@2.5.1':
  1150. optional: true
  1151. '@parcel/watcher-linux-arm-musl@2.5.1':
  1152. optional: true
  1153. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  1154. optional: true
  1155. '@parcel/watcher-linux-arm64-musl@2.5.1':
  1156. optional: true
  1157. '@parcel/watcher-linux-x64-glibc@2.5.1':
  1158. optional: true
  1159. '@parcel/watcher-linux-x64-musl@2.5.1':
  1160. optional: true
  1161. '@parcel/watcher-win32-arm64@2.5.1':
  1162. optional: true
  1163. '@parcel/watcher-win32-ia32@2.5.1':
  1164. optional: true
  1165. '@parcel/watcher-win32-x64@2.5.1':
  1166. optional: true
  1167. '@parcel/watcher@2.5.1':
  1168. dependencies:
  1169. detect-libc: 1.0.3
  1170. is-glob: 4.0.3
  1171. micromatch: 4.0.8
  1172. node-addon-api: 7.1.1
  1173. optionalDependencies:
  1174. '@parcel/watcher-android-arm64': 2.5.1
  1175. '@parcel/watcher-darwin-arm64': 2.5.1
  1176. '@parcel/watcher-darwin-x64': 2.5.1
  1177. '@parcel/watcher-freebsd-x64': 2.5.1
  1178. '@parcel/watcher-linux-arm-glibc': 2.5.1
  1179. '@parcel/watcher-linux-arm-musl': 2.5.1
  1180. '@parcel/watcher-linux-arm64-glibc': 2.5.1
  1181. '@parcel/watcher-linux-arm64-musl': 2.5.1
  1182. '@parcel/watcher-linux-x64-glibc': 2.5.1
  1183. '@parcel/watcher-linux-x64-musl': 2.5.1
  1184. '@parcel/watcher-win32-arm64': 2.5.1
  1185. '@parcel/watcher-win32-ia32': 2.5.1
  1186. '@parcel/watcher-win32-x64': 2.5.1
  1187. optional: true
  1188. '@rollup/pluginutils@5.1.4(rollup@4.40.0)':
  1189. dependencies:
  1190. '@types/estree': 1.0.7
  1191. estree-walker: 2.0.2
  1192. picomatch: 4.0.2
  1193. optionalDependencies:
  1194. rollup: 4.40.0
  1195. '@rollup/rollup-android-arm-eabi@4.40.0':
  1196. optional: true
  1197. '@rollup/rollup-android-arm64@4.40.0':
  1198. optional: true
  1199. '@rollup/rollup-darwin-arm64@4.40.0':
  1200. optional: true
  1201. '@rollup/rollup-darwin-x64@4.40.0':
  1202. optional: true
  1203. '@rollup/rollup-freebsd-arm64@4.40.0':
  1204. optional: true
  1205. '@rollup/rollup-freebsd-x64@4.40.0':
  1206. optional: true
  1207. '@rollup/rollup-linux-arm-gnueabihf@4.40.0':
  1208. optional: true
  1209. '@rollup/rollup-linux-arm-musleabihf@4.40.0':
  1210. optional: true
  1211. '@rollup/rollup-linux-arm64-gnu@4.40.0':
  1212. optional: true
  1213. '@rollup/rollup-linux-arm64-musl@4.40.0':
  1214. optional: true
  1215. '@rollup/rollup-linux-loongarch64-gnu@4.40.0':
  1216. optional: true
  1217. '@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
  1218. optional: true
  1219. '@rollup/rollup-linux-riscv64-gnu@4.40.0':
  1220. optional: true
  1221. '@rollup/rollup-linux-riscv64-musl@4.40.0':
  1222. optional: true
  1223. '@rollup/rollup-linux-s390x-gnu@4.40.0':
  1224. optional: true
  1225. '@rollup/rollup-linux-x64-gnu@4.40.0':
  1226. optional: true
  1227. '@rollup/rollup-linux-x64-musl@4.40.0':
  1228. optional: true
  1229. '@rollup/rollup-win32-arm64-msvc@4.40.0':
  1230. optional: true
  1231. '@rollup/rollup-win32-ia32-msvc@4.40.0':
  1232. optional: true
  1233. '@rollup/rollup-win32-x64-msvc@4.40.0':
  1234. optional: true
  1235. '@trysound/sax@0.2.0': {}
  1236. '@types/estree@1.0.7': {}
  1237. '@types/katex@0.16.7': {}
  1238. '@types/lodash-es@4.17.12':
  1239. dependencies:
  1240. '@types/lodash': 4.17.16
  1241. '@types/lodash@4.17.16': {}
  1242. '@types/web-bluetooth@0.0.20': {}
  1243. '@vitejs/plugin-vue@4.6.2(vite@5.4.18(sass@1.87.0))(vue@3.5.13)':
  1244. dependencies:
  1245. vite: 5.4.18(sass@1.87.0)
  1246. vue: 3.5.13
  1247. '@vue/compiler-core@3.5.13':
  1248. dependencies:
  1249. '@babel/parser': 7.27.0
  1250. '@vue/shared': 3.5.13
  1251. entities: 4.5.0
  1252. estree-walker: 2.0.2
  1253. source-map-js: 1.2.1
  1254. '@vue/compiler-dom@3.5.13':
  1255. dependencies:
  1256. '@vue/compiler-core': 3.5.13
  1257. '@vue/shared': 3.5.13
  1258. '@vue/compiler-sfc@3.5.13':
  1259. dependencies:
  1260. '@babel/parser': 7.27.0
  1261. '@vue/compiler-core': 3.5.13
  1262. '@vue/compiler-dom': 3.5.13
  1263. '@vue/compiler-ssr': 3.5.13
  1264. '@vue/shared': 3.5.13
  1265. estree-walker: 2.0.2
  1266. magic-string: 0.30.17
  1267. postcss: 8.5.3
  1268. source-map-js: 1.2.1
  1269. '@vue/compiler-ssr@3.5.13':
  1270. dependencies:
  1271. '@vue/compiler-dom': 3.5.13
  1272. '@vue/shared': 3.5.13
  1273. '@vue/devtools-api@6.6.4': {}
  1274. '@vue/reactivity@3.5.13':
  1275. dependencies:
  1276. '@vue/shared': 3.5.13
  1277. '@vue/runtime-core@3.5.13':
  1278. dependencies:
  1279. '@vue/reactivity': 3.5.13
  1280. '@vue/shared': 3.5.13
  1281. '@vue/runtime-dom@3.5.13':
  1282. dependencies:
  1283. '@vue/reactivity': 3.5.13
  1284. '@vue/runtime-core': 3.5.13
  1285. '@vue/shared': 3.5.13
  1286. csstype: 3.1.3
  1287. '@vue/server-renderer@3.5.13(vue@3.5.13)':
  1288. dependencies:
  1289. '@vue/compiler-ssr': 3.5.13
  1290. '@vue/shared': 3.5.13
  1291. vue: 3.5.13
  1292. '@vue/shared@3.5.13': {}
  1293. '@vueuse/components@10.11.1(vue@3.5.13)':
  1294. dependencies:
  1295. '@vueuse/core': 10.11.1(vue@3.5.13)
  1296. '@vueuse/shared': 10.11.1(vue@3.5.13)
  1297. vue-demi: 0.14.10(vue@3.5.13)
  1298. transitivePeerDependencies:
  1299. - '@vue/composition-api'
  1300. - vue
  1301. '@vueuse/core@10.11.1(vue@3.5.13)':
  1302. dependencies:
  1303. '@types/web-bluetooth': 0.0.20
  1304. '@vueuse/metadata': 10.11.1
  1305. '@vueuse/shared': 10.11.1(vue@3.5.13)
  1306. vue-demi: 0.14.10(vue@3.5.13)
  1307. transitivePeerDependencies:
  1308. - '@vue/composition-api'
  1309. - vue
  1310. '@vueuse/integrations@10.11.1(async-validator@4.2.5)(axios@1.9.0)(vue@3.5.13)':
  1311. dependencies:
  1312. '@vueuse/core': 10.11.1(vue@3.5.13)
  1313. '@vueuse/shared': 10.11.1(vue@3.5.13)
  1314. vue-demi: 0.14.10(vue@3.5.13)
  1315. optionalDependencies:
  1316. async-validator: 4.2.5
  1317. axios: 1.9.0
  1318. transitivePeerDependencies:
  1319. - '@vue/composition-api'
  1320. - vue
  1321. '@vueuse/metadata@10.11.1': {}
  1322. '@vueuse/shared@10.11.1(vue@3.5.13)':
  1323. dependencies:
  1324. vue-demi: 0.14.10(vue@3.5.13)
  1325. transitivePeerDependencies:
  1326. - '@vue/composition-api'
  1327. - vue
  1328. '@vueuse/sound@2.1.3(vue@3.5.13)':
  1329. dependencies:
  1330. howler: 2.2.4
  1331. vue: 3.5.13
  1332. vue-demi: 0.14.10(vue@3.5.13)
  1333. acorn@8.14.1: {}
  1334. ansi-colors@4.1.3: {}
  1335. anymatch@3.1.3:
  1336. dependencies:
  1337. normalize-path: 3.0.0
  1338. picomatch: 2.3.1
  1339. async-validator@4.2.5: {}
  1340. asynckit@0.4.0: {}
  1341. axios@1.9.0:
  1342. dependencies:
  1343. follow-redirects: 1.15.9
  1344. form-data: 4.0.2
  1345. proxy-from-env: 1.1.0
  1346. transitivePeerDependencies:
  1347. - debug
  1348. b4a@1.6.7: {}
  1349. balanced-match@1.0.2: {}
  1350. bare-events@2.5.4:
  1351. optional: true
  1352. bare-fs@4.1.3:
  1353. dependencies:
  1354. bare-events: 2.5.4
  1355. bare-path: 3.0.0
  1356. bare-stream: 2.6.5(bare-events@2.5.4)
  1357. optional: true
  1358. bare-os@3.6.1:
  1359. optional: true
  1360. bare-path@3.0.0:
  1361. dependencies:
  1362. bare-os: 3.6.1
  1363. optional: true
  1364. bare-stream@2.6.5(bare-events@2.5.4):
  1365. dependencies:
  1366. streamx: 2.22.0
  1367. optionalDependencies:
  1368. bare-events: 2.5.4
  1369. optional: true
  1370. base64-js@1.5.1: {}
  1371. binary-extensions@2.3.0: {}
  1372. bl@4.1.0:
  1373. dependencies:
  1374. buffer: 5.7.1
  1375. inherits: 2.0.4
  1376. readable-stream: 3.6.2
  1377. boolbase@1.0.0: {}
  1378. brace-expansion@2.0.1:
  1379. dependencies:
  1380. balanced-match: 1.0.2
  1381. braces@3.0.3:
  1382. dependencies:
  1383. fill-range: 7.1.1
  1384. buffer@5.7.1:
  1385. dependencies:
  1386. base64-js: 1.5.1
  1387. ieee754: 1.2.1
  1388. call-bind-apply-helpers@1.0.2:
  1389. dependencies:
  1390. es-errors: 1.3.0
  1391. function-bind: 1.1.2
  1392. chokidar@3.6.0:
  1393. dependencies:
  1394. anymatch: 3.1.3
  1395. braces: 3.0.3
  1396. glob-parent: 5.1.2
  1397. is-binary-path: 2.1.0
  1398. is-glob: 4.0.3
  1399. normalize-path: 3.0.0
  1400. readdirp: 3.6.0
  1401. optionalDependencies:
  1402. fsevents: 2.3.3
  1403. chokidar@4.0.3:
  1404. dependencies:
  1405. readdirp: 4.1.2
  1406. chownr@1.1.4: {}
  1407. color-convert@2.0.1:
  1408. dependencies:
  1409. color-name: 1.1.4
  1410. color-name@1.1.4: {}
  1411. color-string@1.9.1:
  1412. dependencies:
  1413. color-name: 1.1.4
  1414. simple-swizzle: 0.2.2
  1415. color@4.2.3:
  1416. dependencies:
  1417. color-convert: 2.0.1
  1418. color-string: 1.9.1
  1419. combined-stream@1.0.8:
  1420. dependencies:
  1421. delayed-stream: 1.0.0
  1422. commander@7.2.0: {}
  1423. confbox@0.1.8: {}
  1424. confbox@0.2.2: {}
  1425. css-render@0.15.14:
  1426. dependencies:
  1427. '@emotion/hash': 0.8.0
  1428. csstype: 3.0.11
  1429. css-select@5.1.0:
  1430. dependencies:
  1431. boolbase: 1.0.0
  1432. css-what: 6.1.0
  1433. domhandler: 5.0.3
  1434. domutils: 3.2.2
  1435. nth-check: 2.1.1
  1436. css-tree@2.2.1:
  1437. dependencies:
  1438. mdn-data: 2.0.28
  1439. source-map-js: 1.2.1
  1440. css-tree@2.3.1:
  1441. dependencies:
  1442. mdn-data: 2.0.30
  1443. source-map-js: 1.2.1
  1444. css-what@6.1.0: {}
  1445. csso@5.0.5:
  1446. dependencies:
  1447. css-tree: 2.2.1
  1448. csstype@3.0.11: {}
  1449. csstype@3.1.3: {}
  1450. date-fns-tz@3.2.0(date-fns@3.6.0):
  1451. dependencies:
  1452. date-fns: 3.6.0
  1453. date-fns@3.6.0: {}
  1454. debug@4.4.0:
  1455. dependencies:
  1456. ms: 2.1.3
  1457. decompress-response@6.0.0:
  1458. dependencies:
  1459. mimic-response: 3.1.0
  1460. deep-extend@0.6.0: {}
  1461. delayed-stream@1.0.0: {}
  1462. detect-libc@1.0.3:
  1463. optional: true
  1464. detect-libc@2.0.4: {}
  1465. dom-serializer@2.0.0:
  1466. dependencies:
  1467. domelementtype: 2.3.0
  1468. domhandler: 5.0.3
  1469. entities: 4.5.0
  1470. domelementtype@2.3.0: {}
  1471. domhandler@5.0.3:
  1472. dependencies:
  1473. domelementtype: 2.3.0
  1474. domutils@3.2.2:
  1475. dependencies:
  1476. dom-serializer: 2.0.0
  1477. domelementtype: 2.3.0
  1478. domhandler: 5.0.3
  1479. dunder-proto@1.0.1:
  1480. dependencies:
  1481. call-bind-apply-helpers: 1.0.2
  1482. es-errors: 1.3.0
  1483. gopd: 1.2.0
  1484. end-of-stream@1.4.4:
  1485. dependencies:
  1486. once: 1.4.0
  1487. entities@4.5.0: {}
  1488. es-define-property@1.0.1: {}
  1489. es-errors@1.3.0: {}
  1490. es-object-atoms@1.1.1:
  1491. dependencies:
  1492. es-errors: 1.3.0
  1493. es-set-tostringtag@2.1.0:
  1494. dependencies:
  1495. es-errors: 1.3.0
  1496. get-intrinsic: 1.3.0
  1497. has-tostringtag: 1.0.2
  1498. hasown: 2.0.2
  1499. esbuild@0.21.5:
  1500. optionalDependencies:
  1501. '@esbuild/aix-ppc64': 0.21.5
  1502. '@esbuild/android-arm': 0.21.5
  1503. '@esbuild/android-arm64': 0.21.5
  1504. '@esbuild/android-x64': 0.21.5
  1505. '@esbuild/darwin-arm64': 0.21.5
  1506. '@esbuild/darwin-x64': 0.21.5
  1507. '@esbuild/freebsd-arm64': 0.21.5
  1508. '@esbuild/freebsd-x64': 0.21.5
  1509. '@esbuild/linux-arm': 0.21.5
  1510. '@esbuild/linux-arm64': 0.21.5
  1511. '@esbuild/linux-ia32': 0.21.5
  1512. '@esbuild/linux-loong64': 0.21.5
  1513. '@esbuild/linux-mips64el': 0.21.5
  1514. '@esbuild/linux-ppc64': 0.21.5
  1515. '@esbuild/linux-riscv64': 0.21.5
  1516. '@esbuild/linux-s390x': 0.21.5
  1517. '@esbuild/linux-x64': 0.21.5
  1518. '@esbuild/netbsd-x64': 0.21.5
  1519. '@esbuild/openbsd-x64': 0.21.5
  1520. '@esbuild/sunos-x64': 0.21.5
  1521. '@esbuild/win32-arm64': 0.21.5
  1522. '@esbuild/win32-ia32': 0.21.5
  1523. '@esbuild/win32-x64': 0.21.5
  1524. escape-string-regexp@5.0.0: {}
  1525. estree-walker@2.0.2: {}
  1526. estree-walker@3.0.3:
  1527. dependencies:
  1528. '@types/estree': 1.0.7
  1529. evtd@0.2.4: {}
  1530. expand-template@2.0.3: {}
  1531. exsolve@1.0.5: {}
  1532. fast-fifo@1.3.2: {}
  1533. fast-glob@3.3.3:
  1534. dependencies:
  1535. '@nodelib/fs.stat': 2.0.5
  1536. '@nodelib/fs.walk': 1.2.8
  1537. glob-parent: 5.1.2
  1538. merge2: 1.4.1
  1539. micromatch: 4.0.8
  1540. fastq@1.19.1:
  1541. dependencies:
  1542. reusify: 1.1.0
  1543. fill-range@7.1.1:
  1544. dependencies:
  1545. to-regex-range: 5.0.1
  1546. follow-redirects@1.15.9: {}
  1547. form-data@4.0.2:
  1548. dependencies:
  1549. asynckit: 0.4.0
  1550. combined-stream: 1.0.8
  1551. es-set-tostringtag: 2.1.0
  1552. mime-types: 2.1.35
  1553. fs-constants@1.0.0: {}
  1554. fsevents@2.3.3:
  1555. optional: true
  1556. function-bind@1.1.2: {}
  1557. get-intrinsic@1.3.0:
  1558. dependencies:
  1559. call-bind-apply-helpers: 1.0.2
  1560. es-define-property: 1.0.1
  1561. es-errors: 1.3.0
  1562. es-object-atoms: 1.1.1
  1563. function-bind: 1.1.2
  1564. get-proto: 1.0.1
  1565. gopd: 1.2.0
  1566. has-symbols: 1.1.0
  1567. hasown: 2.0.2
  1568. math-intrinsics: 1.1.0
  1569. get-proto@1.0.1:
  1570. dependencies:
  1571. dunder-proto: 1.0.1
  1572. es-object-atoms: 1.1.1
  1573. github-from-package@0.0.0: {}
  1574. glob-parent@5.1.2:
  1575. dependencies:
  1576. is-glob: 4.0.3
  1577. gopd@1.2.0: {}
  1578. has-symbols@1.1.0: {}
  1579. has-tostringtag@1.0.2:
  1580. dependencies:
  1581. has-symbols: 1.1.0
  1582. hasown@2.0.2:
  1583. dependencies:
  1584. function-bind: 1.1.2
  1585. highlight.js@11.11.1: {}
  1586. howler@2.2.4: {}
  1587. ieee754@1.2.1: {}
  1588. immutable@5.1.1: {}
  1589. inherits@2.0.4: {}
  1590. ini@1.3.8: {}
  1591. is-arrayish@0.3.2: {}
  1592. is-binary-path@2.1.0:
  1593. dependencies:
  1594. binary-extensions: 2.3.0
  1595. is-core-module@2.16.1:
  1596. dependencies:
  1597. hasown: 2.0.2
  1598. is-extglob@2.1.1: {}
  1599. is-glob@4.0.3:
  1600. dependencies:
  1601. is-extglob: 2.1.1
  1602. is-number@7.0.0: {}
  1603. js-tokens@9.0.1: {}
  1604. local-pkg@0.4.3: {}
  1605. local-pkg@0.5.1:
  1606. dependencies:
  1607. mlly: 1.7.4
  1608. pkg-types: 1.3.1
  1609. local-pkg@1.1.1:
  1610. dependencies:
  1611. mlly: 1.7.4
  1612. pkg-types: 2.1.0
  1613. quansync: 0.2.10
  1614. lodash-es@4.17.21: {}
  1615. lodash@4.17.21: {}
  1616. magic-string@0.30.17:
  1617. dependencies:
  1618. '@jridgewell/sourcemap-codec': 1.5.0
  1619. math-intrinsics@1.1.0: {}
  1620. mdn-data@2.0.28: {}
  1621. mdn-data@2.0.30: {}
  1622. merge2@1.4.1: {}
  1623. micromatch@4.0.8:
  1624. dependencies:
  1625. braces: 3.0.3
  1626. picomatch: 2.3.1
  1627. mime-db@1.52.0: {}
  1628. mime-types@2.1.35:
  1629. dependencies:
  1630. mime-db: 1.52.0
  1631. mimic-response@3.1.0: {}
  1632. minimatch@9.0.5:
  1633. dependencies:
  1634. brace-expansion: 2.0.1
  1635. minimist@1.2.8: {}
  1636. mkdirp-classic@0.5.3: {}
  1637. mlly@1.7.4:
  1638. dependencies:
  1639. acorn: 8.14.1
  1640. pathe: 2.0.3
  1641. pkg-types: 1.3.1
  1642. ufo: 1.6.1
  1643. ms@2.1.3: {}
  1644. naive-ui@2.41.0(vue@3.5.13):
  1645. dependencies:
  1646. '@css-render/plugin-bem': 0.15.14(css-render@0.15.14)
  1647. '@css-render/vue3-ssr': 0.15.14(vue@3.5.13)
  1648. '@types/katex': 0.16.7
  1649. '@types/lodash': 4.17.16
  1650. '@types/lodash-es': 4.17.12
  1651. async-validator: 4.2.5
  1652. css-render: 0.15.14
  1653. csstype: 3.1.3
  1654. date-fns: 3.6.0
  1655. date-fns-tz: 3.2.0(date-fns@3.6.0)
  1656. evtd: 0.2.4
  1657. highlight.js: 11.11.1
  1658. lodash: 4.17.21
  1659. lodash-es: 4.17.21
  1660. seemly: 0.3.10
  1661. treemate: 0.3.11
  1662. vdirs: 0.1.8(vue@3.5.13)
  1663. vooks: 0.2.12(vue@3.5.13)
  1664. vue: 3.5.13
  1665. vueuc: 0.4.64(vue@3.5.13)
  1666. nanoid@3.3.11: {}
  1667. napi-build-utils@2.0.0: {}
  1668. node-abi@3.74.0:
  1669. dependencies:
  1670. semver: 7.7.1
  1671. node-addon-api@6.1.0: {}
  1672. node-addon-api@7.1.1:
  1673. optional: true
  1674. normalize-path@3.0.0: {}
  1675. nth-check@2.1.1:
  1676. dependencies:
  1677. boolbase: 1.0.0
  1678. once@1.4.0:
  1679. dependencies:
  1680. wrappy: 1.0.2
  1681. path-parse@1.0.7: {}
  1682. pathe@1.1.2: {}
  1683. pathe@2.0.3: {}
  1684. picocolors@1.1.1: {}
  1685. picomatch@2.3.1: {}
  1686. picomatch@4.0.2: {}
  1687. pinia@2.3.1(vue@3.5.13):
  1688. dependencies:
  1689. '@vue/devtools-api': 6.6.4
  1690. vue: 3.5.13
  1691. vue-demi: 0.14.10(vue@3.5.13)
  1692. transitivePeerDependencies:
  1693. - '@vue/composition-api'
  1694. pkg-types@1.3.1:
  1695. dependencies:
  1696. confbox: 0.1.8
  1697. mlly: 1.7.4
  1698. pathe: 2.0.3
  1699. pkg-types@2.1.0:
  1700. dependencies:
  1701. confbox: 0.2.2
  1702. exsolve: 1.0.5
  1703. pathe: 2.0.3
  1704. pnpm@10.15.0: {}
  1705. postcss@8.5.3:
  1706. dependencies:
  1707. nanoid: 3.3.11
  1708. picocolors: 1.1.1
  1709. source-map-js: 1.2.1
  1710. prebuild-install@7.1.3:
  1711. dependencies:
  1712. detect-libc: 2.0.4
  1713. expand-template: 2.0.3
  1714. github-from-package: 0.0.0
  1715. minimist: 1.2.8
  1716. mkdirp-classic: 0.5.3
  1717. napi-build-utils: 2.0.0
  1718. node-abi: 3.74.0
  1719. pump: 3.0.2
  1720. rc: 1.2.8
  1721. simple-get: 4.0.1
  1722. tar-fs: 2.1.2
  1723. tunnel-agent: 0.6.0
  1724. proxy-from-env@1.1.0: {}
  1725. pump@3.0.2:
  1726. dependencies:
  1727. end-of-stream: 1.4.4
  1728. once: 1.4.0
  1729. quansync@0.2.10: {}
  1730. queue-microtask@1.2.3: {}
  1731. rc@1.2.8:
  1732. dependencies:
  1733. deep-extend: 0.6.0
  1734. ini: 1.3.8
  1735. minimist: 1.2.8
  1736. strip-json-comments: 2.0.1
  1737. readable-stream@3.6.2:
  1738. dependencies:
  1739. inherits: 2.0.4
  1740. string_decoder: 1.3.0
  1741. util-deprecate: 1.0.2
  1742. readdirp@3.6.0:
  1743. dependencies:
  1744. picomatch: 2.3.1
  1745. readdirp@4.1.2: {}
  1746. resolve@1.22.10:
  1747. dependencies:
  1748. is-core-module: 2.16.1
  1749. path-parse: 1.0.7
  1750. supports-preserve-symlinks-flag: 1.0.0
  1751. reusify@1.1.0: {}
  1752. rollup@4.40.0:
  1753. dependencies:
  1754. '@types/estree': 1.0.7
  1755. optionalDependencies:
  1756. '@rollup/rollup-android-arm-eabi': 4.40.0
  1757. '@rollup/rollup-android-arm64': 4.40.0
  1758. '@rollup/rollup-darwin-arm64': 4.40.0
  1759. '@rollup/rollup-darwin-x64': 4.40.0
  1760. '@rollup/rollup-freebsd-arm64': 4.40.0
  1761. '@rollup/rollup-freebsd-x64': 4.40.0
  1762. '@rollup/rollup-linux-arm-gnueabihf': 4.40.0
  1763. '@rollup/rollup-linux-arm-musleabihf': 4.40.0
  1764. '@rollup/rollup-linux-arm64-gnu': 4.40.0
  1765. '@rollup/rollup-linux-arm64-musl': 4.40.0
  1766. '@rollup/rollup-linux-loongarch64-gnu': 4.40.0
  1767. '@rollup/rollup-linux-powerpc64le-gnu': 4.40.0
  1768. '@rollup/rollup-linux-riscv64-gnu': 4.40.0
  1769. '@rollup/rollup-linux-riscv64-musl': 4.40.0
  1770. '@rollup/rollup-linux-s390x-gnu': 4.40.0
  1771. '@rollup/rollup-linux-x64-gnu': 4.40.0
  1772. '@rollup/rollup-linux-x64-musl': 4.40.0
  1773. '@rollup/rollup-win32-arm64-msvc': 4.40.0
  1774. '@rollup/rollup-win32-ia32-msvc': 4.40.0
  1775. '@rollup/rollup-win32-x64-msvc': 4.40.0
  1776. fsevents: 2.3.3
  1777. run-parallel@1.2.0:
  1778. dependencies:
  1779. queue-microtask: 1.2.3
  1780. safe-buffer@5.2.1: {}
  1781. sass@1.87.0:
  1782. dependencies:
  1783. chokidar: 4.0.3
  1784. immutable: 5.1.1
  1785. source-map-js: 1.2.1
  1786. optionalDependencies:
  1787. '@parcel/watcher': 2.5.1
  1788. scule@1.3.0: {}
  1789. seemly@0.3.10: {}
  1790. semver@7.7.1: {}
  1791. sharp@0.32.6:
  1792. dependencies:
  1793. color: 4.2.3
  1794. detect-libc: 2.0.4
  1795. node-addon-api: 6.1.0
  1796. prebuild-install: 7.1.3
  1797. semver: 7.7.1
  1798. simple-get: 4.0.1
  1799. tar-fs: 3.0.8
  1800. tunnel-agent: 0.6.0
  1801. transitivePeerDependencies:
  1802. - bare-buffer
  1803. simple-concat@1.0.1: {}
  1804. simple-get@4.0.1:
  1805. dependencies:
  1806. decompress-response: 6.0.0
  1807. once: 1.4.0
  1808. simple-concat: 1.0.1
  1809. simple-swizzle@0.2.2:
  1810. dependencies:
  1811. is-arrayish: 0.3.2
  1812. source-map-js@1.2.1: {}
  1813. streamx@2.22.0:
  1814. dependencies:
  1815. fast-fifo: 1.3.2
  1816. text-decoder: 1.2.3
  1817. optionalDependencies:
  1818. bare-events: 2.5.4
  1819. string_decoder@1.3.0:
  1820. dependencies:
  1821. safe-buffer: 5.2.1
  1822. strip-json-comments@2.0.1: {}
  1823. strip-literal@2.1.1:
  1824. dependencies:
  1825. js-tokens: 9.0.1
  1826. supports-preserve-symlinks-flag@1.0.0: {}
  1827. svgo@3.3.2:
  1828. dependencies:
  1829. '@trysound/sax': 0.2.0
  1830. commander: 7.2.0
  1831. css-select: 5.1.0
  1832. css-tree: 2.3.1
  1833. css-what: 6.1.0
  1834. csso: 5.0.5
  1835. picocolors: 1.1.1
  1836. tar-fs@2.1.2:
  1837. dependencies:
  1838. chownr: 1.1.4
  1839. mkdirp-classic: 0.5.3
  1840. pump: 3.0.2
  1841. tar-stream: 2.2.0
  1842. tar-fs@3.0.8:
  1843. dependencies:
  1844. pump: 3.0.2
  1845. tar-stream: 3.1.7
  1846. optionalDependencies:
  1847. bare-fs: 4.1.3
  1848. bare-path: 3.0.0
  1849. transitivePeerDependencies:
  1850. - bare-buffer
  1851. tar-stream@2.2.0:
  1852. dependencies:
  1853. bl: 4.1.0
  1854. end-of-stream: 1.4.4
  1855. fs-constants: 1.0.0
  1856. inherits: 2.0.4
  1857. readable-stream: 3.6.2
  1858. tar-stream@3.1.7:
  1859. dependencies:
  1860. b4a: 1.6.7
  1861. fast-fifo: 1.3.2
  1862. streamx: 2.22.0
  1863. text-decoder@1.2.3:
  1864. dependencies:
  1865. b4a: 1.6.7
  1866. to-regex-range@5.0.1:
  1867. dependencies:
  1868. is-number: 7.0.0
  1869. treemate@0.3.11: {}
  1870. tunnel-agent@0.6.0:
  1871. dependencies:
  1872. safe-buffer: 5.2.1
  1873. ufo@1.6.1: {}
  1874. unimport@3.14.6(rollup@4.40.0):
  1875. dependencies:
  1876. '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
  1877. acorn: 8.14.1
  1878. escape-string-regexp: 5.0.0
  1879. estree-walker: 3.0.3
  1880. fast-glob: 3.3.3
  1881. local-pkg: 1.1.1
  1882. magic-string: 0.30.17
  1883. mlly: 1.7.4
  1884. pathe: 2.0.3
  1885. picomatch: 4.0.2
  1886. pkg-types: 1.3.1
  1887. scule: 1.3.0
  1888. strip-literal: 2.1.1
  1889. unplugin: 1.16.1
  1890. transitivePeerDependencies:
  1891. - rollup
  1892. unplugin-auto-import@0.16.7(@vueuse/core@10.11.1(vue@3.5.13))(rollup@4.40.0):
  1893. dependencies:
  1894. '@antfu/utils': 0.7.10
  1895. '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
  1896. fast-glob: 3.3.3
  1897. local-pkg: 0.5.1
  1898. magic-string: 0.30.17
  1899. minimatch: 9.0.5
  1900. unimport: 3.14.6(rollup@4.40.0)
  1901. unplugin: 1.16.1
  1902. optionalDependencies:
  1903. '@vueuse/core': 10.11.1(vue@3.5.13)
  1904. transitivePeerDependencies:
  1905. - rollup
  1906. unplugin-vue-components@0.25.2(@babel/parser@7.27.0)(rollup@4.40.0)(vue@3.5.13):
  1907. dependencies:
  1908. '@antfu/utils': 0.7.10
  1909. '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
  1910. chokidar: 3.6.0
  1911. debug: 4.4.0
  1912. fast-glob: 3.3.3
  1913. local-pkg: 0.4.3
  1914. magic-string: 0.30.17
  1915. minimatch: 9.0.5
  1916. resolve: 1.22.10
  1917. unplugin: 1.16.1
  1918. vue: 3.5.13
  1919. optionalDependencies:
  1920. '@babel/parser': 7.27.0
  1921. transitivePeerDependencies:
  1922. - rollup
  1923. - supports-color
  1924. unplugin@1.16.1:
  1925. dependencies:
  1926. acorn: 8.14.1
  1927. webpack-virtual-modules: 0.6.2
  1928. util-deprecate@1.0.2: {}
  1929. vdirs@0.1.8(vue@3.5.13):
  1930. dependencies:
  1931. evtd: 0.2.4
  1932. vue: 3.5.13
  1933. vite-plugin-image-optimizer@1.1.8(vite@5.4.18(sass@1.87.0)):
  1934. dependencies:
  1935. ansi-colors: 4.1.3
  1936. pathe: 1.1.2
  1937. vite: 5.4.18(sass@1.87.0)
  1938. vite@5.4.18(sass@1.87.0):
  1939. dependencies:
  1940. esbuild: 0.21.5
  1941. postcss: 8.5.3
  1942. rollup: 4.40.0
  1943. optionalDependencies:
  1944. fsevents: 2.3.3
  1945. sass: 1.87.0
  1946. vooks@0.2.12(vue@3.5.13):
  1947. dependencies:
  1948. evtd: 0.2.4
  1949. vue: 3.5.13
  1950. vue-demi@0.14.10(vue@3.5.13):
  1951. dependencies:
  1952. vue: 3.5.13
  1953. vue-router@4.5.1(vue@3.5.13):
  1954. dependencies:
  1955. '@vue/devtools-api': 6.6.4
  1956. vue: 3.5.13
  1957. vue@3.5.13:
  1958. dependencies:
  1959. '@vue/compiler-dom': 3.5.13
  1960. '@vue/compiler-sfc': 3.5.13
  1961. '@vue/runtime-dom': 3.5.13
  1962. '@vue/server-renderer': 3.5.13(vue@3.5.13)
  1963. '@vue/shared': 3.5.13
  1964. vueuc@0.4.64(vue@3.5.13):
  1965. dependencies:
  1966. '@css-render/vue3-ssr': 0.15.14(vue@3.5.13)
  1967. '@juggle/resize-observer': 3.4.0
  1968. css-render: 0.15.14
  1969. evtd: 0.2.4
  1970. seemly: 0.3.10
  1971. vdirs: 0.1.8(vue@3.5.13)
  1972. vooks: 0.2.12(vue@3.5.13)
  1973. vue: 3.5.13
  1974. webpack-virtual-modules@0.6.2: {}
  1975. wrappy@1.0.2: {}