pnpm-lock.yaml 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@mdi/font':
  9. specifier: 7.0.96
  10. version: 7.0.96
  11. pinia:
  12. specifier: ^2.1.7
  13. version: 2.1.7(vue@3.4.25)
  14. roboto-fontface:
  15. specifier: '*'
  16. version: 0.10.0
  17. vue:
  18. specifier: ^3.4.0
  19. version: 3.4.25
  20. vue-router:
  21. specifier: ^4.3.0
  22. version: 4.3.2(vue@3.4.25)
  23. vuetify:
  24. specifier: ^3.5.0
  25. version: 3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25)
  26. devDependencies:
  27. '@rushstack/eslint-patch':
  28. specifier: ^1.8.0
  29. version: 1.10.2
  30. '@vitejs/plugin-vue':
  31. specifier: ^5.0.4
  32. version: 5.0.4(vite@5.2.10(sass@1.75.0))(vue@3.4.25)
  33. '@vue/eslint-config-prettier':
  34. specifier: ^9.0.0
  35. version: 9.0.0(eslint@8.57.0)(prettier@3.2.5)
  36. eslint:
  37. specifier: ^8.57.0
  38. version: 8.57.0
  39. eslint-plugin-vue:
  40. specifier: ^9.23.0
  41. version: 9.25.0(eslint@8.57.0)
  42. jsdom:
  43. specifier: ^24.0.0
  44. version: 24.0.0
  45. prettier:
  46. specifier: ^3.2.5
  47. version: 3.2.5
  48. sass:
  49. specifier: ^1.71.1
  50. version: 1.75.0
  51. unplugin-fonts:
  52. specifier: ^1.1.1
  53. version: 1.1.1(vite@5.2.10(sass@1.75.0))
  54. unplugin-vue-components:
  55. specifier: ^0.26.0
  56. version: 0.26.0(@babel/parser@7.24.4)(rollup@4.17.0)(vue@3.4.25)
  57. vite:
  58. specifier: ^5.1.5
  59. version: 5.2.10(sass@1.75.0)
  60. vite-plugin-vue-devtools:
  61. specifier: ^7.0.25
  62. version: 7.1.3(rollup@4.17.0)(vite@5.2.10(sass@1.75.0))(vue@3.4.25)
  63. vite-plugin-vuetify:
  64. specifier: ^2.0.3
  65. version: 2.0.3(vite@5.2.10(sass@1.75.0))(vue@3.4.25)(vuetify@3.5.17)
  66. packages:
  67. '@ampproject/remapping@2.3.0':
  68. resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
  69. engines: {node: '>=6.0.0'}
  70. '@antfu/utils@0.7.7':
  71. resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==}
  72. '@babel/code-frame@7.24.2':
  73. resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
  74. engines: {node: '>=6.9.0'}
  75. '@babel/compat-data@7.24.4':
  76. resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
  77. engines: {node: '>=6.9.0'}
  78. '@babel/core@7.24.4':
  79. resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}
  80. engines: {node: '>=6.9.0'}
  81. '@babel/generator@7.24.4':
  82. resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==}
  83. engines: {node: '>=6.9.0'}
  84. '@babel/helper-annotate-as-pure@7.22.5':
  85. resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
  86. engines: {node: '>=6.9.0'}
  87. '@babel/helper-compilation-targets@7.23.6':
  88. resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
  89. engines: {node: '>=6.9.0'}
  90. '@babel/helper-create-class-features-plugin@7.24.4':
  91. resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==}
  92. engines: {node: '>=6.9.0'}
  93. peerDependencies:
  94. '@babel/core': ^7.0.0
  95. '@babel/helper-environment-visitor@7.22.20':
  96. resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
  97. engines: {node: '>=6.9.0'}
  98. '@babel/helper-function-name@7.23.0':
  99. resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
  100. engines: {node: '>=6.9.0'}
  101. '@babel/helper-hoist-variables@7.22.5':
  102. resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
  103. engines: {node: '>=6.9.0'}
  104. '@babel/helper-member-expression-to-functions@7.23.0':
  105. resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
  106. engines: {node: '>=6.9.0'}
  107. '@babel/helper-module-imports@7.22.15':
  108. resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
  109. engines: {node: '>=6.9.0'}
  110. '@babel/helper-module-imports@7.24.3':
  111. resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
  112. engines: {node: '>=6.9.0'}
  113. '@babel/helper-module-transforms@7.23.3':
  114. resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
  115. engines: {node: '>=6.9.0'}
  116. peerDependencies:
  117. '@babel/core': ^7.0.0
  118. '@babel/helper-optimise-call-expression@7.22.5':
  119. resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
  120. engines: {node: '>=6.9.0'}
  121. '@babel/helper-plugin-utils@7.24.0':
  122. resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
  123. engines: {node: '>=6.9.0'}
  124. '@babel/helper-replace-supers@7.24.1':
  125. resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
  126. engines: {node: '>=6.9.0'}
  127. peerDependencies:
  128. '@babel/core': ^7.0.0
  129. '@babel/helper-simple-access@7.22.5':
  130. resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
  131. engines: {node: '>=6.9.0'}
  132. '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
  133. resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
  134. engines: {node: '>=6.9.0'}
  135. '@babel/helper-split-export-declaration@7.22.6':
  136. resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
  137. engines: {node: '>=6.9.0'}
  138. '@babel/helper-string-parser@7.24.1':
  139. resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
  140. engines: {node: '>=6.9.0'}
  141. '@babel/helper-validator-identifier@7.22.20':
  142. resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
  143. engines: {node: '>=6.9.0'}
  144. '@babel/helper-validator-option@7.23.5':
  145. resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
  146. engines: {node: '>=6.9.0'}
  147. '@babel/helpers@7.24.4':
  148. resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==}
  149. engines: {node: '>=6.9.0'}
  150. '@babel/highlight@7.24.2':
  151. resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
  152. engines: {node: '>=6.9.0'}
  153. '@babel/parser@7.24.4':
  154. resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==}
  155. engines: {node: '>=6.0.0'}
  156. hasBin: true
  157. '@babel/plugin-proposal-decorators@7.24.1':
  158. resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==}
  159. engines: {node: '>=6.9.0'}
  160. peerDependencies:
  161. '@babel/core': ^7.0.0-0
  162. '@babel/plugin-syntax-decorators@7.24.1':
  163. resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==}
  164. engines: {node: '>=6.9.0'}
  165. peerDependencies:
  166. '@babel/core': ^7.0.0-0
  167. '@babel/plugin-syntax-import-attributes@7.24.1':
  168. resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
  169. engines: {node: '>=6.9.0'}
  170. peerDependencies:
  171. '@babel/core': ^7.0.0-0
  172. '@babel/plugin-syntax-import-meta@7.10.4':
  173. resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
  174. peerDependencies:
  175. '@babel/core': ^7.0.0-0
  176. '@babel/plugin-syntax-jsx@7.24.1':
  177. resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
  178. engines: {node: '>=6.9.0'}
  179. peerDependencies:
  180. '@babel/core': ^7.0.0-0
  181. '@babel/plugin-syntax-typescript@7.24.1':
  182. resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
  183. engines: {node: '>=6.9.0'}
  184. peerDependencies:
  185. '@babel/core': ^7.0.0-0
  186. '@babel/plugin-transform-typescript@7.24.4':
  187. resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==}
  188. engines: {node: '>=6.9.0'}
  189. peerDependencies:
  190. '@babel/core': ^7.0.0-0
  191. '@babel/template@7.24.0':
  192. resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
  193. engines: {node: '>=6.9.0'}
  194. '@babel/traverse@7.24.1':
  195. resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
  196. engines: {node: '>=6.9.0'}
  197. '@babel/types@7.24.0':
  198. resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
  199. engines: {node: '>=6.9.0'}
  200. '@esbuild/aix-ppc64@0.20.2':
  201. resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
  202. engines: {node: '>=12'}
  203. cpu: [ppc64]
  204. os: [aix]
  205. '@esbuild/android-arm64@0.20.2':
  206. resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
  207. engines: {node: '>=12'}
  208. cpu: [arm64]
  209. os: [android]
  210. '@esbuild/android-arm@0.20.2':
  211. resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
  212. engines: {node: '>=12'}
  213. cpu: [arm]
  214. os: [android]
  215. '@esbuild/android-x64@0.20.2':
  216. resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
  217. engines: {node: '>=12'}
  218. cpu: [x64]
  219. os: [android]
  220. '@esbuild/darwin-arm64@0.20.2':
  221. resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
  222. engines: {node: '>=12'}
  223. cpu: [arm64]
  224. os: [darwin]
  225. '@esbuild/darwin-x64@0.20.2':
  226. resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
  227. engines: {node: '>=12'}
  228. cpu: [x64]
  229. os: [darwin]
  230. '@esbuild/freebsd-arm64@0.20.2':
  231. resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
  232. engines: {node: '>=12'}
  233. cpu: [arm64]
  234. os: [freebsd]
  235. '@esbuild/freebsd-x64@0.20.2':
  236. resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
  237. engines: {node: '>=12'}
  238. cpu: [x64]
  239. os: [freebsd]
  240. '@esbuild/linux-arm64@0.20.2':
  241. resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
  242. engines: {node: '>=12'}
  243. cpu: [arm64]
  244. os: [linux]
  245. '@esbuild/linux-arm@0.20.2':
  246. resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
  247. engines: {node: '>=12'}
  248. cpu: [arm]
  249. os: [linux]
  250. '@esbuild/linux-ia32@0.20.2':
  251. resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
  252. engines: {node: '>=12'}
  253. cpu: [ia32]
  254. os: [linux]
  255. '@esbuild/linux-loong64@0.20.2':
  256. resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
  257. engines: {node: '>=12'}
  258. cpu: [loong64]
  259. os: [linux]
  260. '@esbuild/linux-mips64el@0.20.2':
  261. resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
  262. engines: {node: '>=12'}
  263. cpu: [mips64el]
  264. os: [linux]
  265. '@esbuild/linux-ppc64@0.20.2':
  266. resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
  267. engines: {node: '>=12'}
  268. cpu: [ppc64]
  269. os: [linux]
  270. '@esbuild/linux-riscv64@0.20.2':
  271. resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
  272. engines: {node: '>=12'}
  273. cpu: [riscv64]
  274. os: [linux]
  275. '@esbuild/linux-s390x@0.20.2':
  276. resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
  277. engines: {node: '>=12'}
  278. cpu: [s390x]
  279. os: [linux]
  280. '@esbuild/linux-x64@0.20.2':
  281. resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
  282. engines: {node: '>=12'}
  283. cpu: [x64]
  284. os: [linux]
  285. '@esbuild/netbsd-x64@0.20.2':
  286. resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
  287. engines: {node: '>=12'}
  288. cpu: [x64]
  289. os: [netbsd]
  290. '@esbuild/openbsd-x64@0.20.2':
  291. resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
  292. engines: {node: '>=12'}
  293. cpu: [x64]
  294. os: [openbsd]
  295. '@esbuild/sunos-x64@0.20.2':
  296. resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
  297. engines: {node: '>=12'}
  298. cpu: [x64]
  299. os: [sunos]
  300. '@esbuild/win32-arm64@0.20.2':
  301. resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
  302. engines: {node: '>=12'}
  303. cpu: [arm64]
  304. os: [win32]
  305. '@esbuild/win32-ia32@0.20.2':
  306. resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
  307. engines: {node: '>=12'}
  308. cpu: [ia32]
  309. os: [win32]
  310. '@esbuild/win32-x64@0.20.2':
  311. resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
  312. engines: {node: '>=12'}
  313. cpu: [x64]
  314. os: [win32]
  315. '@eslint-community/eslint-utils@4.4.0':
  316. resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
  317. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  318. peerDependencies:
  319. eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
  320. '@eslint-community/regexpp@4.10.0':
  321. resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
  322. engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
  323. '@eslint/eslintrc@2.1.4':
  324. resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
  325. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  326. '@eslint/js@8.57.0':
  327. resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
  328. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  329. '@humanwhocodes/config-array@0.11.14':
  330. resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
  331. engines: {node: '>=10.10.0'}
  332. '@humanwhocodes/module-importer@1.0.1':
  333. resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
  334. engines: {node: '>=12.22'}
  335. '@humanwhocodes/object-schema@2.0.3':
  336. resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
  337. '@jridgewell/gen-mapping@0.3.5':
  338. resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
  339. engines: {node: '>=6.0.0'}
  340. '@jridgewell/resolve-uri@3.1.2':
  341. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  342. engines: {node: '>=6.0.0'}
  343. '@jridgewell/set-array@1.2.1':
  344. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  345. engines: {node: '>=6.0.0'}
  346. '@jridgewell/sourcemap-codec@1.4.15':
  347. resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
  348. '@jridgewell/trace-mapping@0.3.25':
  349. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  350. '@mdi/font@7.0.96':
  351. resolution: {integrity: sha512-rzlxTfR64hqY8yiBzDjmANfcd8rv+T5C0Yedv/TWk2QyAQYdc66e0kaN1ipmnYU3RukHRTRcBARHzzm+tIhL7w==}
  352. '@nodelib/fs.scandir@2.1.5':
  353. resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
  354. engines: {node: '>= 8'}
  355. '@nodelib/fs.stat@2.0.5':
  356. resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
  357. engines: {node: '>= 8'}
  358. '@nodelib/fs.walk@1.2.8':
  359. resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
  360. engines: {node: '>= 8'}
  361. '@pkgr/core@0.1.1':
  362. resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
  363. engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
  364. '@polka/url@1.0.0-next.25':
  365. resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
  366. '@rollup/pluginutils@5.1.0':
  367. resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
  368. engines: {node: '>=14.0.0'}
  369. peerDependencies:
  370. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  371. peerDependenciesMeta:
  372. rollup:
  373. optional: true
  374. '@rollup/rollup-android-arm-eabi@4.17.0':
  375. resolution: {integrity: sha512-nNvLvC2fjC+3+bHYN9uaGF3gcyy7RHGZhtl8TB/kINj9hiOQza8kWJGZh47GRPMrqeseO8U+Z8ElDMCZlWBdHA==}
  376. cpu: [arm]
  377. os: [android]
  378. '@rollup/rollup-android-arm64@4.17.0':
  379. resolution: {integrity: sha512-+kjt6dvxnyTIAo7oHeYseYhDyZ7xRKTNl/FoQI96PHkJVxoChldJnne/LzYqpqidoK1/0kX0/q+5rrYqjpth6w==}
  380. cpu: [arm64]
  381. os: [android]
  382. '@rollup/rollup-darwin-arm64@4.17.0':
  383. resolution: {integrity: sha512-Oj6Tp0unMpGTBjvNwbSRv3DopMNLu+mjBzhKTt2zLbDJ/45fB1pltr/rqrO4bE95LzuYwhYn127pop+x/pzf5w==}
  384. cpu: [arm64]
  385. os: [darwin]
  386. '@rollup/rollup-darwin-x64@4.17.0':
  387. resolution: {integrity: sha512-3nJx0T+yptxMd+v93rBRxSPTAVCv8szu/fGZDJiKX7kvRe9sENj2ggXjCH/KK1xZEmJOhaNo0c9sGMgGdfkvEw==}
  388. cpu: [x64]
  389. os: [darwin]
  390. '@rollup/rollup-linux-arm-gnueabihf@4.17.0':
  391. resolution: {integrity: sha512-Vb2e8p9b2lxxgqyOlBHmp6hJMu/HSU6g//6Tbr7x5V1DlPCHWLOm37nSIVK314f+IHzORyAQSqL7+9tELxX3zQ==}
  392. cpu: [arm]
  393. os: [linux]
  394. '@rollup/rollup-linux-arm-musleabihf@4.17.0':
  395. resolution: {integrity: sha512-Md60KsmC5ZIaRq/bYYDloklgU+XLEZwS2EXXVcSpiUw+13/ZASvSWQ/P92rQ9YDCL6EIoXxuQ829JkReqdYbGg==}
  396. cpu: [arm]
  397. os: [linux]
  398. '@rollup/rollup-linux-arm64-gnu@4.17.0':
  399. resolution: {integrity: sha512-zL5rBFtJ+2EGnMRm2TqKjdjgFqlotSU+ZJEN37nV+fiD3I6Gy0dUh3jBWN0wSlcXVDEJYW7YBe+/2j0N9unb2w==}
  400. cpu: [arm64]
  401. os: [linux]
  402. '@rollup/rollup-linux-arm64-musl@4.17.0':
  403. resolution: {integrity: sha512-s2xAyNkJqUdtRVgNK4NK4P9QttS538JuX/kfVQOdZDI5FIKVAUVdLW7qhGfmaySJ1EvN/Bnj9oPm5go9u8navg==}
  404. cpu: [arm64]
  405. os: [linux]
  406. '@rollup/rollup-linux-powerpc64le-gnu@4.17.0':
  407. resolution: {integrity: sha512-7F99yzVT67B7IUNMjLD9QCFDCyHkyCJMS1dywZrGgVFJao4VJ9szrIEgH67cR+bXQgEaY01ur/WSL6B0jtcLyA==}
  408. cpu: [ppc64]
  409. os: [linux]
  410. '@rollup/rollup-linux-riscv64-gnu@4.17.0':
  411. resolution: {integrity: sha512-leFtyiXisfa3Sg9pgZJwRKITWnrQfhtqDjCamnZhkZuIsk1FXmYwKoTkp6lsCgimIcneFFkHKp/yGLxDesga4g==}
  412. cpu: [riscv64]
  413. os: [linux]
  414. '@rollup/rollup-linux-s390x-gnu@4.17.0':
  415. resolution: {integrity: sha512-FtOgui6qMJ4jbSXTxElsy/60LEe/3U0rXkkz2G5CJ9rbHPAvjMvI+3qF0A0fwLQ5hW+/ZC6PbnS2KfRW9JkgDQ==}
  416. cpu: [s390x]
  417. os: [linux]
  418. '@rollup/rollup-linux-x64-gnu@4.17.0':
  419. resolution: {integrity: sha512-v6eiam/1w3HUfU/ZjzIDodencqgrSqzlNuNtiwH7PFJHYSo1ezL0/UIzmS2lpSJF1ORNaplXeKHYmmdt81vV2g==}
  420. cpu: [x64]
  421. os: [linux]
  422. '@rollup/rollup-linux-x64-musl@4.17.0':
  423. resolution: {integrity: sha512-OUhkSdpM5ofVlVU2k4CwVubYwiwu1a4jYWPpubzN7Vzao73GoPBowHcCfaRSFRz1SszJ3HIsk3dZYk4kzbqjgw==}
  424. cpu: [x64]
  425. os: [linux]
  426. '@rollup/rollup-win32-arm64-msvc@4.17.0':
  427. resolution: {integrity: sha512-uL7UYO/MNJPGL/yflybI+HI+n6+4vlfZmQZOCb4I+z/zy1wisHT3exh7oNQsnL6Eso0EUTEfgQ/PaGzzXf6XyQ==}
  428. cpu: [arm64]
  429. os: [win32]
  430. '@rollup/rollup-win32-ia32-msvc@4.17.0':
  431. resolution: {integrity: sha512-4WnSgaUiUmXILwFqREdOcqvSj6GD/7FrvSjhaDjmwakX9w4Z2F8JwiSP1AZZbuRkPqzi444UI5FPv33VKOWYFQ==}
  432. cpu: [ia32]
  433. os: [win32]
  434. '@rollup/rollup-win32-x64-msvc@4.17.0':
  435. resolution: {integrity: sha512-ve+D8t1prRSRnF2S3pyDtTXDlvW1Pngbz76tjgYFQW1jxVSysmQCZfPoDAo4WP+Ano8zeYp85LsArZBI12HfwQ==}
  436. cpu: [x64]
  437. os: [win32]
  438. '@rushstack/eslint-patch@1.10.2':
  439. resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
  440. '@types/estree@1.0.5':
  441. resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
  442. '@ungap/structured-clone@1.2.0':
  443. resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
  444. '@vitejs/plugin-vue@5.0.4':
  445. resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==}
  446. engines: {node: ^18.0.0 || >=20.0.0}
  447. peerDependencies:
  448. vite: ^5.0.0
  449. vue: ^3.2.25
  450. '@vue/babel-helper-vue-transform-on@1.2.2':
  451. resolution: {integrity: sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==}
  452. '@vue/babel-plugin-jsx@1.2.2':
  453. resolution: {integrity: sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==}
  454. peerDependencies:
  455. '@babel/core': ^7.0.0-0
  456. peerDependenciesMeta:
  457. '@babel/core':
  458. optional: true
  459. '@vue/babel-plugin-resolve-type@1.2.2':
  460. resolution: {integrity: sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==}
  461. peerDependencies:
  462. '@babel/core': ^7.0.0-0
  463. '@vue/compiler-core@3.4.25':
  464. resolution: {integrity: sha512-Y2pLLopaElgWnMNolgG8w3C5nNUVev80L7hdQ5iIKPtMJvhVpG0zhnBG/g3UajJmZdvW0fktyZTotEHD1Srhbg==}
  465. '@vue/compiler-dom@3.4.25':
  466. resolution: {integrity: sha512-Ugz5DusW57+HjllAugLci19NsDK+VyjGvmbB2TXaTcSlQxwL++2PETHx/+Qv6qFwNLzSt7HKepPe4DcTE3pBWg==}
  467. '@vue/compiler-sfc@3.4.25':
  468. resolution: {integrity: sha512-m7rryuqzIoQpOBZ18wKyq05IwL6qEpZxFZfRxlNYuIPDqywrXQxgUwLXIvoU72gs6cRdY6wHD0WVZIFE4OEaAQ==}
  469. '@vue/compiler-ssr@3.4.25':
  470. resolution: {integrity: sha512-H2ohvM/Pf6LelGxDBnfbbXFPyM4NE3hrw0e/EpwuSiYu8c819wx+SVGdJ65p/sFrYDd6OnSDxN1MB2mN07hRSQ==}
  471. '@vue/devtools-api@6.6.1':
  472. resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
  473. '@vue/devtools-core@7.1.3':
  474. resolution: {integrity: sha512-pVbWi8pf2Z/fZPioYOIgu+cv9pQG55k4D8bL31ec+Wfe+pQR0ImFDu0OhHfch1Ra8uvLLrAZTF4IKeGAkmzD4A==}
  475. '@vue/devtools-kit@7.1.3':
  476. resolution: {integrity: sha512-NFskFSJMVCBXTkByuk2llzI3KD3Blcm7WqiRorWjD6nClHPgkH5BobDH08rfulqq5ocRt5xV+3qOT1Q9FXJrwQ==}
  477. peerDependencies:
  478. vue: ^3.0.0
  479. '@vue/devtools-shared@7.1.3':
  480. resolution: {integrity: sha512-KJ3AfgjTn3tJz/XKF+BlVShNPecim3G21oHRue+YQOsooW+0s+qXvm09U09aO7yBza5SivL1QgxSrzAbiKWjhQ==}
  481. '@vue/eslint-config-prettier@9.0.0':
  482. resolution: {integrity: sha512-z1ZIAAUS9pKzo/ANEfd2sO+v2IUalz7cM/cTLOZ7vRFOPk5/xuRKQteOu1DErFLAh/lYGXMVZ0IfYKlyInuDVg==}
  483. peerDependencies:
  484. eslint: '>= 8.0.0'
  485. prettier: '>= 3.0.0'
  486. '@vue/reactivity@3.4.25':
  487. resolution: {integrity: sha512-mKbEtKr1iTxZkAG3vm3BtKHAOhuI4zzsVcN0epDldU/THsrvfXRKzq+lZnjczZGnTdh3ojd86/WrP+u9M51pWQ==}
  488. '@vue/runtime-core@3.4.25':
  489. resolution: {integrity: sha512-3qhsTqbEh8BMH3pXf009epCI5E7bKu28fJLi9O6W+ZGt/6xgSfMuGPqa5HRbUxLoehTNp5uWvzCr60KuiRIL0Q==}
  490. '@vue/runtime-dom@3.4.25':
  491. resolution: {integrity: sha512-ode0sj77kuwXwSc+2Yhk8JMHZh1sZp9F/51wdBiz3KGaWltbKtdihlJFhQG4H6AY+A06zzeMLkq6qu8uDSsaoA==}
  492. '@vue/server-renderer@3.4.25':
  493. resolution: {integrity: sha512-8VTwq0Zcu3K4dWV0jOwIVINESE/gha3ifYCOKEhxOj6MEl5K5y8J8clQncTcDhKF+9U765nRw4UdUEXvrGhyVQ==}
  494. peerDependencies:
  495. vue: 3.4.25
  496. '@vue/shared@3.4.25':
  497. resolution: {integrity: sha512-k0yappJ77g2+KNrIaF0FFnzwLvUBLUYr8VOwz+/6vLsmItFp51AcxLL7Ey3iPd7BIRyWPOcqUjMnm7OkahXllA==}
  498. '@vuetify/loader-shared@2.0.3':
  499. resolution: {integrity: sha512-Ss3GC7eJYkp2SF6xVzsT7FAruEmdihmn4OCk2+UocREerlXKWgOKKzTN5PN3ZVN5q05jHHrsNhTuWbhN61Bpdg==}
  500. peerDependencies:
  501. vue: ^3.0.0
  502. vuetify: ^3.0.0
  503. acorn-jsx@5.3.2:
  504. resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
  505. peerDependencies:
  506. acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
  507. acorn@8.11.3:
  508. resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
  509. engines: {node: '>=0.4.0'}
  510. hasBin: true
  511. agent-base@7.1.1:
  512. resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
  513. engines: {node: '>= 14'}
  514. ajv@6.12.6:
  515. resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
  516. ansi-regex@5.0.1:
  517. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  518. engines: {node: '>=8'}
  519. ansi-styles@3.2.1:
  520. resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
  521. engines: {node: '>=4'}
  522. ansi-styles@4.3.0:
  523. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  524. engines: {node: '>=8'}
  525. anymatch@3.1.3:
  526. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  527. engines: {node: '>= 8'}
  528. argparse@2.0.1:
  529. resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
  530. asynckit@0.4.0:
  531. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  532. balanced-match@1.0.2:
  533. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  534. binary-extensions@2.3.0:
  535. resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
  536. engines: {node: '>=8'}
  537. boolbase@1.0.0:
  538. resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
  539. brace-expansion@1.1.11:
  540. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  541. brace-expansion@2.0.1:
  542. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  543. braces@3.0.2:
  544. resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
  545. engines: {node: '>=8'}
  546. browserslist@4.23.0:
  547. resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
  548. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  549. hasBin: true
  550. bundle-name@4.1.0:
  551. resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
  552. engines: {node: '>=18'}
  553. callsites@3.1.0:
  554. resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
  555. engines: {node: '>=6'}
  556. camelcase@6.3.0:
  557. resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
  558. engines: {node: '>=10'}
  559. caniuse-lite@1.0.30001614:
  560. resolution: {integrity: sha512-jmZQ1VpmlRwHgdP1/uiKzgiAuGOfLEJsYFP4+GBou/QQ4U6IOJCB4NP1c+1p9RGLpwObcT94jA5/uO+F1vBbog==}
  561. chalk@2.4.2:
  562. resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
  563. engines: {node: '>=4'}
  564. chalk@4.1.2:
  565. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  566. engines: {node: '>=10'}
  567. chokidar@3.6.0:
  568. resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
  569. engines: {node: '>= 8.10.0'}
  570. color-convert@1.9.3:
  571. resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
  572. color-convert@2.0.1:
  573. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  574. engines: {node: '>=7.0.0'}
  575. color-name@1.1.3:
  576. resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
  577. color-name@1.1.4:
  578. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  579. combined-stream@1.0.8:
  580. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  581. engines: {node: '>= 0.8'}
  582. concat-map@0.0.1:
  583. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  584. convert-source-map@2.0.0:
  585. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  586. cross-spawn@7.0.3:
  587. resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
  588. engines: {node: '>= 8'}
  589. cssesc@3.0.0:
  590. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  591. engines: {node: '>=4'}
  592. hasBin: true
  593. cssstyle@4.0.1:
  594. resolution: {integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==}
  595. engines: {node: '>=18'}
  596. csstype@3.1.3:
  597. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  598. data-urls@5.0.0:
  599. resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
  600. engines: {node: '>=18'}
  601. debug@4.3.4:
  602. resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
  603. engines: {node: '>=6.0'}
  604. peerDependencies:
  605. supports-color: '*'
  606. peerDependenciesMeta:
  607. supports-color:
  608. optional: true
  609. decimal.js@10.4.3:
  610. resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
  611. deep-is@0.1.4:
  612. resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
  613. default-browser-id@5.0.0:
  614. resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
  615. engines: {node: '>=18'}
  616. default-browser@5.2.1:
  617. resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
  618. engines: {node: '>=18'}
  619. define-lazy-prop@3.0.0:
  620. resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
  621. engines: {node: '>=12'}
  622. delayed-stream@1.0.0:
  623. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  624. engines: {node: '>=0.4.0'}
  625. doctrine@3.0.0:
  626. resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
  627. engines: {node: '>=6.0.0'}
  628. electron-to-chromium@1.4.750:
  629. resolution: {integrity: sha512-9ItEpeu15hW5m8jKdriL+BQrgwDTXEL9pn4SkillWFu73ZNNNQ2BKKLS+ZHv2vC9UkNhosAeyfxOf/5OSeTCPA==}
  630. entities@4.5.0:
  631. resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
  632. engines: {node: '>=0.12'}
  633. error-stack-parser-es@0.1.1:
  634. resolution: {integrity: sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==}
  635. esbuild@0.20.2:
  636. resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
  637. engines: {node: '>=12'}
  638. hasBin: true
  639. escalade@3.1.2:
  640. resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
  641. engines: {node: '>=6'}
  642. escape-string-regexp@1.0.5:
  643. resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
  644. engines: {node: '>=0.8.0'}
  645. escape-string-regexp@4.0.0:
  646. resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
  647. engines: {node: '>=10'}
  648. eslint-config-prettier@9.1.0:
  649. resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
  650. hasBin: true
  651. peerDependencies:
  652. eslint: '>=7.0.0'
  653. eslint-plugin-prettier@5.1.3:
  654. resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==}
  655. engines: {node: ^14.18.0 || >=16.0.0}
  656. peerDependencies:
  657. '@types/eslint': '>=8.0.0'
  658. eslint: '>=8.0.0'
  659. eslint-config-prettier: '*'
  660. prettier: '>=3.0.0'
  661. peerDependenciesMeta:
  662. '@types/eslint':
  663. optional: true
  664. eslint-config-prettier:
  665. optional: true
  666. eslint-plugin-vue@9.25.0:
  667. resolution: {integrity: sha512-tDWlx14bVe6Bs+Nnh3IGrD+hb11kf2nukfm6jLsmJIhmiRQ1SUaksvwY9U5MvPB0pcrg0QK0xapQkfITs3RKOA==}
  668. engines: {node: ^14.17.0 || >=16.0.0}
  669. peerDependencies:
  670. eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
  671. eslint-scope@7.2.2:
  672. resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
  673. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  674. eslint-visitor-keys@3.4.3:
  675. resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
  676. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  677. eslint@8.57.0:
  678. resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
  679. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  680. hasBin: true
  681. espree@9.6.1:
  682. resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
  683. engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
  684. esquery@1.5.0:
  685. resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
  686. engines: {node: '>=0.10'}
  687. esrecurse@4.3.0:
  688. resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
  689. engines: {node: '>=4.0'}
  690. estraverse@5.3.0:
  691. resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
  692. engines: {node: '>=4.0'}
  693. estree-walker@2.0.2:
  694. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  695. esutils@2.0.3:
  696. resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
  697. engines: {node: '>=0.10.0'}
  698. execa@8.0.1:
  699. resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
  700. engines: {node: '>=16.17'}
  701. fast-deep-equal@3.1.3:
  702. resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
  703. fast-diff@1.3.0:
  704. resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
  705. fast-glob@3.3.2:
  706. resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
  707. engines: {node: '>=8.6.0'}
  708. fast-json-stable-stringify@2.1.0:
  709. resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
  710. fast-levenshtein@2.0.6:
  711. resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
  712. fastq@1.17.1:
  713. resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
  714. file-entry-cache@6.0.1:
  715. resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
  716. engines: {node: ^10.12.0 || >=12.0.0}
  717. fill-range@7.0.1:
  718. resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
  719. engines: {node: '>=8'}
  720. find-up@5.0.0:
  721. resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
  722. engines: {node: '>=10'}
  723. flat-cache@3.2.0:
  724. resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
  725. engines: {node: ^10.12.0 || >=12.0.0}
  726. flatted@3.3.1:
  727. resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
  728. form-data@4.0.0:
  729. resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
  730. engines: {node: '>= 6'}
  731. fs-extra@11.2.0:
  732. resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
  733. engines: {node: '>=14.14'}
  734. fs.realpath@1.0.0:
  735. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  736. fsevents@2.3.3:
  737. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  738. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  739. os: [darwin]
  740. function-bind@1.1.2:
  741. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  742. gensync@1.0.0-beta.2:
  743. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  744. engines: {node: '>=6.9.0'}
  745. get-stream@8.0.1:
  746. resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
  747. engines: {node: '>=16'}
  748. glob-parent@5.1.2:
  749. resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
  750. engines: {node: '>= 6'}
  751. glob-parent@6.0.2:
  752. resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
  753. engines: {node: '>=10.13.0'}
  754. glob@7.2.3:
  755. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  756. globals@11.12.0:
  757. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  758. engines: {node: '>=4'}
  759. globals@13.24.0:
  760. resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
  761. engines: {node: '>=8'}
  762. graceful-fs@4.2.11:
  763. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  764. graphemer@1.4.0:
  765. resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
  766. has-flag@3.0.0:
  767. resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
  768. engines: {node: '>=4'}
  769. has-flag@4.0.0:
  770. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  771. engines: {node: '>=8'}
  772. hasown@2.0.2:
  773. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  774. engines: {node: '>= 0.4'}
  775. hookable@5.5.3:
  776. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  777. html-encoding-sniffer@4.0.0:
  778. resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
  779. engines: {node: '>=18'}
  780. html-tags@3.3.1:
  781. resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
  782. engines: {node: '>=8'}
  783. http-proxy-agent@7.0.2:
  784. resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
  785. engines: {node: '>= 14'}
  786. https-proxy-agent@7.0.4:
  787. resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}
  788. engines: {node: '>= 14'}
  789. human-signals@5.0.0:
  790. resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
  791. engines: {node: '>=16.17.0'}
  792. iconv-lite@0.6.3:
  793. resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
  794. engines: {node: '>=0.10.0'}
  795. ignore@5.3.1:
  796. resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
  797. engines: {node: '>= 4'}
  798. immutable@4.3.5:
  799. resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==}
  800. import-fresh@3.3.0:
  801. resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
  802. engines: {node: '>=6'}
  803. imurmurhash@0.1.4:
  804. resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
  805. engines: {node: '>=0.8.19'}
  806. inflight@1.0.6:
  807. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  808. inherits@2.0.4:
  809. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  810. is-binary-path@2.1.0:
  811. resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
  812. engines: {node: '>=8'}
  813. is-core-module@2.13.1:
  814. resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
  815. is-docker@3.0.0:
  816. resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
  817. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  818. hasBin: true
  819. is-extglob@2.1.1:
  820. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  821. engines: {node: '>=0.10.0'}
  822. is-glob@4.0.3:
  823. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  824. engines: {node: '>=0.10.0'}
  825. is-inside-container@1.0.0:
  826. resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
  827. engines: {node: '>=14.16'}
  828. hasBin: true
  829. is-number@7.0.0:
  830. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  831. engines: {node: '>=0.12.0'}
  832. is-path-inside@3.0.3:
  833. resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
  834. engines: {node: '>=8'}
  835. is-potential-custom-element-name@1.0.1:
  836. resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
  837. is-stream@3.0.0:
  838. resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
  839. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  840. is-wsl@3.1.0:
  841. resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
  842. engines: {node: '>=16'}
  843. isexe@2.0.0:
  844. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  845. js-tokens@4.0.0:
  846. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  847. js-yaml@4.1.0:
  848. resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
  849. hasBin: true
  850. jsdom@24.0.0:
  851. resolution: {integrity: sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==}
  852. engines: {node: '>=18'}
  853. peerDependencies:
  854. canvas: ^2.11.2
  855. peerDependenciesMeta:
  856. canvas:
  857. optional: true
  858. jsesc@2.5.2:
  859. resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
  860. engines: {node: '>=4'}
  861. hasBin: true
  862. json-buffer@3.0.1:
  863. resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
  864. json-schema-traverse@0.4.1:
  865. resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
  866. json-stable-stringify-without-jsonify@1.0.1:
  867. resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
  868. json5@2.2.3:
  869. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  870. engines: {node: '>=6'}
  871. hasBin: true
  872. jsonfile@6.1.0:
  873. resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
  874. keyv@4.5.4:
  875. resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
  876. kolorist@1.8.0:
  877. resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
  878. levn@0.4.1:
  879. resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
  880. engines: {node: '>= 0.8.0'}
  881. local-pkg@0.4.3:
  882. resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
  883. engines: {node: '>=14'}
  884. locate-path@6.0.0:
  885. resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
  886. engines: {node: '>=10'}
  887. lodash.merge@4.6.2:
  888. resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
  889. lodash@4.17.21:
  890. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  891. lru-cache@5.1.1:
  892. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  893. lru-cache@6.0.0:
  894. resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
  895. engines: {node: '>=10'}
  896. magic-string@0.30.10:
  897. resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
  898. merge-stream@2.0.0:
  899. resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
  900. merge2@1.4.1:
  901. resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
  902. engines: {node: '>= 8'}
  903. micromatch@4.0.5:
  904. resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
  905. engines: {node: '>=8.6'}
  906. mime-db@1.52.0:
  907. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  908. engines: {node: '>= 0.6'}
  909. mime-types@2.1.35:
  910. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  911. engines: {node: '>= 0.6'}
  912. mimic-fn@4.0.0:
  913. resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
  914. engines: {node: '>=12'}
  915. minimatch@3.1.2:
  916. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  917. minimatch@9.0.4:
  918. resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
  919. engines: {node: '>=16 || 14 >=14.17'}
  920. mitt@3.0.1:
  921. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  922. mrmime@2.0.0:
  923. resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
  924. engines: {node: '>=10'}
  925. ms@2.1.2:
  926. resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
  927. nanoid@3.3.7:
  928. resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
  929. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  930. hasBin: true
  931. natural-compare@1.4.0:
  932. resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
  933. node-releases@2.0.14:
  934. resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
  935. normalize-path@3.0.0:
  936. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  937. engines: {node: '>=0.10.0'}
  938. npm-run-path@5.3.0:
  939. resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
  940. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  941. nth-check@2.1.1:
  942. resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
  943. nwsapi@2.2.9:
  944. resolution: {integrity: sha512-2f3F0SEEer8bBu0dsNCFF50N0cTThV1nWFYcEYFZttdW0lDAoybv9cQoK7X7/68Z89S7FoRrVjP1LPX4XRf9vg==}
  945. once@1.4.0:
  946. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  947. onetime@6.0.0:
  948. resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
  949. engines: {node: '>=12'}
  950. open@10.1.0:
  951. resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
  952. engines: {node: '>=18'}
  953. optionator@0.9.4:
  954. resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
  955. engines: {node: '>= 0.8.0'}
  956. p-limit@3.1.0:
  957. resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
  958. engines: {node: '>=10'}
  959. p-locate@5.0.0:
  960. resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
  961. engines: {node: '>=10'}
  962. parent-module@1.0.1:
  963. resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
  964. engines: {node: '>=6'}
  965. parse5@7.1.2:
  966. resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
  967. path-exists@4.0.0:
  968. resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
  969. engines: {node: '>=8'}
  970. path-is-absolute@1.0.1:
  971. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  972. engines: {node: '>=0.10.0'}
  973. path-key@3.1.1:
  974. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  975. engines: {node: '>=8'}
  976. path-key@4.0.0:
  977. resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
  978. engines: {node: '>=12'}
  979. path-parse@1.0.7:
  980. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  981. pathe@1.1.2:
  982. resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
  983. perfect-debounce@1.0.0:
  984. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  985. picocolors@1.0.0:
  986. resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
  987. picomatch@2.3.1:
  988. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  989. engines: {node: '>=8.6'}
  990. pinia@2.1.7:
  991. resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==}
  992. peerDependencies:
  993. '@vue/composition-api': ^1.4.0
  994. typescript: '>=4.4.4'
  995. vue: ^2.6.14 || ^3.3.0
  996. peerDependenciesMeta:
  997. '@vue/composition-api':
  998. optional: true
  999. typescript:
  1000. optional: true
  1001. postcss-selector-parser@6.0.16:
  1002. resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
  1003. engines: {node: '>=4'}
  1004. postcss@8.4.38:
  1005. resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
  1006. engines: {node: ^10 || ^12 || >=14}
  1007. prelude-ls@1.2.1:
  1008. resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
  1009. engines: {node: '>= 0.8.0'}
  1010. prettier-linter-helpers@1.0.0:
  1011. resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
  1012. engines: {node: '>=6.0.0'}
  1013. prettier@3.2.5:
  1014. resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
  1015. engines: {node: '>=14'}
  1016. hasBin: true
  1017. psl@1.9.0:
  1018. resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
  1019. punycode@2.3.1:
  1020. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1021. engines: {node: '>=6'}
  1022. querystringify@2.2.0:
  1023. resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
  1024. queue-microtask@1.2.3:
  1025. resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
  1026. readdirp@3.6.0:
  1027. resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
  1028. engines: {node: '>=8.10.0'}
  1029. requires-port@1.0.0:
  1030. resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
  1031. resolve-from@4.0.0:
  1032. resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
  1033. engines: {node: '>=4'}
  1034. resolve@1.22.8:
  1035. resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
  1036. hasBin: true
  1037. reusify@1.0.4:
  1038. resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
  1039. engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
  1040. rfdc@1.3.1:
  1041. resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
  1042. rimraf@3.0.2:
  1043. resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
  1044. hasBin: true
  1045. roboto-fontface@0.10.0:
  1046. resolution: {integrity: sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g==}
  1047. rollup@4.17.0:
  1048. resolution: {integrity: sha512-wZJSn0WMtWrxhYKQRt5Z6GIXlziOoMDFmbHmRfL3v+sBTAshx2DBq1AfMArB7eIjF63r4ocn2ZTAyUptg/7kmQ==}
  1049. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  1050. hasBin: true
  1051. rrweb-cssom@0.6.0:
  1052. resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
  1053. run-applescript@7.0.0:
  1054. resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
  1055. engines: {node: '>=18'}
  1056. run-parallel@1.2.0:
  1057. resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
  1058. safer-buffer@2.1.2:
  1059. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  1060. sass@1.75.0:
  1061. resolution: {integrity: sha512-ShMYi3WkrDWxExyxSZPst4/okE9ts46xZmJDSawJQrnte7M1V9fScVB+uNXOVKRBt0PggHOwoZcn8mYX4trnBw==}
  1062. engines: {node: '>=14.0.0'}
  1063. hasBin: true
  1064. saxes@6.0.0:
  1065. resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
  1066. engines: {node: '>=v12.22.7'}
  1067. semver@6.3.1:
  1068. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  1069. hasBin: true
  1070. semver@7.6.0:
  1071. resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
  1072. engines: {node: '>=10'}
  1073. hasBin: true
  1074. shebang-command@2.0.0:
  1075. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1076. engines: {node: '>=8'}
  1077. shebang-regex@3.0.0:
  1078. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1079. engines: {node: '>=8'}
  1080. signal-exit@4.1.0:
  1081. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1082. engines: {node: '>=14'}
  1083. sirv@2.0.4:
  1084. resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
  1085. engines: {node: '>= 10'}
  1086. source-map-js@1.2.0:
  1087. resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
  1088. engines: {node: '>=0.10.0'}
  1089. speakingurl@14.0.1:
  1090. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  1091. engines: {node: '>=0.10.0'}
  1092. strip-ansi@6.0.1:
  1093. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1094. engines: {node: '>=8'}
  1095. strip-final-newline@3.0.0:
  1096. resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
  1097. engines: {node: '>=12'}
  1098. strip-json-comments@3.1.1:
  1099. resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
  1100. engines: {node: '>=8'}
  1101. supports-color@5.5.0:
  1102. resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
  1103. engines: {node: '>=4'}
  1104. supports-color@7.2.0:
  1105. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  1106. engines: {node: '>=8'}
  1107. supports-preserve-symlinks-flag@1.0.0:
  1108. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  1109. engines: {node: '>= 0.4'}
  1110. svg-tags@1.0.0:
  1111. resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
  1112. symbol-tree@3.2.4:
  1113. resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
  1114. synckit@0.8.8:
  1115. resolution: {integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==}
  1116. engines: {node: ^14.18.0 || >=16.0.0}
  1117. text-table@0.2.0:
  1118. resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
  1119. to-fast-properties@2.0.0:
  1120. resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
  1121. engines: {node: '>=4'}
  1122. to-regex-range@5.0.1:
  1123. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  1124. engines: {node: '>=8.0'}
  1125. totalist@3.0.1:
  1126. resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
  1127. engines: {node: '>=6'}
  1128. tough-cookie@4.1.3:
  1129. resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
  1130. engines: {node: '>=6'}
  1131. tr46@5.0.0:
  1132. resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
  1133. engines: {node: '>=18'}
  1134. tslib@2.6.2:
  1135. resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
  1136. type-check@0.4.0:
  1137. resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
  1138. engines: {node: '>= 0.8.0'}
  1139. type-fest@0.20.2:
  1140. resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
  1141. engines: {node: '>=10'}
  1142. universalify@0.2.0:
  1143. resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
  1144. engines: {node: '>= 4.0.0'}
  1145. universalify@2.0.1:
  1146. resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
  1147. engines: {node: '>= 10.0.0'}
  1148. unplugin-fonts@1.1.1:
  1149. resolution: {integrity: sha512-/Aw/rL9D2aslGGM0vi+2R2aG508RSwawLnnBuo+JDSqYc4cHJO1R1phllhN6GysEhBp/6a4B6+vSFPVapWyAAw==}
  1150. peerDependencies:
  1151. '@nuxt/kit': ^3.0.0
  1152. vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
  1153. peerDependenciesMeta:
  1154. '@nuxt/kit':
  1155. optional: true
  1156. unplugin-vue-components@0.26.0:
  1157. resolution: {integrity: sha512-s7IdPDlnOvPamjunVxw8kNgKNK8A5KM1YpK5j/p97jEKTjlPNrA0nZBiSfAKKlK1gWZuyWXlKL5dk3EDw874LQ==}
  1158. engines: {node: '>=14'}
  1159. peerDependencies:
  1160. '@babel/parser': ^7.15.8
  1161. '@nuxt/kit': ^3.2.2
  1162. vue: 2 || 3
  1163. peerDependenciesMeta:
  1164. '@babel/parser':
  1165. optional: true
  1166. '@nuxt/kit':
  1167. optional: true
  1168. unplugin@1.10.1:
  1169. resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}
  1170. engines: {node: '>=14.0.0'}
  1171. upath@2.0.1:
  1172. resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
  1173. engines: {node: '>=4'}
  1174. update-browserslist-db@1.0.13:
  1175. resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
  1176. hasBin: true
  1177. peerDependencies:
  1178. browserslist: '>= 4.21.0'
  1179. uri-js@4.4.1:
  1180. resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
  1181. url-parse@1.5.10:
  1182. resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
  1183. util-deprecate@1.0.2:
  1184. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  1185. vite-hot-client@0.2.3:
  1186. resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==}
  1187. peerDependencies:
  1188. vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0
  1189. vite-plugin-inspect@0.8.4:
  1190. resolution: {integrity: sha512-G0N3rjfw+AiiwnGw50KlObIHYWfulVwaCBUBLh2xTW9G1eM9ocE5olXkEYUbwyTmX+azM8duubi+9w5awdCz+g==}
  1191. engines: {node: '>=14'}
  1192. peerDependencies:
  1193. '@nuxt/kit': '*'
  1194. vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
  1195. peerDependenciesMeta:
  1196. '@nuxt/kit':
  1197. optional: true
  1198. vite-plugin-vue-devtools@7.1.3:
  1199. resolution: {integrity: sha512-qv8Z4yok9RYo6TEs89WnIAlmTHby/+XTim8tlSnMs3lAPcQqqcl/wGRY8gAeYrGCANngOqO+VuabW3Jb1HZtyw==}
  1200. engines: {node: '>=v14.21.3'}
  1201. peerDependencies:
  1202. vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0
  1203. vite-plugin-vue-inspector@5.0.1:
  1204. resolution: {integrity: sha512-R93P8iFa6BPODhc/aOtO04A8FFMMyFIfm8ZVSmN+8vU1TgwsHya734APGpX4fVHSPX2aVwYyiezXBUYQ0Opsqw==}
  1205. peerDependencies:
  1206. vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
  1207. vite-plugin-vuetify@2.0.3:
  1208. resolution: {integrity: sha512-HbYajgGgb/noaVKNRhnnXIiQZrNXfNIeanUGAwXgOxL6h/KULS40Uf51Kyz8hNmdegF+DwjgXXI/8J1PNS83xw==}
  1209. engines: {node: ^18.0.0 || >=20.0.0}
  1210. peerDependencies:
  1211. vite: '>=5'
  1212. vue: ^3.0.0
  1213. vuetify: ^3.0.0
  1214. vite@5.2.10:
  1215. resolution: {integrity: sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==}
  1216. engines: {node: ^18.0.0 || >=20.0.0}
  1217. hasBin: true
  1218. peerDependencies:
  1219. '@types/node': ^18.0.0 || >=20.0.0
  1220. less: '*'
  1221. lightningcss: ^1.21.0
  1222. sass: '*'
  1223. stylus: '*'
  1224. sugarss: '*'
  1225. terser: ^5.4.0
  1226. peerDependenciesMeta:
  1227. '@types/node':
  1228. optional: true
  1229. less:
  1230. optional: true
  1231. lightningcss:
  1232. optional: true
  1233. sass:
  1234. optional: true
  1235. stylus:
  1236. optional: true
  1237. sugarss:
  1238. optional: true
  1239. terser:
  1240. optional: true
  1241. vue-demi@0.14.7:
  1242. resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==}
  1243. engines: {node: '>=12'}
  1244. hasBin: true
  1245. peerDependencies:
  1246. '@vue/composition-api': ^1.0.0-rc.1
  1247. vue: ^3.0.0-0 || ^2.6.0
  1248. peerDependenciesMeta:
  1249. '@vue/composition-api':
  1250. optional: true
  1251. vue-eslint-parser@9.4.2:
  1252. resolution: {integrity: sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==}
  1253. engines: {node: ^14.17.0 || >=16.0.0}
  1254. peerDependencies:
  1255. eslint: '>=6.0.0'
  1256. vue-router@4.3.2:
  1257. resolution: {integrity: sha512-hKQJ1vDAZ5LVkKEnHhmm1f9pMiWIBNGF5AwU67PdH7TyXCj/a4hTccuUuYCAMgJK6rO/NVYtQIEN3yL8CECa7Q==}
  1258. peerDependencies:
  1259. vue: ^3.2.0
  1260. vue@3.4.25:
  1261. resolution: {integrity: sha512-HWyDqoBHMgav/OKiYA2ZQg+kjfMgLt/T0vg4cbIF7JbXAjDexRf5JRg+PWAfrAkSmTd2I8aPSXtooBFWHB98cg==}
  1262. peerDependencies:
  1263. typescript: '*'
  1264. peerDependenciesMeta:
  1265. typescript:
  1266. optional: true
  1267. vuetify@3.5.17:
  1268. resolution: {integrity: sha512-/Veklxxyu/l63q7QQOqJZeZukIKI2sBxY7FKMDcNup2KSGMjyjT+oYXy1DOdl7wlU3c3fKGQMFHqVWb0HDsyDw==}
  1269. engines: {node: ^12.20 || >=14.13}
  1270. peerDependencies:
  1271. typescript: '>=4.7'
  1272. vite-plugin-vuetify: '>=1.0.0'
  1273. vue: ^3.3.0
  1274. vue-i18n: ^9.0.0
  1275. webpack-plugin-vuetify: '>=2.0.0'
  1276. peerDependenciesMeta:
  1277. typescript:
  1278. optional: true
  1279. vite-plugin-vuetify:
  1280. optional: true
  1281. vue-i18n:
  1282. optional: true
  1283. webpack-plugin-vuetify:
  1284. optional: true
  1285. w3c-xmlserializer@5.0.0:
  1286. resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
  1287. engines: {node: '>=18'}
  1288. webidl-conversions@7.0.0:
  1289. resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
  1290. engines: {node: '>=12'}
  1291. webpack-sources@3.2.3:
  1292. resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
  1293. engines: {node: '>=10.13.0'}
  1294. webpack-virtual-modules@0.6.1:
  1295. resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
  1296. whatwg-encoding@3.1.1:
  1297. resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
  1298. engines: {node: '>=18'}
  1299. whatwg-mimetype@4.0.0:
  1300. resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
  1301. engines: {node: '>=18'}
  1302. whatwg-url@14.0.0:
  1303. resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}
  1304. engines: {node: '>=18'}
  1305. which@2.0.2:
  1306. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1307. engines: {node: '>= 8'}
  1308. hasBin: true
  1309. word-wrap@1.2.5:
  1310. resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
  1311. engines: {node: '>=0.10.0'}
  1312. wrappy@1.0.2:
  1313. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  1314. ws@8.17.0:
  1315. resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==}
  1316. engines: {node: '>=10.0.0'}
  1317. peerDependencies:
  1318. bufferutil: ^4.0.1
  1319. utf-8-validate: '>=5.0.2'
  1320. peerDependenciesMeta:
  1321. bufferutil:
  1322. optional: true
  1323. utf-8-validate:
  1324. optional: true
  1325. xml-name-validator@4.0.0:
  1326. resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
  1327. engines: {node: '>=12'}
  1328. xml-name-validator@5.0.0:
  1329. resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
  1330. engines: {node: '>=18'}
  1331. xmlchars@2.2.0:
  1332. resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
  1333. yallist@3.1.1:
  1334. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1335. yallist@4.0.0:
  1336. resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
  1337. yocto-queue@0.1.0:
  1338. resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
  1339. engines: {node: '>=10'}
  1340. snapshots:
  1341. '@ampproject/remapping@2.3.0':
  1342. dependencies:
  1343. '@jridgewell/gen-mapping': 0.3.5
  1344. '@jridgewell/trace-mapping': 0.3.25
  1345. '@antfu/utils@0.7.7': {}
  1346. '@babel/code-frame@7.24.2':
  1347. dependencies:
  1348. '@babel/highlight': 7.24.2
  1349. picocolors: 1.0.0
  1350. '@babel/compat-data@7.24.4': {}
  1351. '@babel/core@7.24.4':
  1352. dependencies:
  1353. '@ampproject/remapping': 2.3.0
  1354. '@babel/code-frame': 7.24.2
  1355. '@babel/generator': 7.24.4
  1356. '@babel/helper-compilation-targets': 7.23.6
  1357. '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
  1358. '@babel/helpers': 7.24.4
  1359. '@babel/parser': 7.24.4
  1360. '@babel/template': 7.24.0
  1361. '@babel/traverse': 7.24.1
  1362. '@babel/types': 7.24.0
  1363. convert-source-map: 2.0.0
  1364. debug: 4.3.4
  1365. gensync: 1.0.0-beta.2
  1366. json5: 2.2.3
  1367. semver: 6.3.1
  1368. transitivePeerDependencies:
  1369. - supports-color
  1370. '@babel/generator@7.24.4':
  1371. dependencies:
  1372. '@babel/types': 7.24.0
  1373. '@jridgewell/gen-mapping': 0.3.5
  1374. '@jridgewell/trace-mapping': 0.3.25
  1375. jsesc: 2.5.2
  1376. '@babel/helper-annotate-as-pure@7.22.5':
  1377. dependencies:
  1378. '@babel/types': 7.24.0
  1379. '@babel/helper-compilation-targets@7.23.6':
  1380. dependencies:
  1381. '@babel/compat-data': 7.24.4
  1382. '@babel/helper-validator-option': 7.23.5
  1383. browserslist: 4.23.0
  1384. lru-cache: 5.1.1
  1385. semver: 6.3.1
  1386. '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.4)':
  1387. dependencies:
  1388. '@babel/core': 7.24.4
  1389. '@babel/helper-annotate-as-pure': 7.22.5
  1390. '@babel/helper-environment-visitor': 7.22.20
  1391. '@babel/helper-function-name': 7.23.0
  1392. '@babel/helper-member-expression-to-functions': 7.23.0
  1393. '@babel/helper-optimise-call-expression': 7.22.5
  1394. '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
  1395. '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
  1396. '@babel/helper-split-export-declaration': 7.22.6
  1397. semver: 6.3.1
  1398. '@babel/helper-environment-visitor@7.22.20': {}
  1399. '@babel/helper-function-name@7.23.0':
  1400. dependencies:
  1401. '@babel/template': 7.24.0
  1402. '@babel/types': 7.24.0
  1403. '@babel/helper-hoist-variables@7.22.5':
  1404. dependencies:
  1405. '@babel/types': 7.24.0
  1406. '@babel/helper-member-expression-to-functions@7.23.0':
  1407. dependencies:
  1408. '@babel/types': 7.24.0
  1409. '@babel/helper-module-imports@7.22.15':
  1410. dependencies:
  1411. '@babel/types': 7.24.0
  1412. '@babel/helper-module-imports@7.24.3':
  1413. dependencies:
  1414. '@babel/types': 7.24.0
  1415. '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)':
  1416. dependencies:
  1417. '@babel/core': 7.24.4
  1418. '@babel/helper-environment-visitor': 7.22.20
  1419. '@babel/helper-module-imports': 7.24.3
  1420. '@babel/helper-simple-access': 7.22.5
  1421. '@babel/helper-split-export-declaration': 7.22.6
  1422. '@babel/helper-validator-identifier': 7.22.20
  1423. '@babel/helper-optimise-call-expression@7.22.5':
  1424. dependencies:
  1425. '@babel/types': 7.24.0
  1426. '@babel/helper-plugin-utils@7.24.0': {}
  1427. '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.4)':
  1428. dependencies:
  1429. '@babel/core': 7.24.4
  1430. '@babel/helper-environment-visitor': 7.22.20
  1431. '@babel/helper-member-expression-to-functions': 7.23.0
  1432. '@babel/helper-optimise-call-expression': 7.22.5
  1433. '@babel/helper-simple-access@7.22.5':
  1434. dependencies:
  1435. '@babel/types': 7.24.0
  1436. '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
  1437. dependencies:
  1438. '@babel/types': 7.24.0
  1439. '@babel/helper-split-export-declaration@7.22.6':
  1440. dependencies:
  1441. '@babel/types': 7.24.0
  1442. '@babel/helper-string-parser@7.24.1': {}
  1443. '@babel/helper-validator-identifier@7.22.20': {}
  1444. '@babel/helper-validator-option@7.23.5': {}
  1445. '@babel/helpers@7.24.4':
  1446. dependencies:
  1447. '@babel/template': 7.24.0
  1448. '@babel/traverse': 7.24.1
  1449. '@babel/types': 7.24.0
  1450. transitivePeerDependencies:
  1451. - supports-color
  1452. '@babel/highlight@7.24.2':
  1453. dependencies:
  1454. '@babel/helper-validator-identifier': 7.22.20
  1455. chalk: 2.4.2
  1456. js-tokens: 4.0.0
  1457. picocolors: 1.0.0
  1458. '@babel/parser@7.24.4':
  1459. dependencies:
  1460. '@babel/types': 7.24.0
  1461. '@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.4)':
  1462. dependencies:
  1463. '@babel/core': 7.24.4
  1464. '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
  1465. '@babel/helper-plugin-utils': 7.24.0
  1466. '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.4)
  1467. '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.4)':
  1468. dependencies:
  1469. '@babel/core': 7.24.4
  1470. '@babel/helper-plugin-utils': 7.24.0
  1471. '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.4)':
  1472. dependencies:
  1473. '@babel/core': 7.24.4
  1474. '@babel/helper-plugin-utils': 7.24.0
  1475. '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)':
  1476. dependencies:
  1477. '@babel/core': 7.24.4
  1478. '@babel/helper-plugin-utils': 7.24.0
  1479. '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4)':
  1480. dependencies:
  1481. '@babel/core': 7.24.4
  1482. '@babel/helper-plugin-utils': 7.24.0
  1483. '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.4)':
  1484. dependencies:
  1485. '@babel/core': 7.24.4
  1486. '@babel/helper-plugin-utils': 7.24.0
  1487. '@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.4)':
  1488. dependencies:
  1489. '@babel/core': 7.24.4
  1490. '@babel/helper-annotate-as-pure': 7.22.5
  1491. '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
  1492. '@babel/helper-plugin-utils': 7.24.0
  1493. '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
  1494. '@babel/template@7.24.0':
  1495. dependencies:
  1496. '@babel/code-frame': 7.24.2
  1497. '@babel/parser': 7.24.4
  1498. '@babel/types': 7.24.0
  1499. '@babel/traverse@7.24.1':
  1500. dependencies:
  1501. '@babel/code-frame': 7.24.2
  1502. '@babel/generator': 7.24.4
  1503. '@babel/helper-environment-visitor': 7.22.20
  1504. '@babel/helper-function-name': 7.23.0
  1505. '@babel/helper-hoist-variables': 7.22.5
  1506. '@babel/helper-split-export-declaration': 7.22.6
  1507. '@babel/parser': 7.24.4
  1508. '@babel/types': 7.24.0
  1509. debug: 4.3.4
  1510. globals: 11.12.0
  1511. transitivePeerDependencies:
  1512. - supports-color
  1513. '@babel/types@7.24.0':
  1514. dependencies:
  1515. '@babel/helper-string-parser': 7.24.1
  1516. '@babel/helper-validator-identifier': 7.22.20
  1517. to-fast-properties: 2.0.0
  1518. '@esbuild/aix-ppc64@0.20.2':
  1519. optional: true
  1520. '@esbuild/android-arm64@0.20.2':
  1521. optional: true
  1522. '@esbuild/android-arm@0.20.2':
  1523. optional: true
  1524. '@esbuild/android-x64@0.20.2':
  1525. optional: true
  1526. '@esbuild/darwin-arm64@0.20.2':
  1527. optional: true
  1528. '@esbuild/darwin-x64@0.20.2':
  1529. optional: true
  1530. '@esbuild/freebsd-arm64@0.20.2':
  1531. optional: true
  1532. '@esbuild/freebsd-x64@0.20.2':
  1533. optional: true
  1534. '@esbuild/linux-arm64@0.20.2':
  1535. optional: true
  1536. '@esbuild/linux-arm@0.20.2':
  1537. optional: true
  1538. '@esbuild/linux-ia32@0.20.2':
  1539. optional: true
  1540. '@esbuild/linux-loong64@0.20.2':
  1541. optional: true
  1542. '@esbuild/linux-mips64el@0.20.2':
  1543. optional: true
  1544. '@esbuild/linux-ppc64@0.20.2':
  1545. optional: true
  1546. '@esbuild/linux-riscv64@0.20.2':
  1547. optional: true
  1548. '@esbuild/linux-s390x@0.20.2':
  1549. optional: true
  1550. '@esbuild/linux-x64@0.20.2':
  1551. optional: true
  1552. '@esbuild/netbsd-x64@0.20.2':
  1553. optional: true
  1554. '@esbuild/openbsd-x64@0.20.2':
  1555. optional: true
  1556. '@esbuild/sunos-x64@0.20.2':
  1557. optional: true
  1558. '@esbuild/win32-arm64@0.20.2':
  1559. optional: true
  1560. '@esbuild/win32-ia32@0.20.2':
  1561. optional: true
  1562. '@esbuild/win32-x64@0.20.2':
  1563. optional: true
  1564. '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
  1565. dependencies:
  1566. eslint: 8.57.0
  1567. eslint-visitor-keys: 3.4.3
  1568. '@eslint-community/regexpp@4.10.0': {}
  1569. '@eslint/eslintrc@2.1.4':
  1570. dependencies:
  1571. ajv: 6.12.6
  1572. debug: 4.3.4
  1573. espree: 9.6.1
  1574. globals: 13.24.0
  1575. ignore: 5.3.1
  1576. import-fresh: 3.3.0
  1577. js-yaml: 4.1.0
  1578. minimatch: 3.1.2
  1579. strip-json-comments: 3.1.1
  1580. transitivePeerDependencies:
  1581. - supports-color
  1582. '@eslint/js@8.57.0': {}
  1583. '@humanwhocodes/config-array@0.11.14':
  1584. dependencies:
  1585. '@humanwhocodes/object-schema': 2.0.3
  1586. debug: 4.3.4
  1587. minimatch: 3.1.2
  1588. transitivePeerDependencies:
  1589. - supports-color
  1590. '@humanwhocodes/module-importer@1.0.1': {}
  1591. '@humanwhocodes/object-schema@2.0.3': {}
  1592. '@jridgewell/gen-mapping@0.3.5':
  1593. dependencies:
  1594. '@jridgewell/set-array': 1.2.1
  1595. '@jridgewell/sourcemap-codec': 1.4.15
  1596. '@jridgewell/trace-mapping': 0.3.25
  1597. '@jridgewell/resolve-uri@3.1.2': {}
  1598. '@jridgewell/set-array@1.2.1': {}
  1599. '@jridgewell/sourcemap-codec@1.4.15': {}
  1600. '@jridgewell/trace-mapping@0.3.25':
  1601. dependencies:
  1602. '@jridgewell/resolve-uri': 3.1.2
  1603. '@jridgewell/sourcemap-codec': 1.4.15
  1604. '@mdi/font@7.0.96': {}
  1605. '@nodelib/fs.scandir@2.1.5':
  1606. dependencies:
  1607. '@nodelib/fs.stat': 2.0.5
  1608. run-parallel: 1.2.0
  1609. '@nodelib/fs.stat@2.0.5': {}
  1610. '@nodelib/fs.walk@1.2.8':
  1611. dependencies:
  1612. '@nodelib/fs.scandir': 2.1.5
  1613. fastq: 1.17.1
  1614. '@pkgr/core@0.1.1': {}
  1615. '@polka/url@1.0.0-next.25': {}
  1616. '@rollup/pluginutils@5.1.0(rollup@4.17.0)':
  1617. dependencies:
  1618. '@types/estree': 1.0.5
  1619. estree-walker: 2.0.2
  1620. picomatch: 2.3.1
  1621. optionalDependencies:
  1622. rollup: 4.17.0
  1623. '@rollup/rollup-android-arm-eabi@4.17.0':
  1624. optional: true
  1625. '@rollup/rollup-android-arm64@4.17.0':
  1626. optional: true
  1627. '@rollup/rollup-darwin-arm64@4.17.0':
  1628. optional: true
  1629. '@rollup/rollup-darwin-x64@4.17.0':
  1630. optional: true
  1631. '@rollup/rollup-linux-arm-gnueabihf@4.17.0':
  1632. optional: true
  1633. '@rollup/rollup-linux-arm-musleabihf@4.17.0':
  1634. optional: true
  1635. '@rollup/rollup-linux-arm64-gnu@4.17.0':
  1636. optional: true
  1637. '@rollup/rollup-linux-arm64-musl@4.17.0':
  1638. optional: true
  1639. '@rollup/rollup-linux-powerpc64le-gnu@4.17.0':
  1640. optional: true
  1641. '@rollup/rollup-linux-riscv64-gnu@4.17.0':
  1642. optional: true
  1643. '@rollup/rollup-linux-s390x-gnu@4.17.0':
  1644. optional: true
  1645. '@rollup/rollup-linux-x64-gnu@4.17.0':
  1646. optional: true
  1647. '@rollup/rollup-linux-x64-musl@4.17.0':
  1648. optional: true
  1649. '@rollup/rollup-win32-arm64-msvc@4.17.0':
  1650. optional: true
  1651. '@rollup/rollup-win32-ia32-msvc@4.17.0':
  1652. optional: true
  1653. '@rollup/rollup-win32-x64-msvc@4.17.0':
  1654. optional: true
  1655. '@rushstack/eslint-patch@1.10.2': {}
  1656. '@types/estree@1.0.5': {}
  1657. '@ungap/structured-clone@1.2.0': {}
  1658. '@vitejs/plugin-vue@5.0.4(vite@5.2.10(sass@1.75.0))(vue@3.4.25)':
  1659. dependencies:
  1660. vite: 5.2.10(sass@1.75.0)
  1661. vue: 3.4.25
  1662. '@vue/babel-helper-vue-transform-on@1.2.2': {}
  1663. '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.4)':
  1664. dependencies:
  1665. '@babel/helper-module-imports': 7.22.15
  1666. '@babel/helper-plugin-utils': 7.24.0
  1667. '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
  1668. '@babel/template': 7.24.0
  1669. '@babel/traverse': 7.24.1
  1670. '@babel/types': 7.24.0
  1671. '@vue/babel-helper-vue-transform-on': 1.2.2
  1672. '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.4)
  1673. camelcase: 6.3.0
  1674. html-tags: 3.3.1
  1675. svg-tags: 1.0.0
  1676. optionalDependencies:
  1677. '@babel/core': 7.24.4
  1678. transitivePeerDependencies:
  1679. - supports-color
  1680. '@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.4)':
  1681. dependencies:
  1682. '@babel/code-frame': 7.24.2
  1683. '@babel/core': 7.24.4
  1684. '@babel/helper-module-imports': 7.22.15
  1685. '@babel/helper-plugin-utils': 7.24.0
  1686. '@babel/parser': 7.24.4
  1687. '@vue/compiler-sfc': 3.4.25
  1688. '@vue/compiler-core@3.4.25':
  1689. dependencies:
  1690. '@babel/parser': 7.24.4
  1691. '@vue/shared': 3.4.25
  1692. entities: 4.5.0
  1693. estree-walker: 2.0.2
  1694. source-map-js: 1.2.0
  1695. '@vue/compiler-dom@3.4.25':
  1696. dependencies:
  1697. '@vue/compiler-core': 3.4.25
  1698. '@vue/shared': 3.4.25
  1699. '@vue/compiler-sfc@3.4.25':
  1700. dependencies:
  1701. '@babel/parser': 7.24.4
  1702. '@vue/compiler-core': 3.4.25
  1703. '@vue/compiler-dom': 3.4.25
  1704. '@vue/compiler-ssr': 3.4.25
  1705. '@vue/shared': 3.4.25
  1706. estree-walker: 2.0.2
  1707. magic-string: 0.30.10
  1708. postcss: 8.4.38
  1709. source-map-js: 1.2.0
  1710. '@vue/compiler-ssr@3.4.25':
  1711. dependencies:
  1712. '@vue/compiler-dom': 3.4.25
  1713. '@vue/shared': 3.4.25
  1714. '@vue/devtools-api@6.6.1': {}
  1715. '@vue/devtools-core@7.1.3(vite@5.2.10(sass@1.75.0))(vue@3.4.25)':
  1716. dependencies:
  1717. '@vue/devtools-kit': 7.1.3(vue@3.4.25)
  1718. '@vue/devtools-shared': 7.1.3
  1719. mitt: 3.0.1
  1720. nanoid: 3.3.7
  1721. pathe: 1.1.2
  1722. vite-hot-client: 0.2.3(vite@5.2.10(sass@1.75.0))
  1723. transitivePeerDependencies:
  1724. - vite
  1725. - vue
  1726. '@vue/devtools-kit@7.1.3(vue@3.4.25)':
  1727. dependencies:
  1728. '@vue/devtools-shared': 7.1.3
  1729. hookable: 5.5.3
  1730. mitt: 3.0.1
  1731. perfect-debounce: 1.0.0
  1732. speakingurl: 14.0.1
  1733. vue: 3.4.25
  1734. '@vue/devtools-shared@7.1.3':
  1735. dependencies:
  1736. rfdc: 1.3.1
  1737. '@vue/eslint-config-prettier@9.0.0(eslint@8.57.0)(prettier@3.2.5)':
  1738. dependencies:
  1739. eslint: 8.57.0
  1740. eslint-config-prettier: 9.1.0(eslint@8.57.0)
  1741. eslint-plugin-prettier: 5.1.3(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.2.5)
  1742. prettier: 3.2.5
  1743. transitivePeerDependencies:
  1744. - '@types/eslint'
  1745. '@vue/reactivity@3.4.25':
  1746. dependencies:
  1747. '@vue/shared': 3.4.25
  1748. '@vue/runtime-core@3.4.25':
  1749. dependencies:
  1750. '@vue/reactivity': 3.4.25
  1751. '@vue/shared': 3.4.25
  1752. '@vue/runtime-dom@3.4.25':
  1753. dependencies:
  1754. '@vue/runtime-core': 3.4.25
  1755. '@vue/shared': 3.4.25
  1756. csstype: 3.1.3
  1757. '@vue/server-renderer@3.4.25(vue@3.4.25)':
  1758. dependencies:
  1759. '@vue/compiler-ssr': 3.4.25
  1760. '@vue/shared': 3.4.25
  1761. vue: 3.4.25
  1762. '@vue/shared@3.4.25': {}
  1763. '@vuetify/loader-shared@2.0.3(vue@3.4.25)(vuetify@3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25))':
  1764. dependencies:
  1765. upath: 2.0.1
  1766. vue: 3.4.25
  1767. vuetify: 3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25)
  1768. acorn-jsx@5.3.2(acorn@8.11.3):
  1769. dependencies:
  1770. acorn: 8.11.3
  1771. acorn@8.11.3: {}
  1772. agent-base@7.1.1:
  1773. dependencies:
  1774. debug: 4.3.4
  1775. transitivePeerDependencies:
  1776. - supports-color
  1777. ajv@6.12.6:
  1778. dependencies:
  1779. fast-deep-equal: 3.1.3
  1780. fast-json-stable-stringify: 2.1.0
  1781. json-schema-traverse: 0.4.1
  1782. uri-js: 4.4.1
  1783. ansi-regex@5.0.1: {}
  1784. ansi-styles@3.2.1:
  1785. dependencies:
  1786. color-convert: 1.9.3
  1787. ansi-styles@4.3.0:
  1788. dependencies:
  1789. color-convert: 2.0.1
  1790. anymatch@3.1.3:
  1791. dependencies:
  1792. normalize-path: 3.0.0
  1793. picomatch: 2.3.1
  1794. argparse@2.0.1: {}
  1795. asynckit@0.4.0: {}
  1796. balanced-match@1.0.2: {}
  1797. binary-extensions@2.3.0: {}
  1798. boolbase@1.0.0: {}
  1799. brace-expansion@1.1.11:
  1800. dependencies:
  1801. balanced-match: 1.0.2
  1802. concat-map: 0.0.1
  1803. brace-expansion@2.0.1:
  1804. dependencies:
  1805. balanced-match: 1.0.2
  1806. braces@3.0.2:
  1807. dependencies:
  1808. fill-range: 7.0.1
  1809. browserslist@4.23.0:
  1810. dependencies:
  1811. caniuse-lite: 1.0.30001614
  1812. electron-to-chromium: 1.4.750
  1813. node-releases: 2.0.14
  1814. update-browserslist-db: 1.0.13(browserslist@4.23.0)
  1815. bundle-name@4.1.0:
  1816. dependencies:
  1817. run-applescript: 7.0.0
  1818. callsites@3.1.0: {}
  1819. camelcase@6.3.0: {}
  1820. caniuse-lite@1.0.30001614: {}
  1821. chalk@2.4.2:
  1822. dependencies:
  1823. ansi-styles: 3.2.1
  1824. escape-string-regexp: 1.0.5
  1825. supports-color: 5.5.0
  1826. chalk@4.1.2:
  1827. dependencies:
  1828. ansi-styles: 4.3.0
  1829. supports-color: 7.2.0
  1830. chokidar@3.6.0:
  1831. dependencies:
  1832. anymatch: 3.1.3
  1833. braces: 3.0.2
  1834. glob-parent: 5.1.2
  1835. is-binary-path: 2.1.0
  1836. is-glob: 4.0.3
  1837. normalize-path: 3.0.0
  1838. readdirp: 3.6.0
  1839. optionalDependencies:
  1840. fsevents: 2.3.3
  1841. color-convert@1.9.3:
  1842. dependencies:
  1843. color-name: 1.1.3
  1844. color-convert@2.0.1:
  1845. dependencies:
  1846. color-name: 1.1.4
  1847. color-name@1.1.3: {}
  1848. color-name@1.1.4: {}
  1849. combined-stream@1.0.8:
  1850. dependencies:
  1851. delayed-stream: 1.0.0
  1852. concat-map@0.0.1: {}
  1853. convert-source-map@2.0.0: {}
  1854. cross-spawn@7.0.3:
  1855. dependencies:
  1856. path-key: 3.1.1
  1857. shebang-command: 2.0.0
  1858. which: 2.0.2
  1859. cssesc@3.0.0: {}
  1860. cssstyle@4.0.1:
  1861. dependencies:
  1862. rrweb-cssom: 0.6.0
  1863. csstype@3.1.3: {}
  1864. data-urls@5.0.0:
  1865. dependencies:
  1866. whatwg-mimetype: 4.0.0
  1867. whatwg-url: 14.0.0
  1868. debug@4.3.4:
  1869. dependencies:
  1870. ms: 2.1.2
  1871. decimal.js@10.4.3: {}
  1872. deep-is@0.1.4: {}
  1873. default-browser-id@5.0.0: {}
  1874. default-browser@5.2.1:
  1875. dependencies:
  1876. bundle-name: 4.1.0
  1877. default-browser-id: 5.0.0
  1878. define-lazy-prop@3.0.0: {}
  1879. delayed-stream@1.0.0: {}
  1880. doctrine@3.0.0:
  1881. dependencies:
  1882. esutils: 2.0.3
  1883. electron-to-chromium@1.4.750: {}
  1884. entities@4.5.0: {}
  1885. error-stack-parser-es@0.1.1: {}
  1886. esbuild@0.20.2:
  1887. optionalDependencies:
  1888. '@esbuild/aix-ppc64': 0.20.2
  1889. '@esbuild/android-arm': 0.20.2
  1890. '@esbuild/android-arm64': 0.20.2
  1891. '@esbuild/android-x64': 0.20.2
  1892. '@esbuild/darwin-arm64': 0.20.2
  1893. '@esbuild/darwin-x64': 0.20.2
  1894. '@esbuild/freebsd-arm64': 0.20.2
  1895. '@esbuild/freebsd-x64': 0.20.2
  1896. '@esbuild/linux-arm': 0.20.2
  1897. '@esbuild/linux-arm64': 0.20.2
  1898. '@esbuild/linux-ia32': 0.20.2
  1899. '@esbuild/linux-loong64': 0.20.2
  1900. '@esbuild/linux-mips64el': 0.20.2
  1901. '@esbuild/linux-ppc64': 0.20.2
  1902. '@esbuild/linux-riscv64': 0.20.2
  1903. '@esbuild/linux-s390x': 0.20.2
  1904. '@esbuild/linux-x64': 0.20.2
  1905. '@esbuild/netbsd-x64': 0.20.2
  1906. '@esbuild/openbsd-x64': 0.20.2
  1907. '@esbuild/sunos-x64': 0.20.2
  1908. '@esbuild/win32-arm64': 0.20.2
  1909. '@esbuild/win32-ia32': 0.20.2
  1910. '@esbuild/win32-x64': 0.20.2
  1911. escalade@3.1.2: {}
  1912. escape-string-regexp@1.0.5: {}
  1913. escape-string-regexp@4.0.0: {}
  1914. eslint-config-prettier@9.1.0(eslint@8.57.0):
  1915. dependencies:
  1916. eslint: 8.57.0
  1917. eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.2.5):
  1918. dependencies:
  1919. eslint: 8.57.0
  1920. prettier: 3.2.5
  1921. prettier-linter-helpers: 1.0.0
  1922. synckit: 0.8.8
  1923. optionalDependencies:
  1924. eslint-config-prettier: 9.1.0(eslint@8.57.0)
  1925. eslint-plugin-vue@9.25.0(eslint@8.57.0):
  1926. dependencies:
  1927. '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
  1928. eslint: 8.57.0
  1929. globals: 13.24.0
  1930. natural-compare: 1.4.0
  1931. nth-check: 2.1.1
  1932. postcss-selector-parser: 6.0.16
  1933. semver: 7.6.0
  1934. vue-eslint-parser: 9.4.2(eslint@8.57.0)
  1935. xml-name-validator: 4.0.0
  1936. transitivePeerDependencies:
  1937. - supports-color
  1938. eslint-scope@7.2.2:
  1939. dependencies:
  1940. esrecurse: 4.3.0
  1941. estraverse: 5.3.0
  1942. eslint-visitor-keys@3.4.3: {}
  1943. eslint@8.57.0:
  1944. dependencies:
  1945. '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
  1946. '@eslint-community/regexpp': 4.10.0
  1947. '@eslint/eslintrc': 2.1.4
  1948. '@eslint/js': 8.57.0
  1949. '@humanwhocodes/config-array': 0.11.14
  1950. '@humanwhocodes/module-importer': 1.0.1
  1951. '@nodelib/fs.walk': 1.2.8
  1952. '@ungap/structured-clone': 1.2.0
  1953. ajv: 6.12.6
  1954. chalk: 4.1.2
  1955. cross-spawn: 7.0.3
  1956. debug: 4.3.4
  1957. doctrine: 3.0.0
  1958. escape-string-regexp: 4.0.0
  1959. eslint-scope: 7.2.2
  1960. eslint-visitor-keys: 3.4.3
  1961. espree: 9.6.1
  1962. esquery: 1.5.0
  1963. esutils: 2.0.3
  1964. fast-deep-equal: 3.1.3
  1965. file-entry-cache: 6.0.1
  1966. find-up: 5.0.0
  1967. glob-parent: 6.0.2
  1968. globals: 13.24.0
  1969. graphemer: 1.4.0
  1970. ignore: 5.3.1
  1971. imurmurhash: 0.1.4
  1972. is-glob: 4.0.3
  1973. is-path-inside: 3.0.3
  1974. js-yaml: 4.1.0
  1975. json-stable-stringify-without-jsonify: 1.0.1
  1976. levn: 0.4.1
  1977. lodash.merge: 4.6.2
  1978. minimatch: 3.1.2
  1979. natural-compare: 1.4.0
  1980. optionator: 0.9.4
  1981. strip-ansi: 6.0.1
  1982. text-table: 0.2.0
  1983. transitivePeerDependencies:
  1984. - supports-color
  1985. espree@9.6.1:
  1986. dependencies:
  1987. acorn: 8.11.3
  1988. acorn-jsx: 5.3.2(acorn@8.11.3)
  1989. eslint-visitor-keys: 3.4.3
  1990. esquery@1.5.0:
  1991. dependencies:
  1992. estraverse: 5.3.0
  1993. esrecurse@4.3.0:
  1994. dependencies:
  1995. estraverse: 5.3.0
  1996. estraverse@5.3.0: {}
  1997. estree-walker@2.0.2: {}
  1998. esutils@2.0.3: {}
  1999. execa@8.0.1:
  2000. dependencies:
  2001. cross-spawn: 7.0.3
  2002. get-stream: 8.0.1
  2003. human-signals: 5.0.0
  2004. is-stream: 3.0.0
  2005. merge-stream: 2.0.0
  2006. npm-run-path: 5.3.0
  2007. onetime: 6.0.0
  2008. signal-exit: 4.1.0
  2009. strip-final-newline: 3.0.0
  2010. fast-deep-equal@3.1.3: {}
  2011. fast-diff@1.3.0: {}
  2012. fast-glob@3.3.2:
  2013. dependencies:
  2014. '@nodelib/fs.stat': 2.0.5
  2015. '@nodelib/fs.walk': 1.2.8
  2016. glob-parent: 5.1.2
  2017. merge2: 1.4.1
  2018. micromatch: 4.0.5
  2019. fast-json-stable-stringify@2.1.0: {}
  2020. fast-levenshtein@2.0.6: {}
  2021. fastq@1.17.1:
  2022. dependencies:
  2023. reusify: 1.0.4
  2024. file-entry-cache@6.0.1:
  2025. dependencies:
  2026. flat-cache: 3.2.0
  2027. fill-range@7.0.1:
  2028. dependencies:
  2029. to-regex-range: 5.0.1
  2030. find-up@5.0.0:
  2031. dependencies:
  2032. locate-path: 6.0.0
  2033. path-exists: 4.0.0
  2034. flat-cache@3.2.0:
  2035. dependencies:
  2036. flatted: 3.3.1
  2037. keyv: 4.5.4
  2038. rimraf: 3.0.2
  2039. flatted@3.3.1: {}
  2040. form-data@4.0.0:
  2041. dependencies:
  2042. asynckit: 0.4.0
  2043. combined-stream: 1.0.8
  2044. mime-types: 2.1.35
  2045. fs-extra@11.2.0:
  2046. dependencies:
  2047. graceful-fs: 4.2.11
  2048. jsonfile: 6.1.0
  2049. universalify: 2.0.1
  2050. fs.realpath@1.0.0: {}
  2051. fsevents@2.3.3:
  2052. optional: true
  2053. function-bind@1.1.2: {}
  2054. gensync@1.0.0-beta.2: {}
  2055. get-stream@8.0.1: {}
  2056. glob-parent@5.1.2:
  2057. dependencies:
  2058. is-glob: 4.0.3
  2059. glob-parent@6.0.2:
  2060. dependencies:
  2061. is-glob: 4.0.3
  2062. glob@7.2.3:
  2063. dependencies:
  2064. fs.realpath: 1.0.0
  2065. inflight: 1.0.6
  2066. inherits: 2.0.4
  2067. minimatch: 3.1.2
  2068. once: 1.4.0
  2069. path-is-absolute: 1.0.1
  2070. globals@11.12.0: {}
  2071. globals@13.24.0:
  2072. dependencies:
  2073. type-fest: 0.20.2
  2074. graceful-fs@4.2.11: {}
  2075. graphemer@1.4.0: {}
  2076. has-flag@3.0.0: {}
  2077. has-flag@4.0.0: {}
  2078. hasown@2.0.2:
  2079. dependencies:
  2080. function-bind: 1.1.2
  2081. hookable@5.5.3: {}
  2082. html-encoding-sniffer@4.0.0:
  2083. dependencies:
  2084. whatwg-encoding: 3.1.1
  2085. html-tags@3.3.1: {}
  2086. http-proxy-agent@7.0.2:
  2087. dependencies:
  2088. agent-base: 7.1.1
  2089. debug: 4.3.4
  2090. transitivePeerDependencies:
  2091. - supports-color
  2092. https-proxy-agent@7.0.4:
  2093. dependencies:
  2094. agent-base: 7.1.1
  2095. debug: 4.3.4
  2096. transitivePeerDependencies:
  2097. - supports-color
  2098. human-signals@5.0.0: {}
  2099. iconv-lite@0.6.3:
  2100. dependencies:
  2101. safer-buffer: 2.1.2
  2102. ignore@5.3.1: {}
  2103. immutable@4.3.5: {}
  2104. import-fresh@3.3.0:
  2105. dependencies:
  2106. parent-module: 1.0.1
  2107. resolve-from: 4.0.0
  2108. imurmurhash@0.1.4: {}
  2109. inflight@1.0.6:
  2110. dependencies:
  2111. once: 1.4.0
  2112. wrappy: 1.0.2
  2113. inherits@2.0.4: {}
  2114. is-binary-path@2.1.0:
  2115. dependencies:
  2116. binary-extensions: 2.3.0
  2117. is-core-module@2.13.1:
  2118. dependencies:
  2119. hasown: 2.0.2
  2120. is-docker@3.0.0: {}
  2121. is-extglob@2.1.1: {}
  2122. is-glob@4.0.3:
  2123. dependencies:
  2124. is-extglob: 2.1.1
  2125. is-inside-container@1.0.0:
  2126. dependencies:
  2127. is-docker: 3.0.0
  2128. is-number@7.0.0: {}
  2129. is-path-inside@3.0.3: {}
  2130. is-potential-custom-element-name@1.0.1: {}
  2131. is-stream@3.0.0: {}
  2132. is-wsl@3.1.0:
  2133. dependencies:
  2134. is-inside-container: 1.0.0
  2135. isexe@2.0.0: {}
  2136. js-tokens@4.0.0: {}
  2137. js-yaml@4.1.0:
  2138. dependencies:
  2139. argparse: 2.0.1
  2140. jsdom@24.0.0:
  2141. dependencies:
  2142. cssstyle: 4.0.1
  2143. data-urls: 5.0.0
  2144. decimal.js: 10.4.3
  2145. form-data: 4.0.0
  2146. html-encoding-sniffer: 4.0.0
  2147. http-proxy-agent: 7.0.2
  2148. https-proxy-agent: 7.0.4
  2149. is-potential-custom-element-name: 1.0.1
  2150. nwsapi: 2.2.9
  2151. parse5: 7.1.2
  2152. rrweb-cssom: 0.6.0
  2153. saxes: 6.0.0
  2154. symbol-tree: 3.2.4
  2155. tough-cookie: 4.1.3
  2156. w3c-xmlserializer: 5.0.0
  2157. webidl-conversions: 7.0.0
  2158. whatwg-encoding: 3.1.1
  2159. whatwg-mimetype: 4.0.0
  2160. whatwg-url: 14.0.0
  2161. ws: 8.17.0
  2162. xml-name-validator: 5.0.0
  2163. transitivePeerDependencies:
  2164. - bufferutil
  2165. - supports-color
  2166. - utf-8-validate
  2167. jsesc@2.5.2: {}
  2168. json-buffer@3.0.1: {}
  2169. json-schema-traverse@0.4.1: {}
  2170. json-stable-stringify-without-jsonify@1.0.1: {}
  2171. json5@2.2.3: {}
  2172. jsonfile@6.1.0:
  2173. dependencies:
  2174. universalify: 2.0.1
  2175. optionalDependencies:
  2176. graceful-fs: 4.2.11
  2177. keyv@4.5.4:
  2178. dependencies:
  2179. json-buffer: 3.0.1
  2180. kolorist@1.8.0: {}
  2181. levn@0.4.1:
  2182. dependencies:
  2183. prelude-ls: 1.2.1
  2184. type-check: 0.4.0
  2185. local-pkg@0.4.3: {}
  2186. locate-path@6.0.0:
  2187. dependencies:
  2188. p-locate: 5.0.0
  2189. lodash.merge@4.6.2: {}
  2190. lodash@4.17.21: {}
  2191. lru-cache@5.1.1:
  2192. dependencies:
  2193. yallist: 3.1.1
  2194. lru-cache@6.0.0:
  2195. dependencies:
  2196. yallist: 4.0.0
  2197. magic-string@0.30.10:
  2198. dependencies:
  2199. '@jridgewell/sourcemap-codec': 1.4.15
  2200. merge-stream@2.0.0: {}
  2201. merge2@1.4.1: {}
  2202. micromatch@4.0.5:
  2203. dependencies:
  2204. braces: 3.0.2
  2205. picomatch: 2.3.1
  2206. mime-db@1.52.0: {}
  2207. mime-types@2.1.35:
  2208. dependencies:
  2209. mime-db: 1.52.0
  2210. mimic-fn@4.0.0: {}
  2211. minimatch@3.1.2:
  2212. dependencies:
  2213. brace-expansion: 1.1.11
  2214. minimatch@9.0.4:
  2215. dependencies:
  2216. brace-expansion: 2.0.1
  2217. mitt@3.0.1: {}
  2218. mrmime@2.0.0: {}
  2219. ms@2.1.2: {}
  2220. nanoid@3.3.7: {}
  2221. natural-compare@1.4.0: {}
  2222. node-releases@2.0.14: {}
  2223. normalize-path@3.0.0: {}
  2224. npm-run-path@5.3.0:
  2225. dependencies:
  2226. path-key: 4.0.0
  2227. nth-check@2.1.1:
  2228. dependencies:
  2229. boolbase: 1.0.0
  2230. nwsapi@2.2.9: {}
  2231. once@1.4.0:
  2232. dependencies:
  2233. wrappy: 1.0.2
  2234. onetime@6.0.0:
  2235. dependencies:
  2236. mimic-fn: 4.0.0
  2237. open@10.1.0:
  2238. dependencies:
  2239. default-browser: 5.2.1
  2240. define-lazy-prop: 3.0.0
  2241. is-inside-container: 1.0.0
  2242. is-wsl: 3.1.0
  2243. optionator@0.9.4:
  2244. dependencies:
  2245. deep-is: 0.1.4
  2246. fast-levenshtein: 2.0.6
  2247. levn: 0.4.1
  2248. prelude-ls: 1.2.1
  2249. type-check: 0.4.0
  2250. word-wrap: 1.2.5
  2251. p-limit@3.1.0:
  2252. dependencies:
  2253. yocto-queue: 0.1.0
  2254. p-locate@5.0.0:
  2255. dependencies:
  2256. p-limit: 3.1.0
  2257. parent-module@1.0.1:
  2258. dependencies:
  2259. callsites: 3.1.0
  2260. parse5@7.1.2:
  2261. dependencies:
  2262. entities: 4.5.0
  2263. path-exists@4.0.0: {}
  2264. path-is-absolute@1.0.1: {}
  2265. path-key@3.1.1: {}
  2266. path-key@4.0.0: {}
  2267. path-parse@1.0.7: {}
  2268. pathe@1.1.2: {}
  2269. perfect-debounce@1.0.0: {}
  2270. picocolors@1.0.0: {}
  2271. picomatch@2.3.1: {}
  2272. pinia@2.1.7(vue@3.4.25):
  2273. dependencies:
  2274. '@vue/devtools-api': 6.6.1
  2275. vue: 3.4.25
  2276. vue-demi: 0.14.7(vue@3.4.25)
  2277. postcss-selector-parser@6.0.16:
  2278. dependencies:
  2279. cssesc: 3.0.0
  2280. util-deprecate: 1.0.2
  2281. postcss@8.4.38:
  2282. dependencies:
  2283. nanoid: 3.3.7
  2284. picocolors: 1.0.0
  2285. source-map-js: 1.2.0
  2286. prelude-ls@1.2.1: {}
  2287. prettier-linter-helpers@1.0.0:
  2288. dependencies:
  2289. fast-diff: 1.3.0
  2290. prettier@3.2.5: {}
  2291. psl@1.9.0: {}
  2292. punycode@2.3.1: {}
  2293. querystringify@2.2.0: {}
  2294. queue-microtask@1.2.3: {}
  2295. readdirp@3.6.0:
  2296. dependencies:
  2297. picomatch: 2.3.1
  2298. requires-port@1.0.0: {}
  2299. resolve-from@4.0.0: {}
  2300. resolve@1.22.8:
  2301. dependencies:
  2302. is-core-module: 2.13.1
  2303. path-parse: 1.0.7
  2304. supports-preserve-symlinks-flag: 1.0.0
  2305. reusify@1.0.4: {}
  2306. rfdc@1.3.1: {}
  2307. rimraf@3.0.2:
  2308. dependencies:
  2309. glob: 7.2.3
  2310. roboto-fontface@0.10.0: {}
  2311. rollup@4.17.0:
  2312. dependencies:
  2313. '@types/estree': 1.0.5
  2314. optionalDependencies:
  2315. '@rollup/rollup-android-arm-eabi': 4.17.0
  2316. '@rollup/rollup-android-arm64': 4.17.0
  2317. '@rollup/rollup-darwin-arm64': 4.17.0
  2318. '@rollup/rollup-darwin-x64': 4.17.0
  2319. '@rollup/rollup-linux-arm-gnueabihf': 4.17.0
  2320. '@rollup/rollup-linux-arm-musleabihf': 4.17.0
  2321. '@rollup/rollup-linux-arm64-gnu': 4.17.0
  2322. '@rollup/rollup-linux-arm64-musl': 4.17.0
  2323. '@rollup/rollup-linux-powerpc64le-gnu': 4.17.0
  2324. '@rollup/rollup-linux-riscv64-gnu': 4.17.0
  2325. '@rollup/rollup-linux-s390x-gnu': 4.17.0
  2326. '@rollup/rollup-linux-x64-gnu': 4.17.0
  2327. '@rollup/rollup-linux-x64-musl': 4.17.0
  2328. '@rollup/rollup-win32-arm64-msvc': 4.17.0
  2329. '@rollup/rollup-win32-ia32-msvc': 4.17.0
  2330. '@rollup/rollup-win32-x64-msvc': 4.17.0
  2331. fsevents: 2.3.3
  2332. rrweb-cssom@0.6.0: {}
  2333. run-applescript@7.0.0: {}
  2334. run-parallel@1.2.0:
  2335. dependencies:
  2336. queue-microtask: 1.2.3
  2337. safer-buffer@2.1.2: {}
  2338. sass@1.75.0:
  2339. dependencies:
  2340. chokidar: 3.6.0
  2341. immutable: 4.3.5
  2342. source-map-js: 1.2.0
  2343. saxes@6.0.0:
  2344. dependencies:
  2345. xmlchars: 2.2.0
  2346. semver@6.3.1: {}
  2347. semver@7.6.0:
  2348. dependencies:
  2349. lru-cache: 6.0.0
  2350. shebang-command@2.0.0:
  2351. dependencies:
  2352. shebang-regex: 3.0.0
  2353. shebang-regex@3.0.0: {}
  2354. signal-exit@4.1.0: {}
  2355. sirv@2.0.4:
  2356. dependencies:
  2357. '@polka/url': 1.0.0-next.25
  2358. mrmime: 2.0.0
  2359. totalist: 3.0.1
  2360. source-map-js@1.2.0: {}
  2361. speakingurl@14.0.1: {}
  2362. strip-ansi@6.0.1:
  2363. dependencies:
  2364. ansi-regex: 5.0.1
  2365. strip-final-newline@3.0.0: {}
  2366. strip-json-comments@3.1.1: {}
  2367. supports-color@5.5.0:
  2368. dependencies:
  2369. has-flag: 3.0.0
  2370. supports-color@7.2.0:
  2371. dependencies:
  2372. has-flag: 4.0.0
  2373. supports-preserve-symlinks-flag@1.0.0: {}
  2374. svg-tags@1.0.0: {}
  2375. symbol-tree@3.2.4: {}
  2376. synckit@0.8.8:
  2377. dependencies:
  2378. '@pkgr/core': 0.1.1
  2379. tslib: 2.6.2
  2380. text-table@0.2.0: {}
  2381. to-fast-properties@2.0.0: {}
  2382. to-regex-range@5.0.1:
  2383. dependencies:
  2384. is-number: 7.0.0
  2385. totalist@3.0.1: {}
  2386. tough-cookie@4.1.3:
  2387. dependencies:
  2388. psl: 1.9.0
  2389. punycode: 2.3.1
  2390. universalify: 0.2.0
  2391. url-parse: 1.5.10
  2392. tr46@5.0.0:
  2393. dependencies:
  2394. punycode: 2.3.1
  2395. tslib@2.6.2: {}
  2396. type-check@0.4.0:
  2397. dependencies:
  2398. prelude-ls: 1.2.1
  2399. type-fest@0.20.2: {}
  2400. universalify@0.2.0: {}
  2401. universalify@2.0.1: {}
  2402. unplugin-fonts@1.1.1(vite@5.2.10(sass@1.75.0)):
  2403. dependencies:
  2404. fast-glob: 3.3.2
  2405. unplugin: 1.10.1
  2406. vite: 5.2.10(sass@1.75.0)
  2407. unplugin-vue-components@0.26.0(@babel/parser@7.24.4)(rollup@4.17.0)(vue@3.4.25):
  2408. dependencies:
  2409. '@antfu/utils': 0.7.7
  2410. '@rollup/pluginutils': 5.1.0(rollup@4.17.0)
  2411. chokidar: 3.6.0
  2412. debug: 4.3.4
  2413. fast-glob: 3.3.2
  2414. local-pkg: 0.4.3
  2415. magic-string: 0.30.10
  2416. minimatch: 9.0.4
  2417. resolve: 1.22.8
  2418. unplugin: 1.10.1
  2419. vue: 3.4.25
  2420. optionalDependencies:
  2421. '@babel/parser': 7.24.4
  2422. transitivePeerDependencies:
  2423. - rollup
  2424. - supports-color
  2425. unplugin@1.10.1:
  2426. dependencies:
  2427. acorn: 8.11.3
  2428. chokidar: 3.6.0
  2429. webpack-sources: 3.2.3
  2430. webpack-virtual-modules: 0.6.1
  2431. upath@2.0.1: {}
  2432. update-browserslist-db@1.0.13(browserslist@4.23.0):
  2433. dependencies:
  2434. browserslist: 4.23.0
  2435. escalade: 3.1.2
  2436. picocolors: 1.0.0
  2437. uri-js@4.4.1:
  2438. dependencies:
  2439. punycode: 2.3.1
  2440. url-parse@1.5.10:
  2441. dependencies:
  2442. querystringify: 2.2.0
  2443. requires-port: 1.0.0
  2444. util-deprecate@1.0.2: {}
  2445. vite-hot-client@0.2.3(vite@5.2.10(sass@1.75.0)):
  2446. dependencies:
  2447. vite: 5.2.10(sass@1.75.0)
  2448. vite-plugin-inspect@0.8.4(rollup@4.17.0)(vite@5.2.10(sass@1.75.0)):
  2449. dependencies:
  2450. '@antfu/utils': 0.7.7
  2451. '@rollup/pluginutils': 5.1.0(rollup@4.17.0)
  2452. debug: 4.3.4
  2453. error-stack-parser-es: 0.1.1
  2454. fs-extra: 11.2.0
  2455. open: 10.1.0
  2456. perfect-debounce: 1.0.0
  2457. picocolors: 1.0.0
  2458. sirv: 2.0.4
  2459. vite: 5.2.10(sass@1.75.0)
  2460. transitivePeerDependencies:
  2461. - rollup
  2462. - supports-color
  2463. vite-plugin-vue-devtools@7.1.3(rollup@4.17.0)(vite@5.2.10(sass@1.75.0))(vue@3.4.25):
  2464. dependencies:
  2465. '@vue/devtools-core': 7.1.3(vite@5.2.10(sass@1.75.0))(vue@3.4.25)
  2466. '@vue/devtools-kit': 7.1.3(vue@3.4.25)
  2467. '@vue/devtools-shared': 7.1.3
  2468. execa: 8.0.1
  2469. sirv: 2.0.4
  2470. vite: 5.2.10(sass@1.75.0)
  2471. vite-plugin-inspect: 0.8.4(rollup@4.17.0)(vite@5.2.10(sass@1.75.0))
  2472. vite-plugin-vue-inspector: 5.0.1(vite@5.2.10(sass@1.75.0))
  2473. transitivePeerDependencies:
  2474. - '@nuxt/kit'
  2475. - rollup
  2476. - supports-color
  2477. - vue
  2478. vite-plugin-vue-inspector@5.0.1(vite@5.2.10(sass@1.75.0)):
  2479. dependencies:
  2480. '@babel/core': 7.24.4
  2481. '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.4)
  2482. '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.4)
  2483. '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)
  2484. '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.4)
  2485. '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.4)
  2486. '@vue/compiler-dom': 3.4.25
  2487. kolorist: 1.8.0
  2488. magic-string: 0.30.10
  2489. vite: 5.2.10(sass@1.75.0)
  2490. transitivePeerDependencies:
  2491. - supports-color
  2492. vite-plugin-vuetify@2.0.3(vite@5.2.10(sass@1.75.0))(vue@3.4.25)(vuetify@3.5.17):
  2493. dependencies:
  2494. '@vuetify/loader-shared': 2.0.3(vue@3.4.25)(vuetify@3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25))
  2495. debug: 4.3.4
  2496. upath: 2.0.1
  2497. vite: 5.2.10(sass@1.75.0)
  2498. vue: 3.4.25
  2499. vuetify: 3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25)
  2500. transitivePeerDependencies:
  2501. - supports-color
  2502. vite@5.2.10(sass@1.75.0):
  2503. dependencies:
  2504. esbuild: 0.20.2
  2505. postcss: 8.4.38
  2506. rollup: 4.17.0
  2507. optionalDependencies:
  2508. fsevents: 2.3.3
  2509. sass: 1.75.0
  2510. vue-demi@0.14.7(vue@3.4.25):
  2511. dependencies:
  2512. vue: 3.4.25
  2513. vue-eslint-parser@9.4.2(eslint@8.57.0):
  2514. dependencies:
  2515. debug: 4.3.4
  2516. eslint: 8.57.0
  2517. eslint-scope: 7.2.2
  2518. eslint-visitor-keys: 3.4.3
  2519. espree: 9.6.1
  2520. esquery: 1.5.0
  2521. lodash: 4.17.21
  2522. semver: 7.6.0
  2523. transitivePeerDependencies:
  2524. - supports-color
  2525. vue-router@4.3.2(vue@3.4.25):
  2526. dependencies:
  2527. '@vue/devtools-api': 6.6.1
  2528. vue: 3.4.25
  2529. vue@3.4.25:
  2530. dependencies:
  2531. '@vue/compiler-dom': 3.4.25
  2532. '@vue/compiler-sfc': 3.4.25
  2533. '@vue/runtime-dom': 3.4.25
  2534. '@vue/server-renderer': 3.4.25(vue@3.4.25)
  2535. '@vue/shared': 3.4.25
  2536. vuetify@3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25):
  2537. dependencies:
  2538. vue: 3.4.25
  2539. optionalDependencies:
  2540. vite-plugin-vuetify: 2.0.3(vite@5.2.10(sass@1.75.0))(vue@3.4.25)(vuetify@3.5.17)
  2541. w3c-xmlserializer@5.0.0:
  2542. dependencies:
  2543. xml-name-validator: 5.0.0
  2544. webidl-conversions@7.0.0: {}
  2545. webpack-sources@3.2.3: {}
  2546. webpack-virtual-modules@0.6.1: {}
  2547. whatwg-encoding@3.1.1:
  2548. dependencies:
  2549. iconv-lite: 0.6.3
  2550. whatwg-mimetype@4.0.0: {}
  2551. whatwg-url@14.0.0:
  2552. dependencies:
  2553. tr46: 5.0.0
  2554. webidl-conversions: 7.0.0
  2555. which@2.0.2:
  2556. dependencies:
  2557. isexe: 2.0.0
  2558. word-wrap@1.2.5: {}
  2559. wrappy@1.0.2: {}
  2560. ws@8.17.0: {}
  2561. xml-name-validator@4.0.0: {}
  2562. xml-name-validator@5.0.0: {}
  2563. xmlchars@2.2.0: {}
  2564. yallist@3.1.1: {}
  2565. yallist@4.0.0: {}
  2566. yocto-queue@0.1.0: {}