pnpm-lock.yaml 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@hoppscotch/ui':
  9. specifier: ^0.2.1
  10. version: 0.2.1(eslint@9.11.1(jiti@1.21.6))(terser@5.34.0)(typescript@5.6.2)(vite@5.4.7(@types/node@22.7.0)(terser@5.34.0))(vue@3.5.8(typescript@5.6.2))
  11. '@tauri-apps/api':
  12. specifier: '>=2.0.0-rc.0'
  13. version: 2.0.0-rc.5
  14. '@tauri-apps/plugin-shell':
  15. specifier: '>=2.0.0-rc.0'
  16. version: 2.0.0-rc.1
  17. '@vueuse/core':
  18. specifier: ^11.1.0
  19. version: 11.1.0(vue@3.5.8(typescript@5.6.2))
  20. axios:
  21. specifier: ^1.7.7
  22. version: 1.7.7
  23. fp-ts:
  24. specifier: ^2.16.9
  25. version: 2.16.9
  26. vue:
  27. specifier: ^3.3.4
  28. version: 3.5.8(typescript@5.6.2)
  29. devDependencies:
  30. '@iconify-json/lucide':
  31. specifier: ^1.2.6
  32. version: 1.2.6
  33. '@tauri-apps/cli':
  34. specifier: '>=2.0.0-rc.0'
  35. version: 2.0.0-rc.16
  36. '@types/node':
  37. specifier: ^22.7.0
  38. version: 22.7.0
  39. '@vitejs/plugin-vue':
  40. specifier: ^5.1.4
  41. version: 5.1.4(vite@5.4.7(@types/node@22.7.0)(terser@5.34.0))(vue@3.5.8(typescript@5.6.2))
  42. autoprefixer:
  43. specifier: ^10.4.20
  44. version: 10.4.20(postcss@8.4.47)
  45. postcss:
  46. specifier: ^8.4.47
  47. version: 8.4.47
  48. tailwindcss:
  49. specifier: ^3.4.13
  50. version: 3.4.13
  51. typescript:
  52. specifier: ^5.2.2
  53. version: 5.6.2
  54. unplugin-icons:
  55. specifier: ^0.19.3
  56. version: 0.19.3(@vue/compiler-sfc@3.5.8)
  57. vite:
  58. specifier: ^5.4.7
  59. version: 5.4.7(@types/node@22.7.0)(terser@5.34.0)
  60. vue-tsc:
  61. specifier: ^2.0.22
  62. version: 2.1.6(typescript@5.6.2)
  63. packages:
  64. '@alloc/quick-lru@5.2.0':
  65. resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
  66. engines: {node: '>=10'}
  67. '@antfu/install-pkg@0.4.1':
  68. resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==}
  69. '@antfu/utils@0.7.10':
  70. resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
  71. '@babel/helper-string-parser@7.24.8':
  72. resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
  73. engines: {node: '>=6.9.0'}
  74. '@babel/helper-validator-identifier@7.24.7':
  75. resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
  76. engines: {node: '>=6.9.0'}
  77. '@babel/parser@7.25.6':
  78. resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==}
  79. engines: {node: '>=6.0.0'}
  80. hasBin: true
  81. '@babel/standalone@7.25.6':
  82. resolution: {integrity: sha512-Kf2ZcZVqsKbtYhlA7sP0z5A3q5hmCVYMKMWRWNK/5OVwHIve3JY1djVRmIVAx8FMueLIfZGKQDIILK2w8zO4mg==}
  83. engines: {node: '>=6.9.0'}
  84. '@babel/types@7.25.6':
  85. resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
  86. engines: {node: '>=6.9.0'}
  87. '@boringer-avatars/vue3@0.2.1':
  88. resolution: {integrity: sha512-KzAfh31SDXToTvFL0tBNG5Ur+VzfD1PP4jmY5/GS+eIuObGTIAiUu9eiht0LjuAGI+0xCgnaEgsTrOx8H3vLOQ==}
  89. peerDependencies:
  90. vue: ^3.0.0
  91. '@esbuild/aix-ppc64@0.21.5':
  92. resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
  93. engines: {node: '>=12'}
  94. cpu: [ppc64]
  95. os: [aix]
  96. '@esbuild/android-arm64@0.21.5':
  97. resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
  98. engines: {node: '>=12'}
  99. cpu: [arm64]
  100. os: [android]
  101. '@esbuild/android-arm@0.21.5':
  102. resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
  103. engines: {node: '>=12'}
  104. cpu: [arm]
  105. os: [android]
  106. '@esbuild/android-x64@0.21.5':
  107. resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
  108. engines: {node: '>=12'}
  109. cpu: [x64]
  110. os: [android]
  111. '@esbuild/darwin-arm64@0.21.5':
  112. resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
  113. engines: {node: '>=12'}
  114. cpu: [arm64]
  115. os: [darwin]
  116. '@esbuild/darwin-x64@0.21.5':
  117. resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
  118. engines: {node: '>=12'}
  119. cpu: [x64]
  120. os: [darwin]
  121. '@esbuild/freebsd-arm64@0.21.5':
  122. resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
  123. engines: {node: '>=12'}
  124. cpu: [arm64]
  125. os: [freebsd]
  126. '@esbuild/freebsd-x64@0.21.5':
  127. resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
  128. engines: {node: '>=12'}
  129. cpu: [x64]
  130. os: [freebsd]
  131. '@esbuild/linux-arm64@0.21.5':
  132. resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
  133. engines: {node: '>=12'}
  134. cpu: [arm64]
  135. os: [linux]
  136. '@esbuild/linux-arm@0.21.5':
  137. resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
  138. engines: {node: '>=12'}
  139. cpu: [arm]
  140. os: [linux]
  141. '@esbuild/linux-ia32@0.21.5':
  142. resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
  143. engines: {node: '>=12'}
  144. cpu: [ia32]
  145. os: [linux]
  146. '@esbuild/linux-loong64@0.21.5':
  147. resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
  148. engines: {node: '>=12'}
  149. cpu: [loong64]
  150. os: [linux]
  151. '@esbuild/linux-mips64el@0.21.5':
  152. resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
  153. engines: {node: '>=12'}
  154. cpu: [mips64el]
  155. os: [linux]
  156. '@esbuild/linux-ppc64@0.21.5':
  157. resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
  158. engines: {node: '>=12'}
  159. cpu: [ppc64]
  160. os: [linux]
  161. '@esbuild/linux-riscv64@0.21.5':
  162. resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
  163. engines: {node: '>=12'}
  164. cpu: [riscv64]
  165. os: [linux]
  166. '@esbuild/linux-s390x@0.21.5':
  167. resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
  168. engines: {node: '>=12'}
  169. cpu: [s390x]
  170. os: [linux]
  171. '@esbuild/linux-x64@0.21.5':
  172. resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
  173. engines: {node: '>=12'}
  174. cpu: [x64]
  175. os: [linux]
  176. '@esbuild/netbsd-x64@0.21.5':
  177. resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
  178. engines: {node: '>=12'}
  179. cpu: [x64]
  180. os: [netbsd]
  181. '@esbuild/openbsd-x64@0.21.5':
  182. resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
  183. engines: {node: '>=12'}
  184. cpu: [x64]
  185. os: [openbsd]
  186. '@esbuild/sunos-x64@0.21.5':
  187. resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
  188. engines: {node: '>=12'}
  189. cpu: [x64]
  190. os: [sunos]
  191. '@esbuild/win32-arm64@0.21.5':
  192. resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
  193. engines: {node: '>=12'}
  194. cpu: [arm64]
  195. os: [win32]
  196. '@esbuild/win32-ia32@0.21.5':
  197. resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
  198. engines: {node: '>=12'}
  199. cpu: [ia32]
  200. os: [win32]
  201. '@esbuild/win32-x64@0.21.5':
  202. resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
  203. engines: {node: '>=12'}
  204. cpu: [x64]
  205. os: [win32]
  206. '@eslint-community/eslint-utils@4.4.0':
  207. resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
  208. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  209. peerDependencies:
  210. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  211. '@eslint-community/regexpp@4.11.1':
  212. resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
  213. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  214. '@eslint/config-array@0.18.0':
  215. resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
  216. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  217. '@eslint/core@0.6.0':
  218. resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==}
  219. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  220. '@eslint/eslintrc@3.1.0':
  221. resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
  222. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  223. '@eslint/js@9.11.1':
  224. resolution: {integrity: sha512-/qu+TWz8WwPWc7/HcIJKi+c+MOm46GdVaSlTTQcaqaL53+GsoA6MxWp5PtTx48qbSP7ylM1Kn7nhvkugfJvRSA==}
  225. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  226. '@eslint/object-schema@2.1.4':
  227. resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
  228. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  229. '@eslint/plugin-kit@0.2.0':
  230. resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==}
  231. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  232. '@fontsource-variable/inter@5.1.0':
  233. resolution: {integrity: sha512-Wj2dUGP0vUpxRGQTXQTCNJO+aLcFcQm+gUPXfj/aS877bQkEPBPv9JvZJpwdm2vzelt8NTZ+ausKlBCJjh2XIg==}
  234. '@fontsource-variable/material-symbols-rounded@5.1.0':
  235. resolution: {integrity: sha512-gQZli8YyPTymXuAzMQ13d6Fzw9zQkMXIxqZyCrSeNLKfOpLVKXoh0LZ0SV9thOpZhR2KQURD8S1Y0YLUV6KZNw==}
  236. '@fontsource-variable/roboto-mono@5.1.0':
  237. resolution: {integrity: sha512-87USlDpEi7dS/ayPXwf/08vdgJKEYxdQmuZk5kCzWBtumimdwWlA9Vh36TCtYqFC+dGgDxPX/4PJK+0lxkEd5A==}
  238. '@hoppscotch/ui@0.2.1':
  239. resolution: {integrity: sha512-orwItZFlOZUFfMf0B7RNAQa2ByucnXcl9ufP0aJggyFafRk/X9eyMPC6JrF/OATml/ZztksjiB2636cMYsEnSw==}
  240. engines: {node: '>=16'}
  241. peerDependencies:
  242. vue: ^3.2.25
  243. '@hoppscotch/vue-sonner@1.2.3':
  244. resolution: {integrity: sha512-P1gyvHHLsPeB8lsLP5SrqwQatuwOKtbsP83sKhyIV3WL2rJj3+DiFfqo2ErNBa+Sl0gM68o1V+wuOS7zbR//6g==}
  245. '@hoppscotch/vue-toasted@0.1.0':
  246. resolution: {integrity: sha512-DIgmeTHxWwX5UeaHLEqDYNLJFGRosx/5N1fCHkaO8zt+sZv8GrHlkrIpjfKF2drmA3kKw5cY42Cw7WuCoabR3g==}
  247. peerDependencies:
  248. vue: ^3.2.37
  249. '@humanwhocodes/module-importer@1.0.1':
  250. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  251. engines: {node: '>=12.22'}
  252. '@humanwhocodes/retry@0.3.0':
  253. resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
  254. engines: {node: '>=18.18'}
  255. '@iconify-json/lucide@1.2.6':
  256. resolution: {integrity: sha512-HVLLxmG/rJ91GqpEE97OHdEwb/LfjwMVdynWIrnjvNRQNoKvrYG2N2+jABSBibEhnYQOfv+k8/7X6fK44PEtKA==}
  257. '@iconify/types@2.0.0':
  258. resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
  259. '@iconify/utils@2.1.33':
  260. resolution: {integrity: sha512-jP9h6v/g0BIZx0p7XGJJVtkVnydtbgTgt9mVNcGDYwaa7UhdHdI9dvoq+gKj9sijMSJKxUPEG2JyjsgXjxL7Kw==}
  261. '@isaacs/cliui@8.0.2':
  262. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  263. engines: {node: '>=12'}
  264. '@jridgewell/gen-mapping@0.3.5':
  265. resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
  266. engines: {node: '>=6.0.0'}
  267. '@jridgewell/resolve-uri@3.1.2':
  268. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  269. engines: {node: '>=6.0.0'}
  270. '@jridgewell/set-array@1.2.1':
  271. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  272. engines: {node: '>=6.0.0'}
  273. '@jridgewell/source-map@0.3.6':
  274. resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
  275. '@jridgewell/sourcemap-codec@1.5.0':
  276. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  277. '@jridgewell/trace-mapping@0.3.25':
  278. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  279. '@nodelib/fs.scandir@2.1.5':
  280. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  281. engines: {node: '>= 8'}
  282. '@nodelib/fs.stat@2.0.5':
  283. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  284. engines: {node: '>= 8'}
  285. '@nodelib/fs.walk@1.2.8':
  286. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  287. engines: {node: '>= 8'}
  288. '@pkgjs/parseargs@0.11.0':
  289. resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
  290. engines: {node: '>=14'}
  291. '@rollup/pluginutils@4.2.1':
  292. resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
  293. engines: {node: '>= 8.0.0'}
  294. '@rollup/rollup-android-arm-eabi@4.22.4':
  295. resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==}
  296. cpu: [arm]
  297. os: [android]
  298. '@rollup/rollup-android-arm64@4.22.4':
  299. resolution: {integrity: sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==}
  300. cpu: [arm64]
  301. os: [android]
  302. '@rollup/rollup-darwin-arm64@4.22.4':
  303. resolution: {integrity: sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==}
  304. cpu: [arm64]
  305. os: [darwin]
  306. '@rollup/rollup-darwin-x64@4.22.4':
  307. resolution: {integrity: sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==}
  308. cpu: [x64]
  309. os: [darwin]
  310. '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
  311. resolution: {integrity: sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==}
  312. cpu: [arm]
  313. os: [linux]
  314. '@rollup/rollup-linux-arm-musleabihf@4.22.4':
  315. resolution: {integrity: sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==}
  316. cpu: [arm]
  317. os: [linux]
  318. '@rollup/rollup-linux-arm64-gnu@4.22.4':
  319. resolution: {integrity: sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==}
  320. cpu: [arm64]
  321. os: [linux]
  322. '@rollup/rollup-linux-arm64-musl@4.22.4':
  323. resolution: {integrity: sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==}
  324. cpu: [arm64]
  325. os: [linux]
  326. '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
  327. resolution: {integrity: sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==}
  328. cpu: [ppc64]
  329. os: [linux]
  330. '@rollup/rollup-linux-riscv64-gnu@4.22.4':
  331. resolution: {integrity: sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==}
  332. cpu: [riscv64]
  333. os: [linux]
  334. '@rollup/rollup-linux-s390x-gnu@4.22.4':
  335. resolution: {integrity: sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==}
  336. cpu: [s390x]
  337. os: [linux]
  338. '@rollup/rollup-linux-x64-gnu@4.22.4':
  339. resolution: {integrity: sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==}
  340. cpu: [x64]
  341. os: [linux]
  342. '@rollup/rollup-linux-x64-musl@4.22.4':
  343. resolution: {integrity: sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==}
  344. cpu: [x64]
  345. os: [linux]
  346. '@rollup/rollup-win32-arm64-msvc@4.22.4':
  347. resolution: {integrity: sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==}
  348. cpu: [arm64]
  349. os: [win32]
  350. '@rollup/rollup-win32-ia32-msvc@4.22.4':
  351. resolution: {integrity: sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==}
  352. cpu: [ia32]
  353. os: [win32]
  354. '@rollup/rollup-win32-x64-msvc@4.22.4':
  355. resolution: {integrity: sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==}
  356. cpu: [x64]
  357. os: [win32]
  358. '@tauri-apps/api@2.0.0-rc.5':
  359. resolution: {integrity: sha512-JWs69pE9NsQdcqTpEVBepAZ08+jgQWuthIiTiaWRq/YlCLgnqq0KfC9sDem55uJ0YpgsytZuyj+m6b6q8oiD2g==}
  360. '@tauri-apps/cli-darwin-arm64@2.0.0-rc.16':
  361. resolution: {integrity: sha512-lISZU4gG0c9PbY7h/j/gW7nJLxZEygNBrYEET6zN8R99Znf5rSO+CfjenaMcJUUj6yTAd8gzdakRpLqNSAWegA==}
  362. engines: {node: '>= 10'}
  363. cpu: [arm64]
  364. os: [darwin]
  365. '@tauri-apps/cli-darwin-x64@2.0.0-rc.16':
  366. resolution: {integrity: sha512-D9uxPCxpyYcTSQulJGFX3POAKPOJd8WcWHFH8x6YVM1cIx6EWRXIE1sZnPUOjFr7qCg+bSdYdr8/BFHcZGcApQ==}
  367. engines: {node: '>= 10'}
  368. cpu: [x64]
  369. os: [darwin]
  370. '@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-rc.16':
  371. resolution: {integrity: sha512-WsVdKm4D1I1XV8I9yRnmOINZRwwWfh6xcLV3m19+B9g6TohK8RkRxWfxvs3TLQlWOLQ6lo8BzS9rzXB+KtjDpg==}
  372. engines: {node: '>= 10'}
  373. cpu: [arm]
  374. os: [linux]
  375. '@tauri-apps/cli-linux-arm64-gnu@2.0.0-rc.16':
  376. resolution: {integrity: sha512-2jpZDagNs6rrqposHJihHBayttgOl5aB2+bYiVEC6ye+haiFtmYmpdaPOaVIw+YVQs6lepf5PVrisCoU9DmYsg==}
  377. engines: {node: '>= 10'}
  378. cpu: [arm64]
  379. os: [linux]
  380. '@tauri-apps/cli-linux-arm64-musl@2.0.0-rc.16':
  381. resolution: {integrity: sha512-SNEDcB+sWOls/B0a+UpUHVa/oegvlXXKYWsTxuXtgWIr5VbWG7rXLZ3fZpLLP3SpRVGTGTnABcyqshFbWSqqKQ==}
  382. engines: {node: '>= 10'}
  383. cpu: [arm64]
  384. os: [linux]
  385. '@tauri-apps/cli-linux-x64-gnu@2.0.0-rc.16':
  386. resolution: {integrity: sha512-Zsq29MM1ooeH1+chQBa7ffDFnzAZebBBFdsvs4e05tS1H8gn4oKE+PSMn9p/okzVXykEk9ri2/n7BG1XFeifMA==}
  387. engines: {node: '>= 10'}
  388. cpu: [x64]
  389. os: [linux]
  390. '@tauri-apps/cli-linux-x64-musl@2.0.0-rc.16':
  391. resolution: {integrity: sha512-g+pwSuis2YMxhJJ/pJYwp/Nps5CWvlv/5MV5UfDvClkCkeAyzIqVX+HbBLPcs5S0CePUQNeP0j4d4jBWUqZZQg==}
  392. engines: {node: '>= 10'}
  393. cpu: [x64]
  394. os: [linux]
  395. '@tauri-apps/cli-win32-arm64-msvc@2.0.0-rc.16':
  396. resolution: {integrity: sha512-PpPqdMTwJSDAK4KnNjvh77ShSkY+7pih1f6e50EtXar8bjC17e3XcEqFhDNne5mxEVTLYhibs6p1JLPad0ZjRA==}
  397. engines: {node: '>= 10'}
  398. cpu: [arm64]
  399. os: [win32]
  400. '@tauri-apps/cli-win32-ia32-msvc@2.0.0-rc.16':
  401. resolution: {integrity: sha512-io2yIcEcG7YLP+9n13NbilB93SjcB7jIl8GbURC4XZT4/4t9D1PWHpJr5hySVsGRLCz5e8NzwC5RlnenNzmpPQ==}
  402. engines: {node: '>= 10'}
  403. cpu: [ia32]
  404. os: [win32]
  405. '@tauri-apps/cli-win32-x64-msvc@2.0.0-rc.16':
  406. resolution: {integrity: sha512-Rfkmxe3k+cBVA/kVYt8O25QrQqWKJlH9AiH7Q3C6xBzzG9PCSRMBszCp+JhBF8jhVlwNmOBv6UG+lm85kspwGg==}
  407. engines: {node: '>= 10'}
  408. cpu: [x64]
  409. os: [win32]
  410. '@tauri-apps/cli@2.0.0-rc.16':
  411. resolution: {integrity: sha512-wdjZg/M3dcxiqgWG6VRnABpX0dYxRww93t0d1MYoZxFDrnyoUz5kYwFQ0v4J9u0qenEgskjoypvon7V/Nj9qrg==}
  412. engines: {node: '>= 10'}
  413. hasBin: true
  414. '@tauri-apps/plugin-shell@2.0.0-rc.1':
  415. resolution: {integrity: sha512-JtNROc0rqEwN/g93ig5pK4cl1vUo2yn+osCpY9de64cy/d9hRzof7AuYOgvt/Xcd5VPQmlgo2AGvUh5sQRSR1A==}
  416. '@types/eslint@8.56.12':
  417. resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==}
  418. '@types/estree@1.0.5':
  419. resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
  420. '@types/estree@1.0.6':
  421. resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
  422. '@types/json-schema@7.0.15':
  423. resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
  424. '@types/node@22.7.0':
  425. resolution: {integrity: sha512-MOdOibwBs6KW1vfqz2uKMlxq5xAfAZ98SZjO8e3XnAbFnTJtAspqhWk7hrdSAs9/Y14ZWMiy7/MxMUzAOadYEw==}
  426. '@types/web-bluetooth@0.0.14':
  427. resolution: {integrity: sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==}
  428. '@types/web-bluetooth@0.0.20':
  429. resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
  430. '@vitejs/plugin-legacy@2.3.1':
  431. resolution: {integrity: sha512-J5KaGBlSt2tEYPVjM/C8dA6DkRzkFkbPe+Xb4IX5G+XOV5OGbVAfkMjKywdrkO3gGynO8S98i71Lmsff4cWkCQ==}
  432. engines: {node: ^14.18.0 || >=16.0.0}
  433. peerDependencies:
  434. terser: ^5.4.0
  435. vite: ^3.0.0
  436. '@vitejs/plugin-vue@5.1.4':
  437. resolution: {integrity: sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==}
  438. engines: {node: ^18.0.0 || >=20.0.0}
  439. peerDependencies:
  440. vite: ^5.0.0
  441. vue: ^3.2.25
  442. '@volar/language-core@2.4.5':
  443. resolution: {integrity: sha512-F4tA0DCO5Q1F5mScHmca0umsi2ufKULAnMOVBfMsZdT4myhVl4WdKRwCaKcfOkIEuyrAVvtq1ESBdZ+rSyLVww==}
  444. '@volar/source-map@2.4.5':
  445. resolution: {integrity: sha512-varwD7RaKE2J/Z+Zu6j3mNNJbNT394qIxXwdvz/4ao/vxOfyClZpSDtLKkwWmecinkOVos5+PWkWraelfMLfpw==}
  446. '@volar/typescript@2.4.5':
  447. resolution: {integrity: sha512-mcT1mHvLljAEtHviVcBuOyAwwMKz1ibXTi5uYtP/pf4XxoAzpdkQ+Br2IC0NPCvLCbjPZmbf3I0udndkfB1CDg==}
  448. '@vue/compiler-core@3.5.8':
  449. resolution: {integrity: sha512-Uzlxp91EPjfbpeO5KtC0KnXPkuTfGsNDeaKQJxQN718uz+RqDYarEf7UhQJGK+ZYloD2taUbHTI2J4WrUaZQNA==}
  450. '@vue/compiler-dom@3.5.8':
  451. resolution: {integrity: sha512-GUNHWvoDSbSa5ZSHT9SnV5WkStWfzJwwTd6NMGzilOE/HM5j+9EB9zGXdtu/fCNEmctBqMs6C9SvVPpVPuk1Eg==}
  452. '@vue/compiler-sfc@3.5.8':
  453. resolution: {integrity: sha512-taYpngQtSysrvO9GULaOSwcG5q821zCoIQBtQQSx7Uf7DxpR6CIHR90toPr9QfDD2mqHQPCSgoWBvJu0yV9zjg==}
  454. '@vue/compiler-ssr@3.5.8':
  455. resolution: {integrity: sha512-W96PtryNsNG9u0ZnN5Q5j27Z/feGrFV6zy9q5tzJVyJaLiwYxvC0ek4IXClZygyhjm+XKM7WD9pdKi/wIRVC/Q==}
  456. '@vue/compiler-vue2@2.7.16':
  457. resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
  458. '@vue/language-core@2.1.6':
  459. resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==}
  460. peerDependencies:
  461. typescript: '*'
  462. peerDependenciesMeta:
  463. typescript:
  464. optional: true
  465. '@vue/reactivity@3.5.8':
  466. resolution: {integrity: sha512-mlgUyFHLCUZcAYkqvzYnlBRCh0t5ZQfLYit7nukn1GR96gc48Bp4B7OIcSfVSvlG1k3BPfD+p22gi1t2n9tsXg==}
  467. '@vue/runtime-core@3.5.8':
  468. resolution: {integrity: sha512-fJuPelh64agZ8vKkZgp5iCkPaEqFJsYzxLk9vSC0X3G8ppknclNDr61gDc45yBGTaN5Xqc1qZWU3/NoaBMHcjQ==}
  469. '@vue/runtime-dom@3.5.8':
  470. resolution: {integrity: sha512-DpAUz+PKjTZPUOB6zJgkxVI3GuYc2iWZiNeeHQUw53kdrparSTG6HeXUrYDjaam8dVsCdvQxDz6ZWxnyjccUjQ==}
  471. '@vue/server-renderer@3.5.8':
  472. resolution: {integrity: sha512-7AmC9/mEeV9mmXNVyUIm1a1AjUhyeeGNbkLh39J00E7iPeGks8OGRB5blJiMmvqSh8SkaS7jkLWSpXtxUCeagA==}
  473. peerDependencies:
  474. vue: 3.5.8
  475. '@vue/shared@3.5.8':
  476. resolution: {integrity: sha512-mJleSWbAGySd2RJdX1RBtcrUBX6snyOc0qHpgk3lGi4l9/P/3ny3ELqFWqYdkXIwwNN/kdm8nD9ky8o6l/Lx2A==}
  477. '@vueuse/core@11.1.0':
  478. resolution: {integrity: sha512-P6dk79QYA6sKQnghrUz/1tHi0n9mrb/iO1WTMk/ElLmTyNqgDeSZ3wcDf6fRBGzRJbeG1dxzEOvLENMjr+E3fg==}
  479. '@vueuse/core@8.9.4':
  480. resolution: {integrity: sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==}
  481. peerDependencies:
  482. '@vue/composition-api': ^1.1.0
  483. vue: ^2.6.0 || ^3.2.0
  484. peerDependenciesMeta:
  485. '@vue/composition-api':
  486. optional: true
  487. vue:
  488. optional: true
  489. '@vueuse/metadata@11.1.0':
  490. resolution: {integrity: sha512-l9Q502TBTaPYGanl1G+hPgd3QX5s4CGnpXriVBR5fEZ/goI6fvDaVmIl3Td8oKFurOxTmbXvBPSsgrd6eu6HYg==}
  491. '@vueuse/metadata@8.9.4':
  492. resolution: {integrity: sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw==}
  493. '@vueuse/shared@11.1.0':
  494. resolution: {integrity: sha512-YUtIpY122q7osj+zsNMFAfMTubGz0sn5QzE5gPzAIiCmtt2ha3uQUY1+JPyL4gRCTsLPX82Y9brNbo/aqlA91w==}
  495. '@vueuse/shared@8.9.4':
  496. resolution: {integrity: sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag==}
  497. peerDependencies:
  498. '@vue/composition-api': ^1.1.0
  499. vue: ^2.6.0 || ^3.2.0
  500. peerDependenciesMeta:
  501. '@vue/composition-api':
  502. optional: true
  503. vue:
  504. optional: true
  505. acorn-jsx@5.3.2:
  506. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  507. peerDependencies:
  508. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  509. acorn@8.12.1:
  510. resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
  511. engines: {node: '>=0.4.0'}
  512. hasBin: true
  513. ajv@6.12.6:
  514. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  515. ansi-regex@5.0.1:
  516. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  517. engines: {node: '>=8'}
  518. ansi-regex@6.1.0:
  519. resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
  520. engines: {node: '>=12'}
  521. ansi-styles@4.3.0:
  522. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  523. engines: {node: '>=8'}
  524. ansi-styles@6.2.1:
  525. resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
  526. engines: {node: '>=12'}
  527. any-promise@1.3.0:
  528. resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
  529. anymatch@3.1.3:
  530. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  531. engines: {node: '>= 8'}
  532. arg@5.0.2:
  533. resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
  534. argparse@2.0.1:
  535. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  536. asynckit@0.4.0:
  537. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  538. autoprefixer@10.4.20:
  539. resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
  540. engines: {node: ^10 || ^12 || >=14}
  541. hasBin: true
  542. peerDependencies:
  543. postcss: ^8.1.0
  544. axios@1.7.7:
  545. resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
  546. balanced-match@1.0.2:
  547. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  548. binary-extensions@2.3.0:
  549. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  550. engines: {node: '>=8'}
  551. brace-expansion@1.1.11:
  552. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  553. brace-expansion@2.0.1:
  554. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  555. braces@3.0.3:
  556. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  557. engines: {node: '>=8'}
  558. browserslist@4.24.0:
  559. resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
  560. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  561. hasBin: true
  562. buffer-from@1.1.2:
  563. resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
  564. callsites@3.1.0:
  565. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  566. engines: {node: '>=6'}
  567. camelcase-css@2.0.1:
  568. resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
  569. engines: {node: '>= 6'}
  570. caniuse-lite@1.0.30001663:
  571. resolution: {integrity: sha512-o9C3X27GLKbLeTYZ6HBOLU1tsAcBZsLis28wrVzddShCS16RujjHp9GDHKZqrB3meE0YjhawvMFsGb/igqiPzA==}
  572. chalk@4.1.2:
  573. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  574. engines: {node: '>=10'}
  575. chokidar@3.6.0:
  576. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  577. engines: {node: '>= 8.10.0'}
  578. color-convert@2.0.1:
  579. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  580. engines: {node: '>=7.0.0'}
  581. color-name@1.1.4:
  582. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  583. combined-stream@1.0.8:
  584. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  585. engines: {node: '>= 0.8'}
  586. commander@2.20.3:
  587. resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
  588. commander@4.1.1:
  589. resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
  590. engines: {node: '>= 6'}
  591. computeds@0.0.1:
  592. resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==}
  593. concat-map@0.0.1:
  594. resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
  595. confbox@0.1.7:
  596. resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
  597. core-js@3.38.1:
  598. resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==}
  599. cross-spawn@7.0.3:
  600. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  601. engines: {node: '>= 8'}
  602. cssesc@3.0.0:
  603. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  604. engines: {node: '>=4'}
  605. hasBin: true
  606. csstype@3.1.3:
  607. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  608. de-indent@1.0.2:
  609. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  610. debug@4.3.7:
  611. resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
  612. engines: {node: '>=6.0'}
  613. peerDependencies:
  614. supports-color: '*'
  615. peerDependenciesMeta:
  616. supports-color:
  617. optional: true
  618. deep-is@0.1.4:
  619. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  620. delayed-stream@1.0.0:
  621. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  622. engines: {node: '>=0.4.0'}
  623. didyoumean@1.2.2:
  624. resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
  625. dlv@1.1.3:
  626. resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
  627. eastasianwidth@0.2.0:
  628. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  629. electron-to-chromium@1.5.28:
  630. resolution: {integrity: sha512-VufdJl+rzaKZoYVUijN13QcXVF5dWPZANeFTLNy+OSpHdDL5ynXTF35+60RSBbaQYB1ae723lQXHCrf4pyLsMw==}
  631. emoji-regex@8.0.0:
  632. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  633. emoji-regex@9.2.2:
  634. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  635. entities@4.5.0:
  636. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  637. engines: {node: '>=0.12'}
  638. esbuild@0.21.5:
  639. resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
  640. engines: {node: '>=12'}
  641. hasBin: true
  642. escalade@3.2.0:
  643. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  644. engines: {node: '>=6'}
  645. escape-string-regexp@4.0.0:
  646. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  647. engines: {node: '>=10'}
  648. eslint-scope@8.0.2:
  649. resolution: {integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==}
  650. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  651. eslint-visitor-keys@3.4.3:
  652. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  653. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  654. eslint-visitor-keys@4.0.0:
  655. resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
  656. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  657. eslint@9.11.1:
  658. resolution: {integrity: sha512-MobhYKIoAO1s1e4VUrgx1l1Sk2JBR/Gqjjgw8+mfgoLE2xwsHur4gdfTxyTgShrhvdVFTaJSgMiQBl1jv/AWxg==}
  659. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  660. hasBin: true
  661. peerDependencies:
  662. jiti: '*'
  663. peerDependenciesMeta:
  664. jiti:
  665. optional: true
  666. espree@10.1.0:
  667. resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==}
  668. engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
  669. esquery@1.6.0:
  670. resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
  671. engines: {node: '>=0.10'}
  672. esrecurse@4.3.0:
  673. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  674. engines: {node: '>=4.0'}
  675. estraverse@5.3.0:
  676. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  677. engines: {node: '>=4.0'}
  678. estree-walker@2.0.2:
  679. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  680. esutils@2.0.3:
  681. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  682. engines: {node: '>=0.10.0'}
  683. fast-deep-equal@3.1.3:
  684. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  685. fast-glob@3.3.2:
  686. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  687. engines: {node: '>=8.6.0'}
  688. fast-json-stable-stringify@2.1.0:
  689. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  690. fast-levenshtein@2.0.6:
  691. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  692. fastq@1.17.1:
  693. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  694. file-entry-cache@8.0.0:
  695. resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
  696. engines: {node: '>=16.0.0'}
  697. fill-range@7.1.1:
  698. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  699. engines: {node: '>=8'}
  700. find-up@5.0.0:
  701. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  702. engines: {node: '>=10'}
  703. flat-cache@4.0.1:
  704. resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
  705. engines: {node: '>=16'}
  706. flatted@3.3.1:
  707. resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
  708. follow-redirects@1.15.9:
  709. resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
  710. engines: {node: '>=4.0'}
  711. peerDependencies:
  712. debug: '*'
  713. peerDependenciesMeta:
  714. debug:
  715. optional: true
  716. foreground-child@3.3.0:
  717. resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
  718. engines: {node: '>=14'}
  719. form-data@4.0.0:
  720. resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
  721. engines: {node: '>= 6'}
  722. fp-ts@2.16.9:
  723. resolution: {integrity: sha512-+I2+FnVB+tVaxcYyQkHUq7ZdKScaBlX53A41mxQtpIccsfyv8PzdzP7fzp2AY832T4aoK6UZ5WRX/ebGd8uZuQ==}
  724. fraction.js@4.3.7:
  725. resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
  726. fsevents@2.3.3:
  727. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  728. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  729. os: [darwin]
  730. function-bind@1.1.2:
  731. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  732. glob-parent@5.1.2:
  733. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  734. engines: {node: '>= 6'}
  735. glob-parent@6.0.2:
  736. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  737. engines: {node: '>=10.13.0'}
  738. glob@10.4.5:
  739. resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
  740. hasBin: true
  741. globals@14.0.0:
  742. resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
  743. engines: {node: '>=18'}
  744. has-flag@4.0.0:
  745. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  746. engines: {node: '>=8'}
  747. hasown@2.0.2:
  748. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  749. engines: {node: '>= 0.4'}
  750. he@1.2.0:
  751. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  752. hasBin: true
  753. ignore@5.3.2:
  754. resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
  755. engines: {node: '>= 4'}
  756. import-fresh@3.3.0:
  757. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  758. engines: {node: '>=6'}
  759. imurmurhash@0.1.4:
  760. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  761. engines: {node: '>=0.8.19'}
  762. inherits@2.0.3:
  763. resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
  764. is-binary-path@2.1.0:
  765. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  766. engines: {node: '>=8'}
  767. is-core-module@2.15.1:
  768. resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
  769. engines: {node: '>= 0.4'}
  770. is-extglob@2.1.1:
  771. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  772. engines: {node: '>=0.10.0'}
  773. is-fullwidth-code-point@3.0.0:
  774. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  775. engines: {node: '>=8'}
  776. is-glob@4.0.3:
  777. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  778. engines: {node: '>=0.10.0'}
  779. is-number@7.0.0:
  780. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  781. engines: {node: '>=0.12.0'}
  782. is-path-inside@3.0.3:
  783. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  784. engines: {node: '>=8'}
  785. isexe@2.0.0:
  786. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  787. jackspeak@3.4.3:
  788. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  789. jiti@1.21.6:
  790. resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
  791. hasBin: true
  792. js-yaml@4.1.0:
  793. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  794. hasBin: true
  795. json-buffer@3.0.1:
  796. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  797. json-schema-traverse@0.4.1:
  798. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  799. json-stable-stringify-without-jsonify@1.0.1:
  800. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  801. keyv@4.5.4:
  802. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  803. kolorist@1.8.0:
  804. resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
  805. levn@0.4.1:
  806. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  807. engines: {node: '>= 0.8.0'}
  808. lilconfig@2.1.0:
  809. resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
  810. engines: {node: '>=10'}
  811. lilconfig@3.1.2:
  812. resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
  813. engines: {node: '>=14'}
  814. lines-and-columns@1.2.4:
  815. resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
  816. local-pkg@0.5.0:
  817. resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
  818. engines: {node: '>=14'}
  819. locate-path@6.0.0:
  820. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  821. engines: {node: '>=10'}
  822. lodash-es@4.17.21:
  823. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  824. lodash.merge@4.6.2:
  825. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  826. lru-cache@10.4.3:
  827. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  828. magic-string@0.26.7:
  829. resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==}
  830. engines: {node: '>=12'}
  831. magic-string@0.30.11:
  832. resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
  833. merge2@1.4.1:
  834. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  835. engines: {node: '>= 8'}
  836. micromatch@4.0.8:
  837. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  838. engines: {node: '>=8.6'}
  839. mime-db@1.52.0:
  840. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  841. engines: {node: '>= 0.6'}
  842. mime-types@2.1.35:
  843. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  844. engines: {node: '>= 0.6'}
  845. minimatch@3.1.2:
  846. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  847. minimatch@9.0.5:
  848. resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
  849. engines: {node: '>=16 || 14 >=14.17'}
  850. minipass@7.1.2:
  851. resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
  852. engines: {node: '>=16 || 14 >=14.17'}
  853. mlly@1.7.1:
  854. resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
  855. ms@2.1.3:
  856. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  857. muggle-string@0.4.1:
  858. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  859. mz@2.7.0:
  860. resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
  861. nanoid@3.3.7:
  862. resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
  863. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  864. hasBin: true
  865. natural-compare@1.4.0:
  866. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  867. node-releases@2.0.18:
  868. resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
  869. normalize-path@3.0.0:
  870. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  871. engines: {node: '>=0.10.0'}
  872. normalize-range@0.1.2:
  873. resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
  874. engines: {node: '>=0.10.0'}
  875. object-assign@4.1.1:
  876. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  877. engines: {node: '>=0.10.0'}
  878. object-hash@3.0.0:
  879. resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
  880. engines: {node: '>= 6'}
  881. optionator@0.9.4:
  882. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  883. engines: {node: '>= 0.8.0'}
  884. p-limit@3.1.0:
  885. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  886. engines: {node: '>=10'}
  887. p-locate@5.0.0:
  888. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  889. engines: {node: '>=10'}
  890. package-json-from-dist@1.0.0:
  891. resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
  892. package-manager-detector@0.2.0:
  893. resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==}
  894. parent-module@1.0.1:
  895. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  896. engines: {node: '>=6'}
  897. path-browserify@1.0.1:
  898. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  899. path-exists@4.0.0:
  900. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  901. engines: {node: '>=8'}
  902. path-key@3.1.1:
  903. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  904. engines: {node: '>=8'}
  905. path-parse@1.0.7:
  906. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  907. path-scurry@1.11.1:
  908. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  909. engines: {node: '>=16 || 14 >=14.18'}
  910. path@0.12.7:
  911. resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==}
  912. pathe@1.1.2:
  913. resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
  914. picocolors@1.1.0:
  915. resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
  916. picomatch@2.3.1:
  917. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  918. engines: {node: '>=8.6'}
  919. pify@2.3.0:
  920. resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
  921. engines: {node: '>=0.10.0'}
  922. pirates@4.0.6:
  923. resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
  924. engines: {node: '>= 6'}
  925. pkg-types@1.2.0:
  926. resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==}
  927. postcss-import@15.1.0:
  928. resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
  929. engines: {node: '>=14.0.0'}
  930. peerDependencies:
  931. postcss: ^8.0.0
  932. postcss-js@4.0.1:
  933. resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
  934. engines: {node: ^12 || ^14 || >= 16}
  935. peerDependencies:
  936. postcss: ^8.4.21
  937. postcss-load-config@4.0.2:
  938. resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
  939. engines: {node: '>= 14'}
  940. peerDependencies:
  941. postcss: '>=8.0.9'
  942. ts-node: '>=9.0.0'
  943. peerDependenciesMeta:
  944. postcss:
  945. optional: true
  946. ts-node:
  947. optional: true
  948. postcss-nested@6.2.0:
  949. resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
  950. engines: {node: '>=12.0'}
  951. peerDependencies:
  952. postcss: ^8.2.14
  953. postcss-selector-parser@6.1.2:
  954. resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
  955. engines: {node: '>=4'}
  956. postcss-value-parser@4.2.0:
  957. resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
  958. postcss@8.4.47:
  959. resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
  960. engines: {node: ^10 || ^12 || >=14}
  961. prelude-ls@1.2.1:
  962. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  963. engines: {node: '>= 0.8.0'}
  964. process@0.11.10:
  965. resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
  966. engines: {node: '>= 0.6.0'}
  967. proxy-from-env@1.1.0:
  968. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  969. punycode@2.3.1:
  970. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  971. engines: {node: '>=6'}
  972. queue-microtask@1.2.3:
  973. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  974. read-cache@1.0.0:
  975. resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
  976. readdirp@3.6.0:
  977. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  978. engines: {node: '>=8.10.0'}
  979. regenerator-runtime@0.13.11:
  980. resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
  981. resolve-from@4.0.0:
  982. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  983. engines: {node: '>=4'}
  984. resolve@1.22.8:
  985. resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
  986. hasBin: true
  987. reusify@1.0.4:
  988. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  989. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  990. rollup@2.79.1:
  991. resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
  992. engines: {node: '>=10.0.0'}
  993. hasBin: true
  994. rollup@4.22.4:
  995. resolution: {integrity: sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==}
  996. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  997. hasBin: true
  998. run-parallel@1.2.0:
  999. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1000. semver@7.6.3:
  1001. resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
  1002. engines: {node: '>=10'}
  1003. hasBin: true
  1004. shebang-command@2.0.0:
  1005. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1006. engines: {node: '>=8'}
  1007. shebang-regex@3.0.0:
  1008. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1009. engines: {node: '>=8'}
  1010. signal-exit@4.1.0:
  1011. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1012. engines: {node: '>=14'}
  1013. sortablejs@1.14.0:
  1014. resolution: {integrity: sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==}
  1015. source-map-js@1.2.1:
  1016. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1017. engines: {node: '>=0.10.0'}
  1018. source-map-support@0.5.21:
  1019. resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
  1020. source-map@0.6.1:
  1021. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  1022. engines: {node: '>=0.10.0'}
  1023. sourcemap-codec@1.4.8:
  1024. resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
  1025. deprecated: Please use @jridgewell/sourcemap-codec instead
  1026. string-width@4.2.3:
  1027. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1028. engines: {node: '>=8'}
  1029. string-width@5.1.2:
  1030. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1031. engines: {node: '>=12'}
  1032. strip-ansi@6.0.1:
  1033. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1034. engines: {node: '>=8'}
  1035. strip-ansi@7.1.0:
  1036. resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
  1037. engines: {node: '>=12'}
  1038. strip-json-comments@3.1.1:
  1039. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1040. engines: {node: '>=8'}
  1041. sucrase@3.35.0:
  1042. resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
  1043. engines: {node: '>=16 || 14 >=14.17'}
  1044. hasBin: true
  1045. supports-color@7.2.0:
  1046. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1047. engines: {node: '>=8'}
  1048. supports-preserve-symlinks-flag@1.0.0:
  1049. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1050. engines: {node: '>= 0.4'}
  1051. systemjs@6.15.1:
  1052. resolution: {integrity: sha512-Nk8c4lXvMB98MtbmjX7JwJRgJOL8fluecYCfCeYBznwmpOs8Bf15hLM6z4z71EDAhQVrQrI+wt1aLWSXZq+hXA==}
  1053. tailwindcss@3.4.13:
  1054. resolution: {integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==}
  1055. engines: {node: '>=14.0.0'}
  1056. hasBin: true
  1057. terser@5.34.0:
  1058. resolution: {integrity: sha512-y5NUX+U9HhVsK/zihZwoq4r9dICLyV2jXGOriDAVOeKhq3LKVjgJbGO90FisozXLlJfvjHqgckGmJFBb9KYoWQ==}
  1059. engines: {node: '>=10'}
  1060. hasBin: true
  1061. text-table@0.2.0:
  1062. resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
  1063. thenify-all@1.6.0:
  1064. resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
  1065. engines: {node: '>=0.8'}
  1066. thenify@3.3.1:
  1067. resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
  1068. tinyexec@0.3.0:
  1069. resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==}
  1070. to-fast-properties@2.0.0:
  1071. resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
  1072. engines: {node: '>=4'}
  1073. to-regex-range@5.0.1:
  1074. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1075. engines: {node: '>=8.0'}
  1076. ts-interface-checker@0.1.13:
  1077. resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
  1078. type-check@0.4.0:
  1079. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1080. engines: {node: '>= 0.8.0'}
  1081. typescript@5.6.2:
  1082. resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==}
  1083. engines: {node: '>=14.17'}
  1084. hasBin: true
  1085. ufo@1.5.4:
  1086. resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
  1087. undici-types@6.19.8:
  1088. resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
  1089. unplugin-icons@0.19.3:
  1090. resolution: {integrity: sha512-EUegRmsAI6+rrYr0vXjFlIP+lg4fSC4zb62zAZKx8FGXlWAGgEGBCa3JDe27aRAXhistObLPbBPhwa/0jYLFkQ==}
  1091. peerDependencies:
  1092. '@svgr/core': '>=7.0.0'
  1093. '@svgx/core': ^1.0.1
  1094. '@vue/compiler-sfc': ^3.0.2 || ^2.7.0
  1095. vue-template-compiler: ^2.6.12
  1096. vue-template-es2015-compiler: ^1.9.0
  1097. peerDependenciesMeta:
  1098. '@svgr/core':
  1099. optional: true
  1100. '@svgx/core':
  1101. optional: true
  1102. '@vue/compiler-sfc':
  1103. optional: true
  1104. vue-template-compiler:
  1105. optional: true
  1106. vue-template-es2015-compiler:
  1107. optional: true
  1108. unplugin@1.14.1:
  1109. resolution: {integrity: sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w==}
  1110. engines: {node: '>=14.0.0'}
  1111. peerDependencies:
  1112. webpack-sources: ^3
  1113. peerDependenciesMeta:
  1114. webpack-sources:
  1115. optional: true
  1116. update-browserslist-db@1.1.0:
  1117. resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
  1118. hasBin: true
  1119. peerDependencies:
  1120. browserslist: '>= 4.21.0'
  1121. uri-js@4.4.1:
  1122. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1123. util-deprecate@1.0.2:
  1124. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1125. util@0.10.4:
  1126. resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==}
  1127. vite-plugin-eslint@1.8.1:
  1128. resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==}
  1129. peerDependencies:
  1130. eslint: '>=7'
  1131. vite: '>=2'
  1132. vite@5.4.7:
  1133. resolution: {integrity: sha512-5l2zxqMEPVENgvzTuBpHer2awaetimj2BGkhBPdnwKbPNOlHsODU+oiazEZzLK7KhAnOrO+XGYJYn4ZlUhDtDQ==}
  1134. engines: {node: ^18.0.0 || >=20.0.0}
  1135. hasBin: true
  1136. peerDependencies:
  1137. '@types/node': ^18.0.0 || >=20.0.0
  1138. less: '*'
  1139. lightningcss: ^1.21.0
  1140. sass: '*'
  1141. sass-embedded: '*'
  1142. stylus: '*'
  1143. sugarss: '*'
  1144. terser: ^5.4.0
  1145. peerDependenciesMeta:
  1146. '@types/node':
  1147. optional: true
  1148. less:
  1149. optional: true
  1150. lightningcss:
  1151. optional: true
  1152. sass:
  1153. optional: true
  1154. sass-embedded:
  1155. optional: true
  1156. stylus:
  1157. optional: true
  1158. sugarss:
  1159. optional: true
  1160. terser:
  1161. optional: true
  1162. vscode-uri@3.0.8:
  1163. resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
  1164. vue-demi@0.14.10:
  1165. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  1166. engines: {node: '>=12'}
  1167. hasBin: true
  1168. peerDependencies:
  1169. '@vue/composition-api': ^1.0.0-rc.1
  1170. vue: ^3.0.0-0 || ^2.6.0
  1171. peerDependenciesMeta:
  1172. '@vue/composition-api':
  1173. optional: true
  1174. vue-promise-modals@0.1.0:
  1175. resolution: {integrity: sha512-LmPejeqvZSkxj4KkJe6ZUEJmCUQXVeEAj9ihTX+BRFfZftVCZSZd3B4uuZSKF0iCeQUemkodXUZFxcsNT/2dmg==}
  1176. vue-tsc@2.1.6:
  1177. resolution: {integrity: sha512-f98dyZp5FOukcYmbFpuSCJ4Z0vHSOSmxGttZJCsFeX0M4w/Rsq0s4uKXjcSRsZqsRgQa6z7SfuO+y0HVICE57Q==}
  1178. hasBin: true
  1179. peerDependencies:
  1180. typescript: '>=5.0.0'
  1181. vue@3.5.8:
  1182. resolution: {integrity: sha512-hvuvuCy51nP/1fSRvrrIqTLSvrSyz2Pq+KQ8S8SXCxTWVE0nMaOnSDnSOxV1eYmGfvK7mqiwvd1C59CEEz7dAQ==}
  1183. peerDependencies:
  1184. typescript: '*'
  1185. peerDependenciesMeta:
  1186. typescript:
  1187. optional: true
  1188. vuedraggable-es@4.1.1:
  1189. resolution: {integrity: sha512-F35pjSwC8HS/lnaOd+B59nYR4FZmwuhWAzccK9xftRuWds8SU1TZh5myKVM86j5dFOI7S26O64Kwe7LUHnXjlA==}
  1190. peerDependencies:
  1191. vue: ^3.2.31
  1192. webpack-virtual-modules@0.6.2:
  1193. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  1194. which@2.0.2:
  1195. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1196. engines: {node: '>= 8'}
  1197. hasBin: true
  1198. word-wrap@1.2.5:
  1199. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1200. engines: {node: '>=0.10.0'}
  1201. wrap-ansi@7.0.0:
  1202. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  1203. engines: {node: '>=10'}
  1204. wrap-ansi@8.1.0:
  1205. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  1206. engines: {node: '>=12'}
  1207. yaml@2.5.1:
  1208. resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
  1209. engines: {node: '>= 14'}
  1210. hasBin: true
  1211. yocto-queue@0.1.0:
  1212. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1213. engines: {node: '>=10'}
  1214. snapshots:
  1215. '@alloc/quick-lru@5.2.0': {}
  1216. '@antfu/install-pkg@0.4.1':
  1217. dependencies:
  1218. package-manager-detector: 0.2.0
  1219. tinyexec: 0.3.0
  1220. '@antfu/utils@0.7.10': {}
  1221. '@babel/helper-string-parser@7.24.8': {}
  1222. '@babel/helper-validator-identifier@7.24.7': {}
  1223. '@babel/parser@7.25.6':
  1224. dependencies:
  1225. '@babel/types': 7.25.6
  1226. '@babel/standalone@7.25.6': {}
  1227. '@babel/types@7.25.6':
  1228. dependencies:
  1229. '@babel/helper-string-parser': 7.24.8
  1230. '@babel/helper-validator-identifier': 7.24.7
  1231. to-fast-properties: 2.0.0
  1232. '@boringer-avatars/vue3@0.2.1(vue@3.5.8(typescript@5.6.2))':
  1233. dependencies:
  1234. vue: 3.5.8(typescript@5.6.2)
  1235. '@esbuild/aix-ppc64@0.21.5':
  1236. optional: true
  1237. '@esbuild/android-arm64@0.21.5':
  1238. optional: true
  1239. '@esbuild/android-arm@0.21.5':
  1240. optional: true
  1241. '@esbuild/android-x64@0.21.5':
  1242. optional: true
  1243. '@esbuild/darwin-arm64@0.21.5':
  1244. optional: true
  1245. '@esbuild/darwin-x64@0.21.5':
  1246. optional: true
  1247. '@esbuild/freebsd-arm64@0.21.5':
  1248. optional: true
  1249. '@esbuild/freebsd-x64@0.21.5':
  1250. optional: true
  1251. '@esbuild/linux-arm64@0.21.5':
  1252. optional: true
  1253. '@esbuild/linux-arm@0.21.5':
  1254. optional: true
  1255. '@esbuild/linux-ia32@0.21.5':
  1256. optional: true
  1257. '@esbuild/linux-loong64@0.21.5':
  1258. optional: true
  1259. '@esbuild/linux-mips64el@0.21.5':
  1260. optional: true
  1261. '@esbuild/linux-ppc64@0.21.5':
  1262. optional: true
  1263. '@esbuild/linux-riscv64@0.21.5':
  1264. optional: true
  1265. '@esbuild/linux-s390x@0.21.5':
  1266. optional: true
  1267. '@esbuild/linux-x64@0.21.5':
  1268. optional: true
  1269. '@esbuild/netbsd-x64@0.21.5':
  1270. optional: true
  1271. '@esbuild/openbsd-x64@0.21.5':
  1272. optional: true
  1273. '@esbuild/sunos-x64@0.21.5':
  1274. optional: true
  1275. '@esbuild/win32-arm64@0.21.5':
  1276. optional: true
  1277. '@esbuild/win32-ia32@0.21.5':
  1278. optional: true
  1279. '@esbuild/win32-x64@0.21.5':
  1280. optional: true
  1281. '@eslint-community/eslint-utils@4.4.0(eslint@9.11.1(jiti@1.21.6))':
  1282. dependencies:
  1283. eslint: 9.11.1(jiti@1.21.6)
  1284. eslint-visitor-keys: 3.4.3
  1285. '@eslint-community/regexpp@4.11.1': {}
  1286. '@eslint/config-array@0.18.0':
  1287. dependencies:
  1288. '@eslint/object-schema': 2.1.4
  1289. debug: 4.3.7
  1290. minimatch: 3.1.2
  1291. transitivePeerDependencies:
  1292. - supports-color
  1293. '@eslint/core@0.6.0': {}
  1294. '@eslint/eslintrc@3.1.0':
  1295. dependencies:
  1296. ajv: 6.12.6
  1297. debug: 4.3.7
  1298. espree: 10.1.0
  1299. globals: 14.0.0
  1300. ignore: 5.3.2
  1301. import-fresh: 3.3.0
  1302. js-yaml: 4.1.0
  1303. minimatch: 3.1.2
  1304. strip-json-comments: 3.1.1
  1305. transitivePeerDependencies:
  1306. - supports-color
  1307. '@eslint/js@9.11.1': {}
  1308. '@eslint/object-schema@2.1.4': {}
  1309. '@eslint/plugin-kit@0.2.0':
  1310. dependencies:
  1311. levn: 0.4.1
  1312. '@fontsource-variable/inter@5.1.0': {}
  1313. '@fontsource-variable/material-symbols-rounded@5.1.0': {}
  1314. '@fontsource-variable/roboto-mono@5.1.0': {}
  1315. '@hoppscotch/ui@0.2.1(eslint@9.11.1(jiti@1.21.6))(terser@5.34.0)(typescript@5.6.2)(vite@5.4.7(@types/node@22.7.0)(terser@5.34.0))(vue@3.5.8(typescript@5.6.2))':
  1316. dependencies:
  1317. '@boringer-avatars/vue3': 0.2.1(vue@3.5.8(typescript@5.6.2))
  1318. '@fontsource-variable/inter': 5.1.0
  1319. '@fontsource-variable/material-symbols-rounded': 5.1.0
  1320. '@fontsource-variable/roboto-mono': 5.1.0
  1321. '@hoppscotch/vue-sonner': 1.2.3
  1322. '@hoppscotch/vue-toasted': 0.1.0(vue@3.5.8(typescript@5.6.2))
  1323. '@vitejs/plugin-legacy': 2.3.1(terser@5.34.0)(vite@5.4.7(@types/node@22.7.0)(terser@5.34.0))
  1324. '@vueuse/core': 8.9.4(vue@3.5.8(typescript@5.6.2))
  1325. fp-ts: 2.16.9
  1326. lodash-es: 4.17.21
  1327. path: 0.12.7
  1328. vite-plugin-eslint: 1.8.1(eslint@9.11.1(jiti@1.21.6))(vite@5.4.7(@types/node@22.7.0)(terser@5.34.0))
  1329. vue: 3.5.8(typescript@5.6.2)
  1330. vue-promise-modals: 0.1.0(typescript@5.6.2)
  1331. vuedraggable-es: 4.1.1(vue@3.5.8(typescript@5.6.2))
  1332. transitivePeerDependencies:
  1333. - '@vue/composition-api'
  1334. - eslint
  1335. - terser
  1336. - typescript
  1337. - vite
  1338. '@hoppscotch/vue-sonner@1.2.3': {}
  1339. '@hoppscotch/vue-toasted@0.1.0(vue@3.5.8(typescript@5.6.2))':
  1340. dependencies:
  1341. vue: 3.5.8(typescript@5.6.2)
  1342. '@humanwhocodes/module-importer@1.0.1': {}
  1343. '@humanwhocodes/retry@0.3.0': {}
  1344. '@iconify-json/lucide@1.2.6':
  1345. dependencies:
  1346. '@iconify/types': 2.0.0
  1347. '@iconify/types@2.0.0': {}
  1348. '@iconify/utils@2.1.33':
  1349. dependencies:
  1350. '@antfu/install-pkg': 0.4.1
  1351. '@antfu/utils': 0.7.10
  1352. '@iconify/types': 2.0.0
  1353. debug: 4.3.7
  1354. kolorist: 1.8.0
  1355. local-pkg: 0.5.0
  1356. mlly: 1.7.1
  1357. transitivePeerDependencies:
  1358. - supports-color
  1359. '@isaacs/cliui@8.0.2':
  1360. dependencies:
  1361. string-width: 5.1.2
  1362. string-width-cjs: string-width@4.2.3
  1363. strip-ansi: 7.1.0
  1364. strip-ansi-cjs: strip-ansi@6.0.1
  1365. wrap-ansi: 8.1.0
  1366. wrap-ansi-cjs: wrap-ansi@7.0.0
  1367. '@jridgewell/gen-mapping@0.3.5':
  1368. dependencies:
  1369. '@jridgewell/set-array': 1.2.1
  1370. '@jridgewell/sourcemap-codec': 1.5.0
  1371. '@jridgewell/trace-mapping': 0.3.25
  1372. '@jridgewell/resolve-uri@3.1.2': {}
  1373. '@jridgewell/set-array@1.2.1': {}
  1374. '@jridgewell/source-map@0.3.6':
  1375. dependencies:
  1376. '@jridgewell/gen-mapping': 0.3.5
  1377. '@jridgewell/trace-mapping': 0.3.25
  1378. '@jridgewell/sourcemap-codec@1.5.0': {}
  1379. '@jridgewell/trace-mapping@0.3.25':
  1380. dependencies:
  1381. '@jridgewell/resolve-uri': 3.1.2
  1382. '@jridgewell/sourcemap-codec': 1.5.0
  1383. '@nodelib/fs.scandir@2.1.5':
  1384. dependencies:
  1385. '@nodelib/fs.stat': 2.0.5
  1386. run-parallel: 1.2.0
  1387. '@nodelib/fs.stat@2.0.5': {}
  1388. '@nodelib/fs.walk@1.2.8':
  1389. dependencies:
  1390. '@nodelib/fs.scandir': 2.1.5
  1391. fastq: 1.17.1
  1392. '@pkgjs/parseargs@0.11.0':
  1393. optional: true
  1394. '@rollup/pluginutils@4.2.1':
  1395. dependencies:
  1396. estree-walker: 2.0.2
  1397. picomatch: 2.3.1
  1398. '@rollup/rollup-android-arm-eabi@4.22.4':
  1399. optional: true
  1400. '@rollup/rollup-android-arm64@4.22.4':
  1401. optional: true
  1402. '@rollup/rollup-darwin-arm64@4.22.4':
  1403. optional: true
  1404. '@rollup/rollup-darwin-x64@4.22.4':
  1405. optional: true
  1406. '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
  1407. optional: true
  1408. '@rollup/rollup-linux-arm-musleabihf@4.22.4':
  1409. optional: true
  1410. '@rollup/rollup-linux-arm64-gnu@4.22.4':
  1411. optional: true
  1412. '@rollup/rollup-linux-arm64-musl@4.22.4':
  1413. optional: true
  1414. '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
  1415. optional: true
  1416. '@rollup/rollup-linux-riscv64-gnu@4.22.4':
  1417. optional: true
  1418. '@rollup/rollup-linux-s390x-gnu@4.22.4':
  1419. optional: true
  1420. '@rollup/rollup-linux-x64-gnu@4.22.4':
  1421. optional: true
  1422. '@rollup/rollup-linux-x64-musl@4.22.4':
  1423. optional: true
  1424. '@rollup/rollup-win32-arm64-msvc@4.22.4':
  1425. optional: true
  1426. '@rollup/rollup-win32-ia32-msvc@4.22.4':
  1427. optional: true
  1428. '@rollup/rollup-win32-x64-msvc@4.22.4':
  1429. optional: true
  1430. '@tauri-apps/api@2.0.0-rc.5': {}
  1431. '@tauri-apps/cli-darwin-arm64@2.0.0-rc.16':
  1432. optional: true
  1433. '@tauri-apps/cli-darwin-x64@2.0.0-rc.16':
  1434. optional: true
  1435. '@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-rc.16':
  1436. optional: true
  1437. '@tauri-apps/cli-linux-arm64-gnu@2.0.0-rc.16':
  1438. optional: true
  1439. '@tauri-apps/cli-linux-arm64-musl@2.0.0-rc.16':
  1440. optional: true
  1441. '@tauri-apps/cli-linux-x64-gnu@2.0.0-rc.16':
  1442. optional: true
  1443. '@tauri-apps/cli-linux-x64-musl@2.0.0-rc.16':
  1444. optional: true
  1445. '@tauri-apps/cli-win32-arm64-msvc@2.0.0-rc.16':
  1446. optional: true
  1447. '@tauri-apps/cli-win32-ia32-msvc@2.0.0-rc.16':
  1448. optional: true
  1449. '@tauri-apps/cli-win32-x64-msvc@2.0.0-rc.16':
  1450. optional: true
  1451. '@tauri-apps/cli@2.0.0-rc.16':
  1452. optionalDependencies:
  1453. '@tauri-apps/cli-darwin-arm64': 2.0.0-rc.16
  1454. '@tauri-apps/cli-darwin-x64': 2.0.0-rc.16
  1455. '@tauri-apps/cli-linux-arm-gnueabihf': 2.0.0-rc.16
  1456. '@tauri-apps/cli-linux-arm64-gnu': 2.0.0-rc.16
  1457. '@tauri-apps/cli-linux-arm64-musl': 2.0.0-rc.16
  1458. '@tauri-apps/cli-linux-x64-gnu': 2.0.0-rc.16
  1459. '@tauri-apps/cli-linux-x64-musl': 2.0.0-rc.16
  1460. '@tauri-apps/cli-win32-arm64-msvc': 2.0.0-rc.16
  1461. '@tauri-apps/cli-win32-ia32-msvc': 2.0.0-rc.16
  1462. '@tauri-apps/cli-win32-x64-msvc': 2.0.0-rc.16
  1463. '@tauri-apps/plugin-shell@2.0.0-rc.1':
  1464. dependencies:
  1465. '@tauri-apps/api': 2.0.0-rc.5
  1466. '@types/eslint@8.56.12':
  1467. dependencies:
  1468. '@types/estree': 1.0.5
  1469. '@types/json-schema': 7.0.15
  1470. '@types/estree@1.0.5': {}
  1471. '@types/estree@1.0.6': {}
  1472. '@types/json-schema@7.0.15': {}
  1473. '@types/node@22.7.0':
  1474. dependencies:
  1475. undici-types: 6.19.8
  1476. '@types/web-bluetooth@0.0.14': {}
  1477. '@types/web-bluetooth@0.0.20': {}
  1478. '@vitejs/plugin-legacy@2.3.1(terser@5.34.0)(vite@5.4.7(@types/node@22.7.0)(terser@5.34.0))':
  1479. dependencies:
  1480. '@babel/standalone': 7.25.6
  1481. core-js: 3.38.1
  1482. magic-string: 0.26.7
  1483. regenerator-runtime: 0.13.11
  1484. systemjs: 6.15.1
  1485. terser: 5.34.0
  1486. vite: 5.4.7(@types/node@22.7.0)(terser@5.34.0)
  1487. '@vitejs/plugin-vue@5.1.4(vite@5.4.7(@types/node@22.7.0)(terser@5.34.0))(vue@3.5.8(typescript@5.6.2))':
  1488. dependencies:
  1489. vite: 5.4.7(@types/node@22.7.0)(terser@5.34.0)
  1490. vue: 3.5.8(typescript@5.6.2)
  1491. '@volar/language-core@2.4.5':
  1492. dependencies:
  1493. '@volar/source-map': 2.4.5
  1494. '@volar/source-map@2.4.5': {}
  1495. '@volar/typescript@2.4.5':
  1496. dependencies:
  1497. '@volar/language-core': 2.4.5
  1498. path-browserify: 1.0.1
  1499. vscode-uri: 3.0.8
  1500. '@vue/compiler-core@3.5.8':
  1501. dependencies:
  1502. '@babel/parser': 7.25.6
  1503. '@vue/shared': 3.5.8
  1504. entities: 4.5.0
  1505. estree-walker: 2.0.2
  1506. source-map-js: 1.2.1
  1507. '@vue/compiler-dom@3.5.8':
  1508. dependencies:
  1509. '@vue/compiler-core': 3.5.8
  1510. '@vue/shared': 3.5.8
  1511. '@vue/compiler-sfc@3.5.8':
  1512. dependencies:
  1513. '@babel/parser': 7.25.6
  1514. '@vue/compiler-core': 3.5.8
  1515. '@vue/compiler-dom': 3.5.8
  1516. '@vue/compiler-ssr': 3.5.8
  1517. '@vue/shared': 3.5.8
  1518. estree-walker: 2.0.2
  1519. magic-string: 0.30.11
  1520. postcss: 8.4.47
  1521. source-map-js: 1.2.1
  1522. '@vue/compiler-ssr@3.5.8':
  1523. dependencies:
  1524. '@vue/compiler-dom': 3.5.8
  1525. '@vue/shared': 3.5.8
  1526. '@vue/compiler-vue2@2.7.16':
  1527. dependencies:
  1528. de-indent: 1.0.2
  1529. he: 1.2.0
  1530. '@vue/language-core@2.1.6(typescript@5.6.2)':
  1531. dependencies:
  1532. '@volar/language-core': 2.4.5
  1533. '@vue/compiler-dom': 3.5.8
  1534. '@vue/compiler-vue2': 2.7.16
  1535. '@vue/shared': 3.5.8
  1536. computeds: 0.0.1
  1537. minimatch: 9.0.5
  1538. muggle-string: 0.4.1
  1539. path-browserify: 1.0.1
  1540. optionalDependencies:
  1541. typescript: 5.6.2
  1542. '@vue/reactivity@3.5.8':
  1543. dependencies:
  1544. '@vue/shared': 3.5.8
  1545. '@vue/runtime-core@3.5.8':
  1546. dependencies:
  1547. '@vue/reactivity': 3.5.8
  1548. '@vue/shared': 3.5.8
  1549. '@vue/runtime-dom@3.5.8':
  1550. dependencies:
  1551. '@vue/reactivity': 3.5.8
  1552. '@vue/runtime-core': 3.5.8
  1553. '@vue/shared': 3.5.8
  1554. csstype: 3.1.3
  1555. '@vue/server-renderer@3.5.8(vue@3.5.8(typescript@5.6.2))':
  1556. dependencies:
  1557. '@vue/compiler-ssr': 3.5.8
  1558. '@vue/shared': 3.5.8
  1559. vue: 3.5.8(typescript@5.6.2)
  1560. '@vue/shared@3.5.8': {}
  1561. '@vueuse/core@11.1.0(vue@3.5.8(typescript@5.6.2))':
  1562. dependencies:
  1563. '@types/web-bluetooth': 0.0.20
  1564. '@vueuse/metadata': 11.1.0
  1565. '@vueuse/shared': 11.1.0(vue@3.5.8(typescript@5.6.2))
  1566. vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
  1567. transitivePeerDependencies:
  1568. - '@vue/composition-api'
  1569. - vue
  1570. '@vueuse/core@8.9.4(vue@3.5.8(typescript@5.6.2))':
  1571. dependencies:
  1572. '@types/web-bluetooth': 0.0.14
  1573. '@vueuse/metadata': 8.9.4
  1574. '@vueuse/shared': 8.9.4(vue@3.5.8(typescript@5.6.2))
  1575. vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
  1576. optionalDependencies:
  1577. vue: 3.5.8(typescript@5.6.2)
  1578. '@vueuse/metadata@11.1.0': {}
  1579. '@vueuse/metadata@8.9.4': {}
  1580. '@vueuse/shared@11.1.0(vue@3.5.8(typescript@5.6.2))':
  1581. dependencies:
  1582. vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
  1583. transitivePeerDependencies:
  1584. - '@vue/composition-api'
  1585. - vue
  1586. '@vueuse/shared@8.9.4(vue@3.5.8(typescript@5.6.2))':
  1587. dependencies:
  1588. vue-demi: 0.14.10(vue@3.5.8(typescript@5.6.2))
  1589. optionalDependencies:
  1590. vue: 3.5.8(typescript@5.6.2)
  1591. acorn-jsx@5.3.2(acorn@8.12.1):
  1592. dependencies:
  1593. acorn: 8.12.1
  1594. acorn@8.12.1: {}
  1595. ajv@6.12.6:
  1596. dependencies:
  1597. fast-deep-equal: 3.1.3
  1598. fast-json-stable-stringify: 2.1.0
  1599. json-schema-traverse: 0.4.1
  1600. uri-js: 4.4.1
  1601. ansi-regex@5.0.1: {}
  1602. ansi-regex@6.1.0: {}
  1603. ansi-styles@4.3.0:
  1604. dependencies:
  1605. color-convert: 2.0.1
  1606. ansi-styles@6.2.1: {}
  1607. any-promise@1.3.0: {}
  1608. anymatch@3.1.3:
  1609. dependencies:
  1610. normalize-path: 3.0.0
  1611. picomatch: 2.3.1
  1612. arg@5.0.2: {}
  1613. argparse@2.0.1: {}
  1614. asynckit@0.4.0: {}
  1615. autoprefixer@10.4.20(postcss@8.4.47):
  1616. dependencies:
  1617. browserslist: 4.24.0
  1618. caniuse-lite: 1.0.30001663
  1619. fraction.js: 4.3.7
  1620. normalize-range: 0.1.2
  1621. picocolors: 1.1.0
  1622. postcss: 8.4.47
  1623. postcss-value-parser: 4.2.0
  1624. axios@1.7.7:
  1625. dependencies:
  1626. follow-redirects: 1.15.9
  1627. form-data: 4.0.0
  1628. proxy-from-env: 1.1.0
  1629. transitivePeerDependencies:
  1630. - debug
  1631. balanced-match@1.0.2: {}
  1632. binary-extensions@2.3.0: {}
  1633. brace-expansion@1.1.11:
  1634. dependencies:
  1635. balanced-match: 1.0.2
  1636. concat-map: 0.0.1
  1637. brace-expansion@2.0.1:
  1638. dependencies:
  1639. balanced-match: 1.0.2
  1640. braces@3.0.3:
  1641. dependencies:
  1642. fill-range: 7.1.1
  1643. browserslist@4.24.0:
  1644. dependencies:
  1645. caniuse-lite: 1.0.30001663
  1646. electron-to-chromium: 1.5.28
  1647. node-releases: 2.0.18
  1648. update-browserslist-db: 1.1.0(browserslist@4.24.0)
  1649. buffer-from@1.1.2: {}
  1650. callsites@3.1.0: {}
  1651. camelcase-css@2.0.1: {}
  1652. caniuse-lite@1.0.30001663: {}
  1653. chalk@4.1.2:
  1654. dependencies:
  1655. ansi-styles: 4.3.0
  1656. supports-color: 7.2.0
  1657. chokidar@3.6.0:
  1658. dependencies:
  1659. anymatch: 3.1.3
  1660. braces: 3.0.3
  1661. glob-parent: 5.1.2
  1662. is-binary-path: 2.1.0
  1663. is-glob: 4.0.3
  1664. normalize-path: 3.0.0
  1665. readdirp: 3.6.0
  1666. optionalDependencies:
  1667. fsevents: 2.3.3
  1668. color-convert@2.0.1:
  1669. dependencies:
  1670. color-name: 1.1.4
  1671. color-name@1.1.4: {}
  1672. combined-stream@1.0.8:
  1673. dependencies:
  1674. delayed-stream: 1.0.0
  1675. commander@2.20.3: {}
  1676. commander@4.1.1: {}
  1677. computeds@0.0.1: {}
  1678. concat-map@0.0.1: {}
  1679. confbox@0.1.7: {}
  1680. core-js@3.38.1: {}
  1681. cross-spawn@7.0.3:
  1682. dependencies:
  1683. path-key: 3.1.1
  1684. shebang-command: 2.0.0
  1685. which: 2.0.2
  1686. cssesc@3.0.0: {}
  1687. csstype@3.1.3: {}
  1688. de-indent@1.0.2: {}
  1689. debug@4.3.7:
  1690. dependencies:
  1691. ms: 2.1.3
  1692. deep-is@0.1.4: {}
  1693. delayed-stream@1.0.0: {}
  1694. didyoumean@1.2.2: {}
  1695. dlv@1.1.3: {}
  1696. eastasianwidth@0.2.0: {}
  1697. electron-to-chromium@1.5.28: {}
  1698. emoji-regex@8.0.0: {}
  1699. emoji-regex@9.2.2: {}
  1700. entities@4.5.0: {}
  1701. esbuild@0.21.5:
  1702. optionalDependencies:
  1703. '@esbuild/aix-ppc64': 0.21.5
  1704. '@esbuild/android-arm': 0.21.5
  1705. '@esbuild/android-arm64': 0.21.5
  1706. '@esbuild/android-x64': 0.21.5
  1707. '@esbuild/darwin-arm64': 0.21.5
  1708. '@esbuild/darwin-x64': 0.21.5
  1709. '@esbuild/freebsd-arm64': 0.21.5
  1710. '@esbuild/freebsd-x64': 0.21.5
  1711. '@esbuild/linux-arm': 0.21.5
  1712. '@esbuild/linux-arm64': 0.21.5
  1713. '@esbuild/linux-ia32': 0.21.5
  1714. '@esbuild/linux-loong64': 0.21.5
  1715. '@esbuild/linux-mips64el': 0.21.5
  1716. '@esbuild/linux-ppc64': 0.21.5
  1717. '@esbuild/linux-riscv64': 0.21.5
  1718. '@esbuild/linux-s390x': 0.21.5
  1719. '@esbuild/linux-x64': 0.21.5
  1720. '@esbuild/netbsd-x64': 0.21.5
  1721. '@esbuild/openbsd-x64': 0.21.5
  1722. '@esbuild/sunos-x64': 0.21.5
  1723. '@esbuild/win32-arm64': 0.21.5
  1724. '@esbuild/win32-ia32': 0.21.5
  1725. '@esbuild/win32-x64': 0.21.5
  1726. escalade@3.2.0: {}
  1727. escape-string-regexp@4.0.0: {}
  1728. eslint-scope@8.0.2:
  1729. dependencies:
  1730. esrecurse: 4.3.0
  1731. estraverse: 5.3.0
  1732. eslint-visitor-keys@3.4.3: {}
  1733. eslint-visitor-keys@4.0.0: {}
  1734. eslint@9.11.1(jiti@1.21.6):
  1735. dependencies:
  1736. '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6))
  1737. '@eslint-community/regexpp': 4.11.1
  1738. '@eslint/config-array': 0.18.0
  1739. '@eslint/core': 0.6.0
  1740. '@eslint/eslintrc': 3.1.0
  1741. '@eslint/js': 9.11.1
  1742. '@eslint/plugin-kit': 0.2.0
  1743. '@humanwhocodes/module-importer': 1.0.1
  1744. '@humanwhocodes/retry': 0.3.0
  1745. '@nodelib/fs.walk': 1.2.8
  1746. '@types/estree': 1.0.6
  1747. '@types/json-schema': 7.0.15
  1748. ajv: 6.12.6
  1749. chalk: 4.1.2
  1750. cross-spawn: 7.0.3
  1751. debug: 4.3.7
  1752. escape-string-regexp: 4.0.0
  1753. eslint-scope: 8.0.2
  1754. eslint-visitor-keys: 4.0.0
  1755. espree: 10.1.0
  1756. esquery: 1.6.0
  1757. esutils: 2.0.3
  1758. fast-deep-equal: 3.1.3
  1759. file-entry-cache: 8.0.0
  1760. find-up: 5.0.0
  1761. glob-parent: 6.0.2
  1762. ignore: 5.3.2
  1763. imurmurhash: 0.1.4
  1764. is-glob: 4.0.3
  1765. is-path-inside: 3.0.3
  1766. json-stable-stringify-without-jsonify: 1.0.1
  1767. lodash.merge: 4.6.2
  1768. minimatch: 3.1.2
  1769. natural-compare: 1.4.0
  1770. optionator: 0.9.4
  1771. strip-ansi: 6.0.1
  1772. text-table: 0.2.0
  1773. optionalDependencies:
  1774. jiti: 1.21.6
  1775. transitivePeerDependencies:
  1776. - supports-color
  1777. espree@10.1.0:
  1778. dependencies:
  1779. acorn: 8.12.1
  1780. acorn-jsx: 5.3.2(acorn@8.12.1)
  1781. eslint-visitor-keys: 4.0.0
  1782. esquery@1.6.0:
  1783. dependencies:
  1784. estraverse: 5.3.0
  1785. esrecurse@4.3.0:
  1786. dependencies:
  1787. estraverse: 5.3.0
  1788. estraverse@5.3.0: {}
  1789. estree-walker@2.0.2: {}
  1790. esutils@2.0.3: {}
  1791. fast-deep-equal@3.1.3: {}
  1792. fast-glob@3.3.2:
  1793. dependencies:
  1794. '@nodelib/fs.stat': 2.0.5
  1795. '@nodelib/fs.walk': 1.2.8
  1796. glob-parent: 5.1.2
  1797. merge2: 1.4.1
  1798. micromatch: 4.0.8
  1799. fast-json-stable-stringify@2.1.0: {}
  1800. fast-levenshtein@2.0.6: {}
  1801. fastq@1.17.1:
  1802. dependencies:
  1803. reusify: 1.0.4
  1804. file-entry-cache@8.0.0:
  1805. dependencies:
  1806. flat-cache: 4.0.1
  1807. fill-range@7.1.1:
  1808. dependencies:
  1809. to-regex-range: 5.0.1
  1810. find-up@5.0.0:
  1811. dependencies:
  1812. locate-path: 6.0.0
  1813. path-exists: 4.0.0
  1814. flat-cache@4.0.1:
  1815. dependencies:
  1816. flatted: 3.3.1
  1817. keyv: 4.5.4
  1818. flatted@3.3.1: {}
  1819. follow-redirects@1.15.9: {}
  1820. foreground-child@3.3.0:
  1821. dependencies:
  1822. cross-spawn: 7.0.3
  1823. signal-exit: 4.1.0
  1824. form-data@4.0.0:
  1825. dependencies:
  1826. asynckit: 0.4.0
  1827. combined-stream: 1.0.8
  1828. mime-types: 2.1.35
  1829. fp-ts@2.16.9: {}
  1830. fraction.js@4.3.7: {}
  1831. fsevents@2.3.3:
  1832. optional: true
  1833. function-bind@1.1.2: {}
  1834. glob-parent@5.1.2:
  1835. dependencies:
  1836. is-glob: 4.0.3
  1837. glob-parent@6.0.2:
  1838. dependencies:
  1839. is-glob: 4.0.3
  1840. glob@10.4.5:
  1841. dependencies:
  1842. foreground-child: 3.3.0
  1843. jackspeak: 3.4.3
  1844. minimatch: 9.0.5
  1845. minipass: 7.1.2
  1846. package-json-from-dist: 1.0.0
  1847. path-scurry: 1.11.1
  1848. globals@14.0.0: {}
  1849. has-flag@4.0.0: {}
  1850. hasown@2.0.2:
  1851. dependencies:
  1852. function-bind: 1.1.2
  1853. he@1.2.0: {}
  1854. ignore@5.3.2: {}
  1855. import-fresh@3.3.0:
  1856. dependencies:
  1857. parent-module: 1.0.1
  1858. resolve-from: 4.0.0
  1859. imurmurhash@0.1.4: {}
  1860. inherits@2.0.3: {}
  1861. is-binary-path@2.1.0:
  1862. dependencies:
  1863. binary-extensions: 2.3.0
  1864. is-core-module@2.15.1:
  1865. dependencies:
  1866. hasown: 2.0.2
  1867. is-extglob@2.1.1: {}
  1868. is-fullwidth-code-point@3.0.0: {}
  1869. is-glob@4.0.3:
  1870. dependencies:
  1871. is-extglob: 2.1.1
  1872. is-number@7.0.0: {}
  1873. is-path-inside@3.0.3: {}
  1874. isexe@2.0.0: {}
  1875. jackspeak@3.4.3:
  1876. dependencies:
  1877. '@isaacs/cliui': 8.0.2
  1878. optionalDependencies:
  1879. '@pkgjs/parseargs': 0.11.0
  1880. jiti@1.21.6: {}
  1881. js-yaml@4.1.0:
  1882. dependencies:
  1883. argparse: 2.0.1
  1884. json-buffer@3.0.1: {}
  1885. json-schema-traverse@0.4.1: {}
  1886. json-stable-stringify-without-jsonify@1.0.1: {}
  1887. keyv@4.5.4:
  1888. dependencies:
  1889. json-buffer: 3.0.1
  1890. kolorist@1.8.0: {}
  1891. levn@0.4.1:
  1892. dependencies:
  1893. prelude-ls: 1.2.1
  1894. type-check: 0.4.0
  1895. lilconfig@2.1.0: {}
  1896. lilconfig@3.1.2: {}
  1897. lines-and-columns@1.2.4: {}
  1898. local-pkg@0.5.0:
  1899. dependencies:
  1900. mlly: 1.7.1
  1901. pkg-types: 1.2.0
  1902. locate-path@6.0.0:
  1903. dependencies:
  1904. p-locate: 5.0.0
  1905. lodash-es@4.17.21: {}
  1906. lodash.merge@4.6.2: {}
  1907. lru-cache@10.4.3: {}
  1908. magic-string@0.26.7:
  1909. dependencies:
  1910. sourcemap-codec: 1.4.8
  1911. magic-string@0.30.11:
  1912. dependencies:
  1913. '@jridgewell/sourcemap-codec': 1.5.0
  1914. merge2@1.4.1: {}
  1915. micromatch@4.0.8:
  1916. dependencies:
  1917. braces: 3.0.3
  1918. picomatch: 2.3.1
  1919. mime-db@1.52.0: {}
  1920. mime-types@2.1.35:
  1921. dependencies:
  1922. mime-db: 1.52.0
  1923. minimatch@3.1.2:
  1924. dependencies:
  1925. brace-expansion: 1.1.11
  1926. minimatch@9.0.5:
  1927. dependencies:
  1928. brace-expansion: 2.0.1
  1929. minipass@7.1.2: {}
  1930. mlly@1.7.1:
  1931. dependencies:
  1932. acorn: 8.12.1
  1933. pathe: 1.1.2
  1934. pkg-types: 1.2.0
  1935. ufo: 1.5.4
  1936. ms@2.1.3: {}
  1937. muggle-string@0.4.1: {}
  1938. mz@2.7.0:
  1939. dependencies:
  1940. any-promise: 1.3.0
  1941. object-assign: 4.1.1
  1942. thenify-all: 1.6.0
  1943. nanoid@3.3.7: {}
  1944. natural-compare@1.4.0: {}
  1945. node-releases@2.0.18: {}
  1946. normalize-path@3.0.0: {}
  1947. normalize-range@0.1.2: {}
  1948. object-assign@4.1.1: {}
  1949. object-hash@3.0.0: {}
  1950. optionator@0.9.4:
  1951. dependencies:
  1952. deep-is: 0.1.4
  1953. fast-levenshtein: 2.0.6
  1954. levn: 0.4.1
  1955. prelude-ls: 1.2.1
  1956. type-check: 0.4.0
  1957. word-wrap: 1.2.5
  1958. p-limit@3.1.0:
  1959. dependencies:
  1960. yocto-queue: 0.1.0
  1961. p-locate@5.0.0:
  1962. dependencies:
  1963. p-limit: 3.1.0
  1964. package-json-from-dist@1.0.0: {}
  1965. package-manager-detector@0.2.0: {}
  1966. parent-module@1.0.1:
  1967. dependencies:
  1968. callsites: 3.1.0
  1969. path-browserify@1.0.1: {}
  1970. path-exists@4.0.0: {}
  1971. path-key@3.1.1: {}
  1972. path-parse@1.0.7: {}
  1973. path-scurry@1.11.1:
  1974. dependencies:
  1975. lru-cache: 10.4.3
  1976. minipass: 7.1.2
  1977. path@0.12.7:
  1978. dependencies:
  1979. process: 0.11.10
  1980. util: 0.10.4
  1981. pathe@1.1.2: {}
  1982. picocolors@1.1.0: {}
  1983. picomatch@2.3.1: {}
  1984. pify@2.3.0: {}
  1985. pirates@4.0.6: {}
  1986. pkg-types@1.2.0:
  1987. dependencies:
  1988. confbox: 0.1.7
  1989. mlly: 1.7.1
  1990. pathe: 1.1.2
  1991. postcss-import@15.1.0(postcss@8.4.47):
  1992. dependencies:
  1993. postcss: 8.4.47
  1994. postcss-value-parser: 4.2.0
  1995. read-cache: 1.0.0
  1996. resolve: 1.22.8
  1997. postcss-js@4.0.1(postcss@8.4.47):
  1998. dependencies:
  1999. camelcase-css: 2.0.1
  2000. postcss: 8.4.47
  2001. postcss-load-config@4.0.2(postcss@8.4.47):
  2002. dependencies:
  2003. lilconfig: 3.1.2
  2004. yaml: 2.5.1
  2005. optionalDependencies:
  2006. postcss: 8.4.47
  2007. postcss-nested@6.2.0(postcss@8.4.47):
  2008. dependencies:
  2009. postcss: 8.4.47
  2010. postcss-selector-parser: 6.1.2
  2011. postcss-selector-parser@6.1.2:
  2012. dependencies:
  2013. cssesc: 3.0.0
  2014. util-deprecate: 1.0.2
  2015. postcss-value-parser@4.2.0: {}
  2016. postcss@8.4.47:
  2017. dependencies:
  2018. nanoid: 3.3.7
  2019. picocolors: 1.1.0
  2020. source-map-js: 1.2.1
  2021. prelude-ls@1.2.1: {}
  2022. process@0.11.10: {}
  2023. proxy-from-env@1.1.0: {}
  2024. punycode@2.3.1: {}
  2025. queue-microtask@1.2.3: {}
  2026. read-cache@1.0.0:
  2027. dependencies:
  2028. pify: 2.3.0
  2029. readdirp@3.6.0:
  2030. dependencies:
  2031. picomatch: 2.3.1
  2032. regenerator-runtime@0.13.11: {}
  2033. resolve-from@4.0.0: {}
  2034. resolve@1.22.8:
  2035. dependencies:
  2036. is-core-module: 2.15.1
  2037. path-parse: 1.0.7
  2038. supports-preserve-symlinks-flag: 1.0.0
  2039. reusify@1.0.4: {}
  2040. rollup@2.79.1:
  2041. optionalDependencies:
  2042. fsevents: 2.3.3
  2043. rollup@4.22.4:
  2044. dependencies:
  2045. '@types/estree': 1.0.5
  2046. optionalDependencies:
  2047. '@rollup/rollup-android-arm-eabi': 4.22.4
  2048. '@rollup/rollup-android-arm64': 4.22.4
  2049. '@rollup/rollup-darwin-arm64': 4.22.4
  2050. '@rollup/rollup-darwin-x64': 4.22.4
  2051. '@rollup/rollup-linux-arm-gnueabihf': 4.22.4
  2052. '@rollup/rollup-linux-arm-musleabihf': 4.22.4
  2053. '@rollup/rollup-linux-arm64-gnu': 4.22.4
  2054. '@rollup/rollup-linux-arm64-musl': 4.22.4
  2055. '@rollup/rollup-linux-powerpc64le-gnu': 4.22.4
  2056. '@rollup/rollup-linux-riscv64-gnu': 4.22.4
  2057. '@rollup/rollup-linux-s390x-gnu': 4.22.4
  2058. '@rollup/rollup-linux-x64-gnu': 4.22.4
  2059. '@rollup/rollup-linux-x64-musl': 4.22.4
  2060. '@rollup/rollup-win32-arm64-msvc': 4.22.4
  2061. '@rollup/rollup-win32-ia32-msvc': 4.22.4
  2062. '@rollup/rollup-win32-x64-msvc': 4.22.4
  2063. fsevents: 2.3.3
  2064. run-parallel@1.2.0:
  2065. dependencies:
  2066. queue-microtask: 1.2.3
  2067. semver@7.6.3: {}
  2068. shebang-command@2.0.0:
  2069. dependencies:
  2070. shebang-regex: 3.0.0
  2071. shebang-regex@3.0.0: {}
  2072. signal-exit@4.1.0: {}
  2073. sortablejs@1.14.0: {}
  2074. source-map-js@1.2.1: {}
  2075. source-map-support@0.5.21:
  2076. dependencies:
  2077. buffer-from: 1.1.2
  2078. source-map: 0.6.1
  2079. source-map@0.6.1: {}
  2080. sourcemap-codec@1.4.8: {}
  2081. string-width@4.2.3:
  2082. dependencies:
  2083. emoji-regex: 8.0.0
  2084. is-fullwidth-code-point: 3.0.0
  2085. strip-ansi: 6.0.1
  2086. string-width@5.1.2:
  2087. dependencies:
  2088. eastasianwidth: 0.2.0
  2089. emoji-regex: 9.2.2
  2090. strip-ansi: 7.1.0
  2091. strip-ansi@6.0.1:
  2092. dependencies:
  2093. ansi-regex: 5.0.1
  2094. strip-ansi@7.1.0:
  2095. dependencies:
  2096. ansi-regex: 6.1.0
  2097. strip-json-comments@3.1.1: {}
  2098. sucrase@3.35.0:
  2099. dependencies:
  2100. '@jridgewell/gen-mapping': 0.3.5
  2101. commander: 4.1.1
  2102. glob: 10.4.5
  2103. lines-and-columns: 1.2.4
  2104. mz: 2.7.0
  2105. pirates: 4.0.6
  2106. ts-interface-checker: 0.1.13
  2107. supports-color@7.2.0:
  2108. dependencies:
  2109. has-flag: 4.0.0
  2110. supports-preserve-symlinks-flag@1.0.0: {}
  2111. systemjs@6.15.1: {}
  2112. tailwindcss@3.4.13:
  2113. dependencies:
  2114. '@alloc/quick-lru': 5.2.0
  2115. arg: 5.0.2
  2116. chokidar: 3.6.0
  2117. didyoumean: 1.2.2
  2118. dlv: 1.1.3
  2119. fast-glob: 3.3.2
  2120. glob-parent: 6.0.2
  2121. is-glob: 4.0.3
  2122. jiti: 1.21.6
  2123. lilconfig: 2.1.0
  2124. micromatch: 4.0.8
  2125. normalize-path: 3.0.0
  2126. object-hash: 3.0.0
  2127. picocolors: 1.1.0
  2128. postcss: 8.4.47
  2129. postcss-import: 15.1.0(postcss@8.4.47)
  2130. postcss-js: 4.0.1(postcss@8.4.47)
  2131. postcss-load-config: 4.0.2(postcss@8.4.47)
  2132. postcss-nested: 6.2.0(postcss@8.4.47)
  2133. postcss-selector-parser: 6.1.2
  2134. resolve: 1.22.8
  2135. sucrase: 3.35.0
  2136. transitivePeerDependencies:
  2137. - ts-node
  2138. terser@5.34.0:
  2139. dependencies:
  2140. '@jridgewell/source-map': 0.3.6
  2141. acorn: 8.12.1
  2142. commander: 2.20.3
  2143. source-map-support: 0.5.21
  2144. text-table@0.2.0: {}
  2145. thenify-all@1.6.0:
  2146. dependencies:
  2147. thenify: 3.3.1
  2148. thenify@3.3.1:
  2149. dependencies:
  2150. any-promise: 1.3.0
  2151. tinyexec@0.3.0: {}
  2152. to-fast-properties@2.0.0: {}
  2153. to-regex-range@5.0.1:
  2154. dependencies:
  2155. is-number: 7.0.0
  2156. ts-interface-checker@0.1.13: {}
  2157. type-check@0.4.0:
  2158. dependencies:
  2159. prelude-ls: 1.2.1
  2160. typescript@5.6.2: {}
  2161. ufo@1.5.4: {}
  2162. undici-types@6.19.8: {}
  2163. unplugin-icons@0.19.3(@vue/compiler-sfc@3.5.8):
  2164. dependencies:
  2165. '@antfu/install-pkg': 0.4.1
  2166. '@antfu/utils': 0.7.10
  2167. '@iconify/utils': 2.1.33
  2168. debug: 4.3.7
  2169. kolorist: 1.8.0
  2170. local-pkg: 0.5.0
  2171. unplugin: 1.14.1
  2172. optionalDependencies:
  2173. '@vue/compiler-sfc': 3.5.8
  2174. transitivePeerDependencies:
  2175. - supports-color
  2176. - webpack-sources
  2177. unplugin@1.14.1:
  2178. dependencies:
  2179. acorn: 8.12.1
  2180. webpack-virtual-modules: 0.6.2
  2181. update-browserslist-db@1.1.0(browserslist@4.24.0):
  2182. dependencies:
  2183. browserslist: 4.24.0
  2184. escalade: 3.2.0
  2185. picocolors: 1.1.0
  2186. uri-js@4.4.1:
  2187. dependencies:
  2188. punycode: 2.3.1
  2189. util-deprecate@1.0.2: {}
  2190. util@0.10.4:
  2191. dependencies:
  2192. inherits: 2.0.3
  2193. vite-plugin-eslint@1.8.1(eslint@9.11.1(jiti@1.21.6))(vite@5.4.7(@types/node@22.7.0)(terser@5.34.0)):
  2194. dependencies:
  2195. '@rollup/pluginutils': 4.2.1
  2196. '@types/eslint': 8.56.12
  2197. eslint: 9.11.1(jiti@1.21.6)
  2198. rollup: 2.79.1
  2199. vite: 5.4.7(@types/node@22.7.0)(terser@5.34.0)
  2200. vite@5.4.7(@types/node@22.7.0)(terser@5.34.0):
  2201. dependencies:
  2202. esbuild: 0.21.5
  2203. postcss: 8.4.47
  2204. rollup: 4.22.4
  2205. optionalDependencies:
  2206. '@types/node': 22.7.0
  2207. fsevents: 2.3.3
  2208. terser: 5.34.0
  2209. vscode-uri@3.0.8: {}
  2210. vue-demi@0.14.10(vue@3.5.8(typescript@5.6.2)):
  2211. dependencies:
  2212. vue: 3.5.8(typescript@5.6.2)
  2213. vue-promise-modals@0.1.0(typescript@5.6.2):
  2214. dependencies:
  2215. vue: 3.5.8(typescript@5.6.2)
  2216. transitivePeerDependencies:
  2217. - typescript
  2218. vue-tsc@2.1.6(typescript@5.6.2):
  2219. dependencies:
  2220. '@volar/typescript': 2.4.5
  2221. '@vue/language-core': 2.1.6(typescript@5.6.2)
  2222. semver: 7.6.3
  2223. typescript: 5.6.2
  2224. vue@3.5.8(typescript@5.6.2):
  2225. dependencies:
  2226. '@vue/compiler-dom': 3.5.8
  2227. '@vue/compiler-sfc': 3.5.8
  2228. '@vue/runtime-dom': 3.5.8
  2229. '@vue/server-renderer': 3.5.8(vue@3.5.8(typescript@5.6.2))
  2230. '@vue/shared': 3.5.8
  2231. optionalDependencies:
  2232. typescript: 5.6.2
  2233. vuedraggable-es@4.1.1(vue@3.5.8(typescript@5.6.2)):
  2234. dependencies:
  2235. sortablejs: 1.14.0
  2236. vue: 3.5.8(typescript@5.6.2)
  2237. webpack-virtual-modules@0.6.2: {}
  2238. which@2.0.2:
  2239. dependencies:
  2240. isexe: 2.0.0
  2241. word-wrap@1.2.5: {}
  2242. wrap-ansi@7.0.0:
  2243. dependencies:
  2244. ansi-styles: 4.3.0
  2245. string-width: 4.2.3
  2246. strip-ansi: 6.0.1
  2247. wrap-ansi@8.1.0:
  2248. dependencies:
  2249. ansi-styles: 6.2.1
  2250. string-width: 5.1.2
  2251. strip-ansi: 7.1.0
  2252. yaml@2.5.1: {}
  2253. yocto-queue@0.1.0: {}