package-lock.json 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216
  1. {
  2. "name": "gh-ui",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "gh-ui",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "@element-plus/icons-vue": "^2.3.1",
  12. "element-plus": "^2.9.3",
  13. "highlight.js": "^11.11.1",
  14. "nprogress": "^0.2.0",
  15. "vue": "^3.5.13",
  16. "vue-router": "^4.5.0"
  17. },
  18. "devDependencies": {
  19. "@vitejs/plugin-vue": "^5.2.1",
  20. "concurrently": "^9.1.2",
  21. "nodemon": "^3.1.9",
  22. "sass": "^1.83.4",
  23. "unplugin-auto-import": "^19.0.0",
  24. "unplugin-vue-components": "^28.0.0",
  25. "unplugin-vue-setup-extend-plus": "^1.0.1",
  26. "vite": "^6.0.5"
  27. }
  28. },
  29. "node_modules/@antfu/utils": {
  30. "version": "0.7.10",
  31. "resolved": "https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.10.tgz",
  32. "integrity": "sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==",
  33. "dev": true,
  34. "license": "MIT",
  35. "funding": {
  36. "url": "https://github.com/sponsors/antfu"
  37. }
  38. },
  39. "node_modules/@babel/helper-string-parser": {
  40. "version": "7.25.9",
  41. "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
  42. "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
  43. "license": "MIT",
  44. "engines": {
  45. "node": ">=6.9.0"
  46. }
  47. },
  48. "node_modules/@babel/helper-validator-identifier": {
  49. "version": "7.25.9",
  50. "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
  51. "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
  52. "license": "MIT",
  53. "engines": {
  54. "node": ">=6.9.0"
  55. }
  56. },
  57. "node_modules/@babel/parser": {
  58. "version": "7.26.5",
  59. "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.26.5.tgz",
  60. "integrity": "sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==",
  61. "license": "MIT",
  62. "dependencies": {
  63. "@babel/types": "^7.26.5"
  64. },
  65. "bin": {
  66. "parser": "bin/babel-parser.js"
  67. },
  68. "engines": {
  69. "node": ">=6.0.0"
  70. }
  71. },
  72. "node_modules/@babel/types": {
  73. "version": "7.26.5",
  74. "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.26.5.tgz",
  75. "integrity": "sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==",
  76. "license": "MIT",
  77. "dependencies": {
  78. "@babel/helper-string-parser": "^7.25.9",
  79. "@babel/helper-validator-identifier": "^7.25.9"
  80. },
  81. "engines": {
  82. "node": ">=6.9.0"
  83. }
  84. },
  85. "node_modules/@ctrl/tinycolor": {
  86. "version": "3.6.1",
  87. "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz",
  88. "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==",
  89. "license": "MIT",
  90. "engines": {
  91. "node": ">=10"
  92. }
  93. },
  94. "node_modules/@element-plus/icons-vue": {
  95. "version": "2.3.1",
  96. "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.1.tgz",
  97. "integrity": "sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==",
  98. "peerDependencies": {
  99. "vue": "^3.2.0"
  100. }
  101. },
  102. "node_modules/@esbuild/aix-ppc64": {
  103. "version": "0.24.2",
  104. "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz",
  105. "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==",
  106. "cpu": [
  107. "ppc64"
  108. ],
  109. "dev": true,
  110. "license": "MIT",
  111. "optional": true,
  112. "os": [
  113. "aix"
  114. ],
  115. "engines": {
  116. "node": ">=18"
  117. }
  118. },
  119. "node_modules/@esbuild/android-arm": {
  120. "version": "0.24.2",
  121. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.24.2.tgz",
  122. "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==",
  123. "cpu": [
  124. "arm"
  125. ],
  126. "dev": true,
  127. "license": "MIT",
  128. "optional": true,
  129. "os": [
  130. "android"
  131. ],
  132. "engines": {
  133. "node": ">=18"
  134. }
  135. },
  136. "node_modules/@esbuild/android-arm64": {
  137. "version": "0.24.2",
  138. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz",
  139. "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==",
  140. "cpu": [
  141. "arm64"
  142. ],
  143. "dev": true,
  144. "license": "MIT",
  145. "optional": true,
  146. "os": [
  147. "android"
  148. ],
  149. "engines": {
  150. "node": ">=18"
  151. }
  152. },
  153. "node_modules/@esbuild/android-x64": {
  154. "version": "0.24.2",
  155. "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.24.2.tgz",
  156. "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==",
  157. "cpu": [
  158. "x64"
  159. ],
  160. "dev": true,
  161. "license": "MIT",
  162. "optional": true,
  163. "os": [
  164. "android"
  165. ],
  166. "engines": {
  167. "node": ">=18"
  168. }
  169. },
  170. "node_modules/@esbuild/darwin-arm64": {
  171. "version": "0.24.2",
  172. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz",
  173. "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==",
  174. "cpu": [
  175. "arm64"
  176. ],
  177. "dev": true,
  178. "license": "MIT",
  179. "optional": true,
  180. "os": [
  181. "darwin"
  182. ],
  183. "engines": {
  184. "node": ">=18"
  185. }
  186. },
  187. "node_modules/@esbuild/darwin-x64": {
  188. "version": "0.24.2",
  189. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz",
  190. "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==",
  191. "cpu": [
  192. "x64"
  193. ],
  194. "dev": true,
  195. "license": "MIT",
  196. "optional": true,
  197. "os": [
  198. "darwin"
  199. ],
  200. "engines": {
  201. "node": ">=18"
  202. }
  203. },
  204. "node_modules/@esbuild/freebsd-arm64": {
  205. "version": "0.24.2",
  206. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz",
  207. "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==",
  208. "cpu": [
  209. "arm64"
  210. ],
  211. "dev": true,
  212. "license": "MIT",
  213. "optional": true,
  214. "os": [
  215. "freebsd"
  216. ],
  217. "engines": {
  218. "node": ">=18"
  219. }
  220. },
  221. "node_modules/@esbuild/freebsd-x64": {
  222. "version": "0.24.2",
  223. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz",
  224. "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==",
  225. "cpu": [
  226. "x64"
  227. ],
  228. "dev": true,
  229. "license": "MIT",
  230. "optional": true,
  231. "os": [
  232. "freebsd"
  233. ],
  234. "engines": {
  235. "node": ">=18"
  236. }
  237. },
  238. "node_modules/@esbuild/linux-arm": {
  239. "version": "0.24.2",
  240. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz",
  241. "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==",
  242. "cpu": [
  243. "arm"
  244. ],
  245. "dev": true,
  246. "license": "MIT",
  247. "optional": true,
  248. "os": [
  249. "linux"
  250. ],
  251. "engines": {
  252. "node": ">=18"
  253. }
  254. },
  255. "node_modules/@esbuild/linux-arm64": {
  256. "version": "0.24.2",
  257. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz",
  258. "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==",
  259. "cpu": [
  260. "arm64"
  261. ],
  262. "dev": true,
  263. "license": "MIT",
  264. "optional": true,
  265. "os": [
  266. "linux"
  267. ],
  268. "engines": {
  269. "node": ">=18"
  270. }
  271. },
  272. "node_modules/@esbuild/linux-ia32": {
  273. "version": "0.24.2",
  274. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz",
  275. "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==",
  276. "cpu": [
  277. "ia32"
  278. ],
  279. "dev": true,
  280. "license": "MIT",
  281. "optional": true,
  282. "os": [
  283. "linux"
  284. ],
  285. "engines": {
  286. "node": ">=18"
  287. }
  288. },
  289. "node_modules/@esbuild/linux-loong64": {
  290. "version": "0.24.2",
  291. "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz",
  292. "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==",
  293. "cpu": [
  294. "loong64"
  295. ],
  296. "dev": true,
  297. "license": "MIT",
  298. "optional": true,
  299. "os": [
  300. "linux"
  301. ],
  302. "engines": {
  303. "node": ">=18"
  304. }
  305. },
  306. "node_modules/@esbuild/linux-mips64el": {
  307. "version": "0.24.2",
  308. "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz",
  309. "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==",
  310. "cpu": [
  311. "mips64el"
  312. ],
  313. "dev": true,
  314. "license": "MIT",
  315. "optional": true,
  316. "os": [
  317. "linux"
  318. ],
  319. "engines": {
  320. "node": ">=18"
  321. }
  322. },
  323. "node_modules/@esbuild/linux-ppc64": {
  324. "version": "0.24.2",
  325. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz",
  326. "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==",
  327. "cpu": [
  328. "ppc64"
  329. ],
  330. "dev": true,
  331. "license": "MIT",
  332. "optional": true,
  333. "os": [
  334. "linux"
  335. ],
  336. "engines": {
  337. "node": ">=18"
  338. }
  339. },
  340. "node_modules/@esbuild/linux-riscv64": {
  341. "version": "0.24.2",
  342. "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz",
  343. "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==",
  344. "cpu": [
  345. "riscv64"
  346. ],
  347. "dev": true,
  348. "license": "MIT",
  349. "optional": true,
  350. "os": [
  351. "linux"
  352. ],
  353. "engines": {
  354. "node": ">=18"
  355. }
  356. },
  357. "node_modules/@esbuild/linux-s390x": {
  358. "version": "0.24.2",
  359. "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz",
  360. "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==",
  361. "cpu": [
  362. "s390x"
  363. ],
  364. "dev": true,
  365. "license": "MIT",
  366. "optional": true,
  367. "os": [
  368. "linux"
  369. ],
  370. "engines": {
  371. "node": ">=18"
  372. }
  373. },
  374. "node_modules/@esbuild/linux-x64": {
  375. "version": "0.24.2",
  376. "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz",
  377. "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==",
  378. "cpu": [
  379. "x64"
  380. ],
  381. "dev": true,
  382. "license": "MIT",
  383. "optional": true,
  384. "os": [
  385. "linux"
  386. ],
  387. "engines": {
  388. "node": ">=18"
  389. }
  390. },
  391. "node_modules/@esbuild/netbsd-arm64": {
  392. "version": "0.24.2",
  393. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz",
  394. "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==",
  395. "cpu": [
  396. "arm64"
  397. ],
  398. "dev": true,
  399. "license": "MIT",
  400. "optional": true,
  401. "os": [
  402. "netbsd"
  403. ],
  404. "engines": {
  405. "node": ">=18"
  406. }
  407. },
  408. "node_modules/@esbuild/netbsd-x64": {
  409. "version": "0.24.2",
  410. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz",
  411. "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==",
  412. "cpu": [
  413. "x64"
  414. ],
  415. "dev": true,
  416. "license": "MIT",
  417. "optional": true,
  418. "os": [
  419. "netbsd"
  420. ],
  421. "engines": {
  422. "node": ">=18"
  423. }
  424. },
  425. "node_modules/@esbuild/openbsd-arm64": {
  426. "version": "0.24.2",
  427. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz",
  428. "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==",
  429. "cpu": [
  430. "arm64"
  431. ],
  432. "dev": true,
  433. "license": "MIT",
  434. "optional": true,
  435. "os": [
  436. "openbsd"
  437. ],
  438. "engines": {
  439. "node": ">=18"
  440. }
  441. },
  442. "node_modules/@esbuild/openbsd-x64": {
  443. "version": "0.24.2",
  444. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz",
  445. "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==",
  446. "cpu": [
  447. "x64"
  448. ],
  449. "dev": true,
  450. "license": "MIT",
  451. "optional": true,
  452. "os": [
  453. "openbsd"
  454. ],
  455. "engines": {
  456. "node": ">=18"
  457. }
  458. },
  459. "node_modules/@esbuild/sunos-x64": {
  460. "version": "0.24.2",
  461. "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz",
  462. "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==",
  463. "cpu": [
  464. "x64"
  465. ],
  466. "dev": true,
  467. "license": "MIT",
  468. "optional": true,
  469. "os": [
  470. "sunos"
  471. ],
  472. "engines": {
  473. "node": ">=18"
  474. }
  475. },
  476. "node_modules/@esbuild/win32-arm64": {
  477. "version": "0.24.2",
  478. "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz",
  479. "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==",
  480. "cpu": [
  481. "arm64"
  482. ],
  483. "dev": true,
  484. "license": "MIT",
  485. "optional": true,
  486. "os": [
  487. "win32"
  488. ],
  489. "engines": {
  490. "node": ">=18"
  491. }
  492. },
  493. "node_modules/@esbuild/win32-ia32": {
  494. "version": "0.24.2",
  495. "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz",
  496. "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==",
  497. "cpu": [
  498. "ia32"
  499. ],
  500. "dev": true,
  501. "license": "MIT",
  502. "optional": true,
  503. "os": [
  504. "win32"
  505. ],
  506. "engines": {
  507. "node": ">=18"
  508. }
  509. },
  510. "node_modules/@esbuild/win32-x64": {
  511. "version": "0.24.2",
  512. "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz",
  513. "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==",
  514. "cpu": [
  515. "x64"
  516. ],
  517. "dev": true,
  518. "license": "MIT",
  519. "optional": true,
  520. "os": [
  521. "win32"
  522. ],
  523. "engines": {
  524. "node": ">=18"
  525. }
  526. },
  527. "node_modules/@floating-ui/core": {
  528. "version": "1.6.9",
  529. "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.6.9.tgz",
  530. "integrity": "sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==",
  531. "license": "MIT",
  532. "dependencies": {
  533. "@floating-ui/utils": "^0.2.9"
  534. }
  535. },
  536. "node_modules/@floating-ui/dom": {
  537. "version": "1.6.13",
  538. "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.6.13.tgz",
  539. "integrity": "sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==",
  540. "license": "MIT",
  541. "dependencies": {
  542. "@floating-ui/core": "^1.6.0",
  543. "@floating-ui/utils": "^0.2.9"
  544. }
  545. },
  546. "node_modules/@floating-ui/utils": {
  547. "version": "0.2.9",
  548. "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.9.tgz",
  549. "integrity": "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==",
  550. "license": "MIT"
  551. },
  552. "node_modules/@jridgewell/gen-mapping": {
  553. "version": "0.3.8",
  554. "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
  555. "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
  556. "dev": true,
  557. "optional": true,
  558. "peer": true,
  559. "dependencies": {
  560. "@jridgewell/set-array": "^1.2.1",
  561. "@jridgewell/sourcemap-codec": "^1.4.10",
  562. "@jridgewell/trace-mapping": "^0.3.24"
  563. },
  564. "engines": {
  565. "node": ">=6.0.0"
  566. }
  567. },
  568. "node_modules/@jridgewell/resolve-uri": {
  569. "version": "3.1.2",
  570. "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  571. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  572. "dev": true,
  573. "optional": true,
  574. "peer": true,
  575. "engines": {
  576. "node": ">=6.0.0"
  577. }
  578. },
  579. "node_modules/@jridgewell/set-array": {
  580. "version": "1.2.1",
  581. "resolved": "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.2.1.tgz",
  582. "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
  583. "dev": true,
  584. "optional": true,
  585. "peer": true,
  586. "engines": {
  587. "node": ">=6.0.0"
  588. }
  589. },
  590. "node_modules/@jridgewell/source-map": {
  591. "version": "0.3.6",
  592. "resolved": "https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.6.tgz",
  593. "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
  594. "dev": true,
  595. "optional": true,
  596. "peer": true,
  597. "dependencies": {
  598. "@jridgewell/gen-mapping": "^0.3.5",
  599. "@jridgewell/trace-mapping": "^0.3.25"
  600. }
  601. },
  602. "node_modules/@jridgewell/sourcemap-codec": {
  603. "version": "1.5.0",
  604. "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
  605. "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
  606. "license": "MIT"
  607. },
  608. "node_modules/@jridgewell/trace-mapping": {
  609. "version": "0.3.25",
  610. "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
  611. "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
  612. "dev": true,
  613. "optional": true,
  614. "peer": true,
  615. "dependencies": {
  616. "@jridgewell/resolve-uri": "^3.1.0",
  617. "@jridgewell/sourcemap-codec": "^1.4.14"
  618. }
  619. },
  620. "node_modules/@nodelib/fs.scandir": {
  621. "version": "2.1.5",
  622. "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
  623. "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
  624. "dev": true,
  625. "license": "MIT",
  626. "dependencies": {
  627. "@nodelib/fs.stat": "2.0.5",
  628. "run-parallel": "^1.1.9"
  629. },
  630. "engines": {
  631. "node": ">= 8"
  632. }
  633. },
  634. "node_modules/@nodelib/fs.stat": {
  635. "version": "2.0.5",
  636. "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
  637. "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
  638. "dev": true,
  639. "license": "MIT",
  640. "engines": {
  641. "node": ">= 8"
  642. }
  643. },
  644. "node_modules/@nodelib/fs.walk": {
  645. "version": "1.2.8",
  646. "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
  647. "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
  648. "dev": true,
  649. "license": "MIT",
  650. "dependencies": {
  651. "@nodelib/fs.scandir": "2.1.5",
  652. "fastq": "^1.6.0"
  653. },
  654. "engines": {
  655. "node": ">= 8"
  656. }
  657. },
  658. "node_modules/@parcel/watcher": {
  659. "version": "2.5.0",
  660. "resolved": "https://registry.npmmirror.com/@parcel/watcher/-/watcher-2.5.0.tgz",
  661. "integrity": "sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==",
  662. "dev": true,
  663. "hasInstallScript": true,
  664. "license": "MIT",
  665. "optional": true,
  666. "dependencies": {
  667. "detect-libc": "^1.0.3",
  668. "is-glob": "^4.0.3",
  669. "micromatch": "^4.0.5",
  670. "node-addon-api": "^7.0.0"
  671. },
  672. "engines": {
  673. "node": ">= 10.0.0"
  674. },
  675. "funding": {
  676. "type": "opencollective",
  677. "url": "https://opencollective.com/parcel"
  678. },
  679. "optionalDependencies": {
  680. "@parcel/watcher-android-arm64": "2.5.0",
  681. "@parcel/watcher-darwin-arm64": "2.5.0",
  682. "@parcel/watcher-darwin-x64": "2.5.0",
  683. "@parcel/watcher-freebsd-x64": "2.5.0",
  684. "@parcel/watcher-linux-arm-glibc": "2.5.0",
  685. "@parcel/watcher-linux-arm-musl": "2.5.0",
  686. "@parcel/watcher-linux-arm64-glibc": "2.5.0",
  687. "@parcel/watcher-linux-arm64-musl": "2.5.0",
  688. "@parcel/watcher-linux-x64-glibc": "2.5.0",
  689. "@parcel/watcher-linux-x64-musl": "2.5.0",
  690. "@parcel/watcher-win32-arm64": "2.5.0",
  691. "@parcel/watcher-win32-ia32": "2.5.0",
  692. "@parcel/watcher-win32-x64": "2.5.0"
  693. }
  694. },
  695. "node_modules/@parcel/watcher-android-arm64": {
  696. "version": "2.5.0",
  697. "resolved": "https://registry.npmmirror.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz",
  698. "integrity": "sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==",
  699. "cpu": [
  700. "arm64"
  701. ],
  702. "dev": true,
  703. "license": "MIT",
  704. "optional": true,
  705. "os": [
  706. "android"
  707. ],
  708. "engines": {
  709. "node": ">= 10.0.0"
  710. },
  711. "funding": {
  712. "type": "opencollective",
  713. "url": "https://opencollective.com/parcel"
  714. }
  715. },
  716. "node_modules/@parcel/watcher-darwin-arm64": {
  717. "version": "2.5.0",
  718. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz",
  719. "integrity": "sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==",
  720. "cpu": [
  721. "arm64"
  722. ],
  723. "dev": true,
  724. "license": "MIT",
  725. "optional": true,
  726. "os": [
  727. "darwin"
  728. ],
  729. "engines": {
  730. "node": ">= 10.0.0"
  731. },
  732. "funding": {
  733. "type": "opencollective",
  734. "url": "https://opencollective.com/parcel"
  735. }
  736. },
  737. "node_modules/@parcel/watcher-darwin-x64": {
  738. "version": "2.5.0",
  739. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz",
  740. "integrity": "sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==",
  741. "cpu": [
  742. "x64"
  743. ],
  744. "dev": true,
  745. "license": "MIT",
  746. "optional": true,
  747. "os": [
  748. "darwin"
  749. ],
  750. "engines": {
  751. "node": ">= 10.0.0"
  752. },
  753. "funding": {
  754. "type": "opencollective",
  755. "url": "https://opencollective.com/parcel"
  756. }
  757. },
  758. "node_modules/@parcel/watcher-freebsd-x64": {
  759. "version": "2.5.0",
  760. "resolved": "https://registry.npmmirror.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz",
  761. "integrity": "sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==",
  762. "cpu": [
  763. "x64"
  764. ],
  765. "dev": true,
  766. "license": "MIT",
  767. "optional": true,
  768. "os": [
  769. "freebsd"
  770. ],
  771. "engines": {
  772. "node": ">= 10.0.0"
  773. },
  774. "funding": {
  775. "type": "opencollective",
  776. "url": "https://opencollective.com/parcel"
  777. }
  778. },
  779. "node_modules/@parcel/watcher-linux-arm-glibc": {
  780. "version": "2.5.0",
  781. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz",
  782. "integrity": "sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==",
  783. "cpu": [
  784. "arm"
  785. ],
  786. "dev": true,
  787. "license": "MIT",
  788. "optional": true,
  789. "os": [
  790. "linux"
  791. ],
  792. "engines": {
  793. "node": ">= 10.0.0"
  794. },
  795. "funding": {
  796. "type": "opencollective",
  797. "url": "https://opencollective.com/parcel"
  798. }
  799. },
  800. "node_modules/@parcel/watcher-linux-arm-musl": {
  801. "version": "2.5.0",
  802. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz",
  803. "integrity": "sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==",
  804. "cpu": [
  805. "arm"
  806. ],
  807. "dev": true,
  808. "license": "MIT",
  809. "optional": true,
  810. "os": [
  811. "linux"
  812. ],
  813. "engines": {
  814. "node": ">= 10.0.0"
  815. },
  816. "funding": {
  817. "type": "opencollective",
  818. "url": "https://opencollective.com/parcel"
  819. }
  820. },
  821. "node_modules/@parcel/watcher-linux-arm64-glibc": {
  822. "version": "2.5.0",
  823. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz",
  824. "integrity": "sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==",
  825. "cpu": [
  826. "arm64"
  827. ],
  828. "dev": true,
  829. "license": "MIT",
  830. "optional": true,
  831. "os": [
  832. "linux"
  833. ],
  834. "engines": {
  835. "node": ">= 10.0.0"
  836. },
  837. "funding": {
  838. "type": "opencollective",
  839. "url": "https://opencollective.com/parcel"
  840. }
  841. },
  842. "node_modules/@parcel/watcher-linux-arm64-musl": {
  843. "version": "2.5.0",
  844. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz",
  845. "integrity": "sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==",
  846. "cpu": [
  847. "arm64"
  848. ],
  849. "dev": true,
  850. "license": "MIT",
  851. "optional": true,
  852. "os": [
  853. "linux"
  854. ],
  855. "engines": {
  856. "node": ">= 10.0.0"
  857. },
  858. "funding": {
  859. "type": "opencollective",
  860. "url": "https://opencollective.com/parcel"
  861. }
  862. },
  863. "node_modules/@parcel/watcher-linux-x64-glibc": {
  864. "version": "2.5.0",
  865. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz",
  866. "integrity": "sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==",
  867. "cpu": [
  868. "x64"
  869. ],
  870. "dev": true,
  871. "license": "MIT",
  872. "optional": true,
  873. "os": [
  874. "linux"
  875. ],
  876. "engines": {
  877. "node": ">= 10.0.0"
  878. },
  879. "funding": {
  880. "type": "opencollective",
  881. "url": "https://opencollective.com/parcel"
  882. }
  883. },
  884. "node_modules/@parcel/watcher-linux-x64-musl": {
  885. "version": "2.5.0",
  886. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz",
  887. "integrity": "sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==",
  888. "cpu": [
  889. "x64"
  890. ],
  891. "dev": true,
  892. "license": "MIT",
  893. "optional": true,
  894. "os": [
  895. "linux"
  896. ],
  897. "engines": {
  898. "node": ">= 10.0.0"
  899. },
  900. "funding": {
  901. "type": "opencollective",
  902. "url": "https://opencollective.com/parcel"
  903. }
  904. },
  905. "node_modules/@parcel/watcher-win32-arm64": {
  906. "version": "2.5.0",
  907. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz",
  908. "integrity": "sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==",
  909. "cpu": [
  910. "arm64"
  911. ],
  912. "dev": true,
  913. "license": "MIT",
  914. "optional": true,
  915. "os": [
  916. "win32"
  917. ],
  918. "engines": {
  919. "node": ">= 10.0.0"
  920. },
  921. "funding": {
  922. "type": "opencollective",
  923. "url": "https://opencollective.com/parcel"
  924. }
  925. },
  926. "node_modules/@parcel/watcher-win32-ia32": {
  927. "version": "2.5.0",
  928. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz",
  929. "integrity": "sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==",
  930. "cpu": [
  931. "ia32"
  932. ],
  933. "dev": true,
  934. "license": "MIT",
  935. "optional": true,
  936. "os": [
  937. "win32"
  938. ],
  939. "engines": {
  940. "node": ">= 10.0.0"
  941. },
  942. "funding": {
  943. "type": "opencollective",
  944. "url": "https://opencollective.com/parcel"
  945. }
  946. },
  947. "node_modules/@parcel/watcher-win32-x64": {
  948. "version": "2.5.0",
  949. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz",
  950. "integrity": "sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==",
  951. "cpu": [
  952. "x64"
  953. ],
  954. "dev": true,
  955. "license": "MIT",
  956. "optional": true,
  957. "os": [
  958. "win32"
  959. ],
  960. "engines": {
  961. "node": ">= 10.0.0"
  962. },
  963. "funding": {
  964. "type": "opencollective",
  965. "url": "https://opencollective.com/parcel"
  966. }
  967. },
  968. "node_modules/@popperjs/core": {
  969. "name": "@sxzz/popperjs-es",
  970. "version": "2.11.7",
  971. "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz",
  972. "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==",
  973. "license": "MIT",
  974. "funding": {
  975. "type": "opencollective",
  976. "url": "https://opencollective.com/popperjs"
  977. }
  978. },
  979. "node_modules/@rollup/pluginutils": {
  980. "version": "5.1.4",
  981. "resolved": "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.1.4.tgz",
  982. "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==",
  983. "dev": true,
  984. "license": "MIT",
  985. "dependencies": {
  986. "@types/estree": "^1.0.0",
  987. "estree-walker": "^2.0.2",
  988. "picomatch": "^4.0.2"
  989. },
  990. "engines": {
  991. "node": ">=14.0.0"
  992. },
  993. "peerDependencies": {
  994. "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
  995. },
  996. "peerDependenciesMeta": {
  997. "rollup": {
  998. "optional": true
  999. }
  1000. }
  1001. },
  1002. "node_modules/@rollup/pluginutils/node_modules/picomatch": {
  1003. "version": "4.0.2",
  1004. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.2.tgz",
  1005. "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
  1006. "dev": true,
  1007. "license": "MIT",
  1008. "engines": {
  1009. "node": ">=12"
  1010. },
  1011. "funding": {
  1012. "url": "https://github.com/sponsors/jonschlinkert"
  1013. }
  1014. },
  1015. "node_modules/@rollup/rollup-android-arm-eabi": {
  1016. "version": "4.30.1",
  1017. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.30.1.tgz",
  1018. "integrity": "sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==",
  1019. "cpu": [
  1020. "arm"
  1021. ],
  1022. "dev": true,
  1023. "license": "MIT",
  1024. "optional": true,
  1025. "os": [
  1026. "android"
  1027. ]
  1028. },
  1029. "node_modules/@rollup/rollup-android-arm64": {
  1030. "version": "4.30.1",
  1031. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.30.1.tgz",
  1032. "integrity": "sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==",
  1033. "cpu": [
  1034. "arm64"
  1035. ],
  1036. "dev": true,
  1037. "license": "MIT",
  1038. "optional": true,
  1039. "os": [
  1040. "android"
  1041. ]
  1042. },
  1043. "node_modules/@rollup/rollup-darwin-arm64": {
  1044. "version": "4.30.1",
  1045. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.30.1.tgz",
  1046. "integrity": "sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==",
  1047. "cpu": [
  1048. "arm64"
  1049. ],
  1050. "dev": true,
  1051. "license": "MIT",
  1052. "optional": true,
  1053. "os": [
  1054. "darwin"
  1055. ]
  1056. },
  1057. "node_modules/@rollup/rollup-darwin-x64": {
  1058. "version": "4.30.1",
  1059. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.30.1.tgz",
  1060. "integrity": "sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==",
  1061. "cpu": [
  1062. "x64"
  1063. ],
  1064. "dev": true,
  1065. "license": "MIT",
  1066. "optional": true,
  1067. "os": [
  1068. "darwin"
  1069. ]
  1070. },
  1071. "node_modules/@rollup/rollup-freebsd-arm64": {
  1072. "version": "4.30.1",
  1073. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.30.1.tgz",
  1074. "integrity": "sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==",
  1075. "cpu": [
  1076. "arm64"
  1077. ],
  1078. "dev": true,
  1079. "license": "MIT",
  1080. "optional": true,
  1081. "os": [
  1082. "freebsd"
  1083. ]
  1084. },
  1085. "node_modules/@rollup/rollup-freebsd-x64": {
  1086. "version": "4.30.1",
  1087. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.30.1.tgz",
  1088. "integrity": "sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==",
  1089. "cpu": [
  1090. "x64"
  1091. ],
  1092. "dev": true,
  1093. "license": "MIT",
  1094. "optional": true,
  1095. "os": [
  1096. "freebsd"
  1097. ]
  1098. },
  1099. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  1100. "version": "4.30.1",
  1101. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.30.1.tgz",
  1102. "integrity": "sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==",
  1103. "cpu": [
  1104. "arm"
  1105. ],
  1106. "dev": true,
  1107. "license": "MIT",
  1108. "optional": true,
  1109. "os": [
  1110. "linux"
  1111. ]
  1112. },
  1113. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  1114. "version": "4.30.1",
  1115. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.30.1.tgz",
  1116. "integrity": "sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==",
  1117. "cpu": [
  1118. "arm"
  1119. ],
  1120. "dev": true,
  1121. "license": "MIT",
  1122. "optional": true,
  1123. "os": [
  1124. "linux"
  1125. ]
  1126. },
  1127. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  1128. "version": "4.30.1",
  1129. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.30.1.tgz",
  1130. "integrity": "sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==",
  1131. "cpu": [
  1132. "arm64"
  1133. ],
  1134. "dev": true,
  1135. "license": "MIT",
  1136. "optional": true,
  1137. "os": [
  1138. "linux"
  1139. ]
  1140. },
  1141. "node_modules/@rollup/rollup-linux-arm64-musl": {
  1142. "version": "4.30.1",
  1143. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.30.1.tgz",
  1144. "integrity": "sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==",
  1145. "cpu": [
  1146. "arm64"
  1147. ],
  1148. "dev": true,
  1149. "license": "MIT",
  1150. "optional": true,
  1151. "os": [
  1152. "linux"
  1153. ]
  1154. },
  1155. "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
  1156. "version": "4.30.1",
  1157. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.30.1.tgz",
  1158. "integrity": "sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==",
  1159. "cpu": [
  1160. "loong64"
  1161. ],
  1162. "dev": true,
  1163. "license": "MIT",
  1164. "optional": true,
  1165. "os": [
  1166. "linux"
  1167. ]
  1168. },
  1169. "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
  1170. "version": "4.30.1",
  1171. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.30.1.tgz",
  1172. "integrity": "sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==",
  1173. "cpu": [
  1174. "ppc64"
  1175. ],
  1176. "dev": true,
  1177. "license": "MIT",
  1178. "optional": true,
  1179. "os": [
  1180. "linux"
  1181. ]
  1182. },
  1183. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  1184. "version": "4.30.1",
  1185. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.30.1.tgz",
  1186. "integrity": "sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==",
  1187. "cpu": [
  1188. "riscv64"
  1189. ],
  1190. "dev": true,
  1191. "license": "MIT",
  1192. "optional": true,
  1193. "os": [
  1194. "linux"
  1195. ]
  1196. },
  1197. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  1198. "version": "4.30.1",
  1199. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.30.1.tgz",
  1200. "integrity": "sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==",
  1201. "cpu": [
  1202. "s390x"
  1203. ],
  1204. "dev": true,
  1205. "license": "MIT",
  1206. "optional": true,
  1207. "os": [
  1208. "linux"
  1209. ]
  1210. },
  1211. "node_modules/@rollup/rollup-linux-x64-gnu": {
  1212. "version": "4.30.1",
  1213. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.30.1.tgz",
  1214. "integrity": "sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==",
  1215. "cpu": [
  1216. "x64"
  1217. ],
  1218. "dev": true,
  1219. "license": "MIT",
  1220. "optional": true,
  1221. "os": [
  1222. "linux"
  1223. ]
  1224. },
  1225. "node_modules/@rollup/rollup-linux-x64-musl": {
  1226. "version": "4.30.1",
  1227. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.30.1.tgz",
  1228. "integrity": "sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==",
  1229. "cpu": [
  1230. "x64"
  1231. ],
  1232. "dev": true,
  1233. "license": "MIT",
  1234. "optional": true,
  1235. "os": [
  1236. "linux"
  1237. ]
  1238. },
  1239. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  1240. "version": "4.30.1",
  1241. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.30.1.tgz",
  1242. "integrity": "sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==",
  1243. "cpu": [
  1244. "arm64"
  1245. ],
  1246. "dev": true,
  1247. "license": "MIT",
  1248. "optional": true,
  1249. "os": [
  1250. "win32"
  1251. ]
  1252. },
  1253. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  1254. "version": "4.30.1",
  1255. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.30.1.tgz",
  1256. "integrity": "sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==",
  1257. "cpu": [
  1258. "ia32"
  1259. ],
  1260. "dev": true,
  1261. "license": "MIT",
  1262. "optional": true,
  1263. "os": [
  1264. "win32"
  1265. ]
  1266. },
  1267. "node_modules/@rollup/rollup-win32-x64-msvc": {
  1268. "version": "4.30.1",
  1269. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.30.1.tgz",
  1270. "integrity": "sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==",
  1271. "cpu": [
  1272. "x64"
  1273. ],
  1274. "dev": true,
  1275. "license": "MIT",
  1276. "optional": true,
  1277. "os": [
  1278. "win32"
  1279. ]
  1280. },
  1281. "node_modules/@types/estree": {
  1282. "version": "1.0.6",
  1283. "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.6.tgz",
  1284. "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
  1285. "dev": true,
  1286. "license": "MIT"
  1287. },
  1288. "node_modules/@types/lodash": {
  1289. "version": "4.17.14",
  1290. "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.14.tgz",
  1291. "integrity": "sha512-jsxagdikDiDBeIRaPYtArcT8my4tN1og7MtMRquFT3XNA6axxyHDRUemqDz/taRDdOUn0GnGHRCuff4q48sW9A==",
  1292. "license": "MIT"
  1293. },
  1294. "node_modules/@types/lodash-es": {
  1295. "version": "4.17.12",
  1296. "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  1297. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  1298. "license": "MIT",
  1299. "dependencies": {
  1300. "@types/lodash": "*"
  1301. }
  1302. },
  1303. "node_modules/@types/node": {
  1304. "version": "22.10.10",
  1305. "resolved": "https://registry.npmmirror.com/@types/node/-/node-22.10.10.tgz",
  1306. "integrity": "sha512-X47y/mPNzxviAGY5TcYPtYL8JsY3kAq2n8fMmKoRCxq/c4v4pyGNCzM2R6+M5/umG4ZfHuT+sgqDYqWc9rJ6ww==",
  1307. "dev": true,
  1308. "optional": true,
  1309. "peer": true,
  1310. "dependencies": {
  1311. "undici-types": "~6.20.0"
  1312. }
  1313. },
  1314. "node_modules/@types/web-bluetooth": {
  1315. "version": "0.0.16",
  1316. "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz",
  1317. "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==",
  1318. "license": "MIT"
  1319. },
  1320. "node_modules/@vitejs/plugin-vue": {
  1321. "version": "5.2.1",
  1322. "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-5.2.1.tgz",
  1323. "integrity": "sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==",
  1324. "dev": true,
  1325. "license": "MIT",
  1326. "engines": {
  1327. "node": "^18.0.0 || >=20.0.0"
  1328. },
  1329. "peerDependencies": {
  1330. "vite": "^5.0.0 || ^6.0.0",
  1331. "vue": "^3.2.25"
  1332. }
  1333. },
  1334. "node_modules/@vue/compiler-core": {
  1335. "version": "3.5.13",
  1336. "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.13.tgz",
  1337. "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==",
  1338. "license": "MIT",
  1339. "dependencies": {
  1340. "@babel/parser": "^7.25.3",
  1341. "@vue/shared": "3.5.13",
  1342. "entities": "^4.5.0",
  1343. "estree-walker": "^2.0.2",
  1344. "source-map-js": "^1.2.0"
  1345. }
  1346. },
  1347. "node_modules/@vue/compiler-dom": {
  1348. "version": "3.5.13",
  1349. "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz",
  1350. "integrity": "sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==",
  1351. "license": "MIT",
  1352. "dependencies": {
  1353. "@vue/compiler-core": "3.5.13",
  1354. "@vue/shared": "3.5.13"
  1355. }
  1356. },
  1357. "node_modules/@vue/compiler-sfc": {
  1358. "version": "3.5.13",
  1359. "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz",
  1360. "integrity": "sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==",
  1361. "license": "MIT",
  1362. "dependencies": {
  1363. "@babel/parser": "^7.25.3",
  1364. "@vue/compiler-core": "3.5.13",
  1365. "@vue/compiler-dom": "3.5.13",
  1366. "@vue/compiler-ssr": "3.5.13",
  1367. "@vue/shared": "3.5.13",
  1368. "estree-walker": "^2.0.2",
  1369. "magic-string": "^0.30.11",
  1370. "postcss": "^8.4.48",
  1371. "source-map-js": "^1.2.0"
  1372. }
  1373. },
  1374. "node_modules/@vue/compiler-ssr": {
  1375. "version": "3.5.13",
  1376. "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz",
  1377. "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==",
  1378. "license": "MIT",
  1379. "dependencies": {
  1380. "@vue/compiler-dom": "3.5.13",
  1381. "@vue/shared": "3.5.13"
  1382. }
  1383. },
  1384. "node_modules/@vue/devtools-api": {
  1385. "version": "6.6.4",
  1386. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
  1387. "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
  1388. "license": "MIT"
  1389. },
  1390. "node_modules/@vue/reactivity": {
  1391. "version": "3.5.13",
  1392. "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.13.tgz",
  1393. "integrity": "sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==",
  1394. "license": "MIT",
  1395. "dependencies": {
  1396. "@vue/shared": "3.5.13"
  1397. }
  1398. },
  1399. "node_modules/@vue/runtime-core": {
  1400. "version": "3.5.13",
  1401. "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.13.tgz",
  1402. "integrity": "sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==",
  1403. "license": "MIT",
  1404. "dependencies": {
  1405. "@vue/reactivity": "3.5.13",
  1406. "@vue/shared": "3.5.13"
  1407. }
  1408. },
  1409. "node_modules/@vue/runtime-dom": {
  1410. "version": "3.5.13",
  1411. "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz",
  1412. "integrity": "sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==",
  1413. "license": "MIT",
  1414. "dependencies": {
  1415. "@vue/reactivity": "3.5.13",
  1416. "@vue/runtime-core": "3.5.13",
  1417. "@vue/shared": "3.5.13",
  1418. "csstype": "^3.1.3"
  1419. }
  1420. },
  1421. "node_modules/@vue/server-renderer": {
  1422. "version": "3.5.13",
  1423. "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.13.tgz",
  1424. "integrity": "sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==",
  1425. "license": "MIT",
  1426. "dependencies": {
  1427. "@vue/compiler-ssr": "3.5.13",
  1428. "@vue/shared": "3.5.13"
  1429. },
  1430. "peerDependencies": {
  1431. "vue": "3.5.13"
  1432. }
  1433. },
  1434. "node_modules/@vue/shared": {
  1435. "version": "3.5.13",
  1436. "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.13.tgz",
  1437. "integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==",
  1438. "license": "MIT"
  1439. },
  1440. "node_modules/@vueuse/core": {
  1441. "version": "9.13.0",
  1442. "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-9.13.0.tgz",
  1443. "integrity": "sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==",
  1444. "license": "MIT",
  1445. "dependencies": {
  1446. "@types/web-bluetooth": "^0.0.16",
  1447. "@vueuse/metadata": "9.13.0",
  1448. "@vueuse/shared": "9.13.0",
  1449. "vue-demi": "*"
  1450. },
  1451. "funding": {
  1452. "url": "https://github.com/sponsors/antfu"
  1453. }
  1454. },
  1455. "node_modules/@vueuse/core/node_modules/vue-demi": {
  1456. "version": "0.14.10",
  1457. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
  1458. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1459. "hasInstallScript": true,
  1460. "license": "MIT",
  1461. "bin": {
  1462. "vue-demi-fix": "bin/vue-demi-fix.js",
  1463. "vue-demi-switch": "bin/vue-demi-switch.js"
  1464. },
  1465. "engines": {
  1466. "node": ">=12"
  1467. },
  1468. "funding": {
  1469. "url": "https://github.com/sponsors/antfu"
  1470. },
  1471. "peerDependencies": {
  1472. "@vue/composition-api": "^1.0.0-rc.1",
  1473. "vue": "^3.0.0-0 || ^2.6.0"
  1474. },
  1475. "peerDependenciesMeta": {
  1476. "@vue/composition-api": {
  1477. "optional": true
  1478. }
  1479. }
  1480. },
  1481. "node_modules/@vueuse/metadata": {
  1482. "version": "9.13.0",
  1483. "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-9.13.0.tgz",
  1484. "integrity": "sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==",
  1485. "license": "MIT",
  1486. "funding": {
  1487. "url": "https://github.com/sponsors/antfu"
  1488. }
  1489. },
  1490. "node_modules/@vueuse/shared": {
  1491. "version": "9.13.0",
  1492. "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-9.13.0.tgz",
  1493. "integrity": "sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==",
  1494. "license": "MIT",
  1495. "dependencies": {
  1496. "vue-demi": "*"
  1497. },
  1498. "funding": {
  1499. "url": "https://github.com/sponsors/antfu"
  1500. }
  1501. },
  1502. "node_modules/@vueuse/shared/node_modules/vue-demi": {
  1503. "version": "0.14.10",
  1504. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
  1505. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1506. "hasInstallScript": true,
  1507. "license": "MIT",
  1508. "bin": {
  1509. "vue-demi-fix": "bin/vue-demi-fix.js",
  1510. "vue-demi-switch": "bin/vue-demi-switch.js"
  1511. },
  1512. "engines": {
  1513. "node": ">=12"
  1514. },
  1515. "funding": {
  1516. "url": "https://github.com/sponsors/antfu"
  1517. },
  1518. "peerDependencies": {
  1519. "@vue/composition-api": "^1.0.0-rc.1",
  1520. "vue": "^3.0.0-0 || ^2.6.0"
  1521. },
  1522. "peerDependenciesMeta": {
  1523. "@vue/composition-api": {
  1524. "optional": true
  1525. }
  1526. }
  1527. },
  1528. "node_modules/acorn": {
  1529. "version": "8.14.0",
  1530. "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.14.0.tgz",
  1531. "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
  1532. "dev": true,
  1533. "license": "MIT",
  1534. "bin": {
  1535. "acorn": "bin/acorn"
  1536. },
  1537. "engines": {
  1538. "node": ">=0.4.0"
  1539. }
  1540. },
  1541. "node_modules/ansi-regex": {
  1542. "version": "5.0.1",
  1543. "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz",
  1544. "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
  1545. "dev": true,
  1546. "engines": {
  1547. "node": ">=8"
  1548. }
  1549. },
  1550. "node_modules/ansi-styles": {
  1551. "version": "4.3.0",
  1552. "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz",
  1553. "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
  1554. "dev": true,
  1555. "dependencies": {
  1556. "color-convert": "^2.0.1"
  1557. },
  1558. "engines": {
  1559. "node": ">=8"
  1560. },
  1561. "funding": {
  1562. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  1563. }
  1564. },
  1565. "node_modules/anymatch": {
  1566. "version": "3.1.3",
  1567. "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz",
  1568. "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
  1569. "dev": true,
  1570. "license": "ISC",
  1571. "dependencies": {
  1572. "normalize-path": "^3.0.0",
  1573. "picomatch": "^2.0.4"
  1574. },
  1575. "engines": {
  1576. "node": ">= 8"
  1577. }
  1578. },
  1579. "node_modules/async-validator": {
  1580. "version": "4.2.5",
  1581. "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
  1582. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  1583. "license": "MIT"
  1584. },
  1585. "node_modules/balanced-match": {
  1586. "version": "1.0.2",
  1587. "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz",
  1588. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  1589. "dev": true,
  1590. "license": "MIT"
  1591. },
  1592. "node_modules/binary-extensions": {
  1593. "version": "2.3.0",
  1594. "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.3.0.tgz",
  1595. "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
  1596. "dev": true,
  1597. "license": "MIT",
  1598. "engines": {
  1599. "node": ">=8"
  1600. },
  1601. "funding": {
  1602. "url": "https://github.com/sponsors/sindresorhus"
  1603. }
  1604. },
  1605. "node_modules/brace-expansion": {
  1606. "version": "2.0.1",
  1607. "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz",
  1608. "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
  1609. "dev": true,
  1610. "license": "MIT",
  1611. "dependencies": {
  1612. "balanced-match": "^1.0.0"
  1613. }
  1614. },
  1615. "node_modules/braces": {
  1616. "version": "3.0.3",
  1617. "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz",
  1618. "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
  1619. "dev": true,
  1620. "license": "MIT",
  1621. "dependencies": {
  1622. "fill-range": "^7.1.1"
  1623. },
  1624. "engines": {
  1625. "node": ">=8"
  1626. }
  1627. },
  1628. "node_modules/buffer-from": {
  1629. "version": "1.1.2",
  1630. "resolved": "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz",
  1631. "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
  1632. "dev": true,
  1633. "optional": true,
  1634. "peer": true
  1635. },
  1636. "node_modules/chalk": {
  1637. "version": "4.1.2",
  1638. "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz",
  1639. "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
  1640. "dev": true,
  1641. "dependencies": {
  1642. "ansi-styles": "^4.1.0",
  1643. "supports-color": "^7.1.0"
  1644. },
  1645. "engines": {
  1646. "node": ">=10"
  1647. },
  1648. "funding": {
  1649. "url": "https://github.com/chalk/chalk?sponsor=1"
  1650. }
  1651. },
  1652. "node_modules/chalk/node_modules/supports-color": {
  1653. "version": "7.2.0",
  1654. "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz",
  1655. "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
  1656. "dev": true,
  1657. "dependencies": {
  1658. "has-flag": "^4.0.0"
  1659. },
  1660. "engines": {
  1661. "node": ">=8"
  1662. }
  1663. },
  1664. "node_modules/chokidar": {
  1665. "version": "4.0.3",
  1666. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz",
  1667. "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
  1668. "dev": true,
  1669. "license": "MIT",
  1670. "dependencies": {
  1671. "readdirp": "^4.0.1"
  1672. },
  1673. "engines": {
  1674. "node": ">= 14.16.0"
  1675. },
  1676. "funding": {
  1677. "url": "https://paulmillr.com/funding/"
  1678. }
  1679. },
  1680. "node_modules/cliui": {
  1681. "version": "8.0.1",
  1682. "resolved": "https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz",
  1683. "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
  1684. "dev": true,
  1685. "dependencies": {
  1686. "string-width": "^4.2.0",
  1687. "strip-ansi": "^6.0.1",
  1688. "wrap-ansi": "^7.0.0"
  1689. },
  1690. "engines": {
  1691. "node": ">=12"
  1692. }
  1693. },
  1694. "node_modules/color-convert": {
  1695. "version": "2.0.1",
  1696. "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz",
  1697. "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
  1698. "dev": true,
  1699. "dependencies": {
  1700. "color-name": "~1.1.4"
  1701. },
  1702. "engines": {
  1703. "node": ">=7.0.0"
  1704. }
  1705. },
  1706. "node_modules/color-name": {
  1707. "version": "1.1.4",
  1708. "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz",
  1709. "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
  1710. "dev": true
  1711. },
  1712. "node_modules/commander": {
  1713. "version": "2.20.3",
  1714. "resolved": "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz",
  1715. "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
  1716. "dev": true,
  1717. "optional": true,
  1718. "peer": true
  1719. },
  1720. "node_modules/concat-map": {
  1721. "version": "0.0.1",
  1722. "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz",
  1723. "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
  1724. "dev": true
  1725. },
  1726. "node_modules/concurrently": {
  1727. "version": "9.1.2",
  1728. "resolved": "https://registry.npmmirror.com/concurrently/-/concurrently-9.1.2.tgz",
  1729. "integrity": "sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==",
  1730. "dev": true,
  1731. "dependencies": {
  1732. "chalk": "^4.1.2",
  1733. "lodash": "^4.17.21",
  1734. "rxjs": "^7.8.1",
  1735. "shell-quote": "^1.8.1",
  1736. "supports-color": "^8.1.1",
  1737. "tree-kill": "^1.2.2",
  1738. "yargs": "^17.7.2"
  1739. },
  1740. "bin": {
  1741. "conc": "dist/bin/concurrently.js",
  1742. "concurrently": "dist/bin/concurrently.js"
  1743. },
  1744. "engines": {
  1745. "node": ">=18"
  1746. },
  1747. "funding": {
  1748. "url": "https://github.com/open-cli-tools/concurrently?sponsor=1"
  1749. }
  1750. },
  1751. "node_modules/confbox": {
  1752. "version": "0.1.8",
  1753. "resolved": "https://registry.npmmirror.com/confbox/-/confbox-0.1.8.tgz",
  1754. "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==",
  1755. "dev": true,
  1756. "license": "MIT"
  1757. },
  1758. "node_modules/csstype": {
  1759. "version": "3.1.3",
  1760. "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz",
  1761. "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
  1762. "license": "MIT"
  1763. },
  1764. "node_modules/dayjs": {
  1765. "version": "1.11.13",
  1766. "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.13.tgz",
  1767. "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==",
  1768. "license": "MIT"
  1769. },
  1770. "node_modules/debug": {
  1771. "version": "4.4.0",
  1772. "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.0.tgz",
  1773. "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
  1774. "dev": true,
  1775. "license": "MIT",
  1776. "dependencies": {
  1777. "ms": "^2.1.3"
  1778. },
  1779. "engines": {
  1780. "node": ">=6.0"
  1781. },
  1782. "peerDependenciesMeta": {
  1783. "supports-color": {
  1784. "optional": true
  1785. }
  1786. }
  1787. },
  1788. "node_modules/detect-libc": {
  1789. "version": "1.0.3",
  1790. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-1.0.3.tgz",
  1791. "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
  1792. "dev": true,
  1793. "license": "Apache-2.0",
  1794. "optional": true,
  1795. "bin": {
  1796. "detect-libc": "bin/detect-libc.js"
  1797. },
  1798. "engines": {
  1799. "node": ">=0.10"
  1800. }
  1801. },
  1802. "node_modules/element-plus": {
  1803. "version": "2.9.3",
  1804. "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.9.3.tgz",
  1805. "integrity": "sha512-6tSLp5XytDS4TMZ0P3aGZnr7MXTagfNycepNfIDitd9IgwM9y01+Ssu6mglNi8RiXYhek6LBWNOd/cvpIO12+w==",
  1806. "license": "MIT",
  1807. "dependencies": {
  1808. "@ctrl/tinycolor": "^3.4.1",
  1809. "@element-plus/icons-vue": "^2.3.1",
  1810. "@floating-ui/dom": "^1.0.1",
  1811. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
  1812. "@types/lodash": "^4.14.182",
  1813. "@types/lodash-es": "^4.17.6",
  1814. "@vueuse/core": "^9.1.0",
  1815. "async-validator": "^4.2.5",
  1816. "dayjs": "^1.11.13",
  1817. "escape-html": "^1.0.3",
  1818. "lodash": "^4.17.21",
  1819. "lodash-es": "^4.17.21",
  1820. "lodash-unified": "^1.0.2",
  1821. "memoize-one": "^6.0.0",
  1822. "normalize-wheel-es": "^1.2.0"
  1823. },
  1824. "peerDependencies": {
  1825. "vue": "^3.2.0"
  1826. }
  1827. },
  1828. "node_modules/emoji-regex": {
  1829. "version": "8.0.0",
  1830. "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz",
  1831. "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
  1832. "dev": true
  1833. },
  1834. "node_modules/entities": {
  1835. "version": "4.5.0",
  1836. "resolved": "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz",
  1837. "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
  1838. "license": "BSD-2-Clause",
  1839. "engines": {
  1840. "node": ">=0.12"
  1841. },
  1842. "funding": {
  1843. "url": "https://github.com/fb55/entities?sponsor=1"
  1844. }
  1845. },
  1846. "node_modules/esbuild": {
  1847. "version": "0.24.2",
  1848. "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.24.2.tgz",
  1849. "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==",
  1850. "dev": true,
  1851. "hasInstallScript": true,
  1852. "license": "MIT",
  1853. "bin": {
  1854. "esbuild": "bin/esbuild"
  1855. },
  1856. "engines": {
  1857. "node": ">=18"
  1858. },
  1859. "optionalDependencies": {
  1860. "@esbuild/aix-ppc64": "0.24.2",
  1861. "@esbuild/android-arm": "0.24.2",
  1862. "@esbuild/android-arm64": "0.24.2",
  1863. "@esbuild/android-x64": "0.24.2",
  1864. "@esbuild/darwin-arm64": "0.24.2",
  1865. "@esbuild/darwin-x64": "0.24.2",
  1866. "@esbuild/freebsd-arm64": "0.24.2",
  1867. "@esbuild/freebsd-x64": "0.24.2",
  1868. "@esbuild/linux-arm": "0.24.2",
  1869. "@esbuild/linux-arm64": "0.24.2",
  1870. "@esbuild/linux-ia32": "0.24.2",
  1871. "@esbuild/linux-loong64": "0.24.2",
  1872. "@esbuild/linux-mips64el": "0.24.2",
  1873. "@esbuild/linux-ppc64": "0.24.2",
  1874. "@esbuild/linux-riscv64": "0.24.2",
  1875. "@esbuild/linux-s390x": "0.24.2",
  1876. "@esbuild/linux-x64": "0.24.2",
  1877. "@esbuild/netbsd-arm64": "0.24.2",
  1878. "@esbuild/netbsd-x64": "0.24.2",
  1879. "@esbuild/openbsd-arm64": "0.24.2",
  1880. "@esbuild/openbsd-x64": "0.24.2",
  1881. "@esbuild/sunos-x64": "0.24.2",
  1882. "@esbuild/win32-arm64": "0.24.2",
  1883. "@esbuild/win32-ia32": "0.24.2",
  1884. "@esbuild/win32-x64": "0.24.2"
  1885. }
  1886. },
  1887. "node_modules/escalade": {
  1888. "version": "3.2.0",
  1889. "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.2.0.tgz",
  1890. "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
  1891. "dev": true,
  1892. "engines": {
  1893. "node": ">=6"
  1894. }
  1895. },
  1896. "node_modules/escape-html": {
  1897. "version": "1.0.3",
  1898. "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz",
  1899. "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
  1900. "license": "MIT"
  1901. },
  1902. "node_modules/escape-string-regexp": {
  1903. "version": "5.0.0",
  1904. "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
  1905. "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
  1906. "dev": true,
  1907. "license": "MIT",
  1908. "engines": {
  1909. "node": ">=12"
  1910. },
  1911. "funding": {
  1912. "url": "https://github.com/sponsors/sindresorhus"
  1913. }
  1914. },
  1915. "node_modules/estree-walker": {
  1916. "version": "2.0.2",
  1917. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
  1918. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  1919. "license": "MIT"
  1920. },
  1921. "node_modules/fast-glob": {
  1922. "version": "3.3.3",
  1923. "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.3.tgz",
  1924. "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
  1925. "dev": true,
  1926. "license": "MIT",
  1927. "dependencies": {
  1928. "@nodelib/fs.stat": "^2.0.2",
  1929. "@nodelib/fs.walk": "^1.2.3",
  1930. "glob-parent": "^5.1.2",
  1931. "merge2": "^1.3.0",
  1932. "micromatch": "^4.0.8"
  1933. },
  1934. "engines": {
  1935. "node": ">=8.6.0"
  1936. }
  1937. },
  1938. "node_modules/fastq": {
  1939. "version": "1.18.0",
  1940. "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.18.0.tgz",
  1941. "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==",
  1942. "dev": true,
  1943. "license": "ISC",
  1944. "dependencies": {
  1945. "reusify": "^1.0.4"
  1946. }
  1947. },
  1948. "node_modules/fill-range": {
  1949. "version": "7.1.1",
  1950. "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz",
  1951. "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
  1952. "dev": true,
  1953. "license": "MIT",
  1954. "dependencies": {
  1955. "to-regex-range": "^5.0.1"
  1956. },
  1957. "engines": {
  1958. "node": ">=8"
  1959. }
  1960. },
  1961. "node_modules/fsevents": {
  1962. "version": "2.3.3",
  1963. "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
  1964. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1965. "dev": true,
  1966. "hasInstallScript": true,
  1967. "license": "MIT",
  1968. "optional": true,
  1969. "os": [
  1970. "darwin"
  1971. ],
  1972. "engines": {
  1973. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1974. }
  1975. },
  1976. "node_modules/get-caller-file": {
  1977. "version": "2.0.5",
  1978. "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz",
  1979. "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
  1980. "dev": true,
  1981. "engines": {
  1982. "node": "6.* || 8.* || >= 10.*"
  1983. }
  1984. },
  1985. "node_modules/glob-parent": {
  1986. "version": "5.1.2",
  1987. "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz",
  1988. "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
  1989. "dev": true,
  1990. "license": "ISC",
  1991. "dependencies": {
  1992. "is-glob": "^4.0.1"
  1993. },
  1994. "engines": {
  1995. "node": ">= 6"
  1996. }
  1997. },
  1998. "node_modules/has-flag": {
  1999. "version": "4.0.0",
  2000. "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz",
  2001. "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
  2002. "dev": true,
  2003. "engines": {
  2004. "node": ">=8"
  2005. }
  2006. },
  2007. "node_modules/highlight.js": {
  2008. "version": "11.11.1",
  2009. "resolved": "https://registry.npmmirror.com/highlight.js/-/highlight.js-11.11.1.tgz",
  2010. "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==",
  2011. "engines": {
  2012. "node": ">=12.0.0"
  2013. }
  2014. },
  2015. "node_modules/ignore-by-default": {
  2016. "version": "1.0.1",
  2017. "resolved": "https://registry.npmmirror.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
  2018. "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
  2019. "dev": true
  2020. },
  2021. "node_modules/immutable": {
  2022. "version": "5.0.3",
  2023. "resolved": "https://registry.npmmirror.com/immutable/-/immutable-5.0.3.tgz",
  2024. "integrity": "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==",
  2025. "dev": true,
  2026. "license": "MIT"
  2027. },
  2028. "node_modules/is-binary-path": {
  2029. "version": "2.1.0",
  2030. "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz",
  2031. "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
  2032. "dev": true,
  2033. "license": "MIT",
  2034. "dependencies": {
  2035. "binary-extensions": "^2.0.0"
  2036. },
  2037. "engines": {
  2038. "node": ">=8"
  2039. }
  2040. },
  2041. "node_modules/is-extglob": {
  2042. "version": "2.1.1",
  2043. "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz",
  2044. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  2045. "dev": true,
  2046. "license": "MIT",
  2047. "engines": {
  2048. "node": ">=0.10.0"
  2049. }
  2050. },
  2051. "node_modules/is-fullwidth-code-point": {
  2052. "version": "3.0.0",
  2053. "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
  2054. "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
  2055. "dev": true,
  2056. "engines": {
  2057. "node": ">=8"
  2058. }
  2059. },
  2060. "node_modules/is-glob": {
  2061. "version": "4.0.3",
  2062. "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz",
  2063. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  2064. "dev": true,
  2065. "license": "MIT",
  2066. "dependencies": {
  2067. "is-extglob": "^2.1.1"
  2068. },
  2069. "engines": {
  2070. "node": ">=0.10.0"
  2071. }
  2072. },
  2073. "node_modules/is-number": {
  2074. "version": "7.0.0",
  2075. "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz",
  2076. "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
  2077. "dev": true,
  2078. "license": "MIT",
  2079. "engines": {
  2080. "node": ">=0.12.0"
  2081. }
  2082. },
  2083. "node_modules/js-tokens": {
  2084. "version": "9.0.1",
  2085. "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-9.0.1.tgz",
  2086. "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==",
  2087. "dev": true,
  2088. "license": "MIT"
  2089. },
  2090. "node_modules/local-pkg": {
  2091. "version": "0.5.1",
  2092. "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.5.1.tgz",
  2093. "integrity": "sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==",
  2094. "dev": true,
  2095. "license": "MIT",
  2096. "dependencies": {
  2097. "mlly": "^1.7.3",
  2098. "pkg-types": "^1.2.1"
  2099. },
  2100. "engines": {
  2101. "node": ">=14"
  2102. },
  2103. "funding": {
  2104. "url": "https://github.com/sponsors/antfu"
  2105. }
  2106. },
  2107. "node_modules/lodash": {
  2108. "version": "4.17.21",
  2109. "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz",
  2110. "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
  2111. "license": "MIT"
  2112. },
  2113. "node_modules/lodash-es": {
  2114. "version": "4.17.21",
  2115. "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz",
  2116. "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==",
  2117. "license": "MIT"
  2118. },
  2119. "node_modules/lodash-unified": {
  2120. "version": "1.0.3",
  2121. "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz",
  2122. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  2123. "license": "MIT",
  2124. "peerDependencies": {
  2125. "@types/lodash-es": "*",
  2126. "lodash": "*",
  2127. "lodash-es": "*"
  2128. }
  2129. },
  2130. "node_modules/magic-string": {
  2131. "version": "0.30.17",
  2132. "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.17.tgz",
  2133. "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
  2134. "license": "MIT",
  2135. "dependencies": {
  2136. "@jridgewell/sourcemap-codec": "^1.5.0"
  2137. }
  2138. },
  2139. "node_modules/memoize-one": {
  2140. "version": "6.0.0",
  2141. "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz",
  2142. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  2143. "license": "MIT"
  2144. },
  2145. "node_modules/merge2": {
  2146. "version": "1.4.1",
  2147. "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz",
  2148. "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
  2149. "dev": true,
  2150. "license": "MIT",
  2151. "engines": {
  2152. "node": ">= 8"
  2153. }
  2154. },
  2155. "node_modules/micromatch": {
  2156. "version": "4.0.8",
  2157. "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz",
  2158. "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
  2159. "dev": true,
  2160. "license": "MIT",
  2161. "dependencies": {
  2162. "braces": "^3.0.3",
  2163. "picomatch": "^2.3.1"
  2164. },
  2165. "engines": {
  2166. "node": ">=8.6"
  2167. }
  2168. },
  2169. "node_modules/minimatch": {
  2170. "version": "9.0.5",
  2171. "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.5.tgz",
  2172. "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
  2173. "dev": true,
  2174. "license": "ISC",
  2175. "dependencies": {
  2176. "brace-expansion": "^2.0.1"
  2177. },
  2178. "engines": {
  2179. "node": ">=16 || 14 >=14.17"
  2180. },
  2181. "funding": {
  2182. "url": "https://github.com/sponsors/isaacs"
  2183. }
  2184. },
  2185. "node_modules/mlly": {
  2186. "version": "1.7.4",
  2187. "resolved": "https://registry.npmmirror.com/mlly/-/mlly-1.7.4.tgz",
  2188. "integrity": "sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==",
  2189. "dev": true,
  2190. "license": "MIT",
  2191. "dependencies": {
  2192. "acorn": "^8.14.0",
  2193. "pathe": "^2.0.1",
  2194. "pkg-types": "^1.3.0",
  2195. "ufo": "^1.5.4"
  2196. }
  2197. },
  2198. "node_modules/ms": {
  2199. "version": "2.1.3",
  2200. "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
  2201. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  2202. "dev": true,
  2203. "license": "MIT"
  2204. },
  2205. "node_modules/nanoid": {
  2206. "version": "3.3.8",
  2207. "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.8.tgz",
  2208. "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
  2209. "funding": [
  2210. {
  2211. "type": "github",
  2212. "url": "https://github.com/sponsors/ai"
  2213. }
  2214. ],
  2215. "license": "MIT",
  2216. "bin": {
  2217. "nanoid": "bin/nanoid.cjs"
  2218. },
  2219. "engines": {
  2220. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2221. }
  2222. },
  2223. "node_modules/node-addon-api": {
  2224. "version": "7.1.1",
  2225. "resolved": "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-7.1.1.tgz",
  2226. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  2227. "dev": true,
  2228. "license": "MIT",
  2229. "optional": true
  2230. },
  2231. "node_modules/nodemon": {
  2232. "version": "3.1.9",
  2233. "resolved": "https://registry.npmmirror.com/nodemon/-/nodemon-3.1.9.tgz",
  2234. "integrity": "sha512-hdr1oIb2p6ZSxu3PB2JWWYS7ZQ0qvaZsc3hK8DR8f02kRzc8rjYmxAIvdz+aYC+8F2IjNaB7HMcSDg8nQpJxyg==",
  2235. "dev": true,
  2236. "dependencies": {
  2237. "chokidar": "^3.5.2",
  2238. "debug": "^4",
  2239. "ignore-by-default": "^1.0.1",
  2240. "minimatch": "^3.1.2",
  2241. "pstree.remy": "^1.1.8",
  2242. "semver": "^7.5.3",
  2243. "simple-update-notifier": "^2.0.0",
  2244. "supports-color": "^5.5.0",
  2245. "touch": "^3.1.0",
  2246. "undefsafe": "^2.0.5"
  2247. },
  2248. "bin": {
  2249. "nodemon": "bin/nodemon.js"
  2250. },
  2251. "engines": {
  2252. "node": ">=10"
  2253. },
  2254. "funding": {
  2255. "type": "opencollective",
  2256. "url": "https://opencollective.com/nodemon"
  2257. }
  2258. },
  2259. "node_modules/nodemon/node_modules/brace-expansion": {
  2260. "version": "1.1.11",
  2261. "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz",
  2262. "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
  2263. "dev": true,
  2264. "dependencies": {
  2265. "balanced-match": "^1.0.0",
  2266. "concat-map": "0.0.1"
  2267. }
  2268. },
  2269. "node_modules/nodemon/node_modules/chokidar": {
  2270. "version": "3.6.0",
  2271. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.6.0.tgz",
  2272. "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
  2273. "dev": true,
  2274. "dependencies": {
  2275. "anymatch": "~3.1.2",
  2276. "braces": "~3.0.2",
  2277. "glob-parent": "~5.1.2",
  2278. "is-binary-path": "~2.1.0",
  2279. "is-glob": "~4.0.1",
  2280. "normalize-path": "~3.0.0",
  2281. "readdirp": "~3.6.0"
  2282. },
  2283. "engines": {
  2284. "node": ">= 8.10.0"
  2285. },
  2286. "funding": {
  2287. "url": "https://paulmillr.com/funding/"
  2288. },
  2289. "optionalDependencies": {
  2290. "fsevents": "~2.3.2"
  2291. }
  2292. },
  2293. "node_modules/nodemon/node_modules/has-flag": {
  2294. "version": "3.0.0",
  2295. "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz",
  2296. "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
  2297. "dev": true,
  2298. "engines": {
  2299. "node": ">=4"
  2300. }
  2301. },
  2302. "node_modules/nodemon/node_modules/minimatch": {
  2303. "version": "3.1.2",
  2304. "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz",
  2305. "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
  2306. "dev": true,
  2307. "dependencies": {
  2308. "brace-expansion": "^1.1.7"
  2309. },
  2310. "engines": {
  2311. "node": "*"
  2312. }
  2313. },
  2314. "node_modules/nodemon/node_modules/readdirp": {
  2315. "version": "3.6.0",
  2316. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz",
  2317. "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
  2318. "dev": true,
  2319. "dependencies": {
  2320. "picomatch": "^2.2.1"
  2321. },
  2322. "engines": {
  2323. "node": ">=8.10.0"
  2324. }
  2325. },
  2326. "node_modules/nodemon/node_modules/supports-color": {
  2327. "version": "5.5.0",
  2328. "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz",
  2329. "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
  2330. "dev": true,
  2331. "dependencies": {
  2332. "has-flag": "^3.0.0"
  2333. },
  2334. "engines": {
  2335. "node": ">=4"
  2336. }
  2337. },
  2338. "node_modules/normalize-path": {
  2339. "version": "3.0.0",
  2340. "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz",
  2341. "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
  2342. "dev": true,
  2343. "license": "MIT",
  2344. "engines": {
  2345. "node": ">=0.10.0"
  2346. }
  2347. },
  2348. "node_modules/normalize-wheel-es": {
  2349. "version": "1.2.0",
  2350. "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  2351. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  2352. "license": "BSD-3-Clause"
  2353. },
  2354. "node_modules/nprogress": {
  2355. "version": "0.2.0",
  2356. "resolved": "https://registry.npmmirror.com/nprogress/-/nprogress-0.2.0.tgz",
  2357. "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA=="
  2358. },
  2359. "node_modules/pathe": {
  2360. "version": "2.0.1",
  2361. "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.1.tgz",
  2362. "integrity": "sha512-6jpjMpOth5S9ITVu5clZ7NOgHNsv5vRQdheL9ztp2vZmM6fRbLvyua1tiBIL4lk8SAe3ARzeXEly6siXCjDHDw==",
  2363. "dev": true,
  2364. "license": "MIT"
  2365. },
  2366. "node_modules/picocolors": {
  2367. "version": "1.1.1",
  2368. "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
  2369. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2370. "license": "ISC"
  2371. },
  2372. "node_modules/picomatch": {
  2373. "version": "2.3.1",
  2374. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz",
  2375. "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
  2376. "dev": true,
  2377. "license": "MIT",
  2378. "engines": {
  2379. "node": ">=8.6"
  2380. },
  2381. "funding": {
  2382. "url": "https://github.com/sponsors/jonschlinkert"
  2383. }
  2384. },
  2385. "node_modules/pkg-types": {
  2386. "version": "1.3.1",
  2387. "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.3.1.tgz",
  2388. "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
  2389. "dev": true,
  2390. "license": "MIT",
  2391. "dependencies": {
  2392. "confbox": "^0.1.8",
  2393. "mlly": "^1.7.4",
  2394. "pathe": "^2.0.1"
  2395. }
  2396. },
  2397. "node_modules/postcss": {
  2398. "version": "8.5.1",
  2399. "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.1.tgz",
  2400. "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==",
  2401. "funding": [
  2402. {
  2403. "type": "opencollective",
  2404. "url": "https://opencollective.com/postcss/"
  2405. },
  2406. {
  2407. "type": "tidelift",
  2408. "url": "https://tidelift.com/funding/github/npm/postcss"
  2409. },
  2410. {
  2411. "type": "github",
  2412. "url": "https://github.com/sponsors/ai"
  2413. }
  2414. ],
  2415. "license": "MIT",
  2416. "dependencies": {
  2417. "nanoid": "^3.3.8",
  2418. "picocolors": "^1.1.1",
  2419. "source-map-js": "^1.2.1"
  2420. },
  2421. "engines": {
  2422. "node": "^10 || ^12 || >=14"
  2423. }
  2424. },
  2425. "node_modules/pstree.remy": {
  2426. "version": "1.1.8",
  2427. "resolved": "https://registry.npmmirror.com/pstree.remy/-/pstree.remy-1.1.8.tgz",
  2428. "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
  2429. "dev": true
  2430. },
  2431. "node_modules/queue-microtask": {
  2432. "version": "1.2.3",
  2433. "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz",
  2434. "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
  2435. "dev": true,
  2436. "funding": [
  2437. {
  2438. "type": "github",
  2439. "url": "https://github.com/sponsors/feross"
  2440. },
  2441. {
  2442. "type": "patreon",
  2443. "url": "https://www.patreon.com/feross"
  2444. },
  2445. {
  2446. "type": "consulting",
  2447. "url": "https://feross.org/support"
  2448. }
  2449. ],
  2450. "license": "MIT"
  2451. },
  2452. "node_modules/readdirp": {
  2453. "version": "4.1.1",
  2454. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.1.tgz",
  2455. "integrity": "sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==",
  2456. "dev": true,
  2457. "license": "MIT",
  2458. "engines": {
  2459. "node": ">= 14.18.0"
  2460. },
  2461. "funding": {
  2462. "type": "individual",
  2463. "url": "https://paulmillr.com/funding/"
  2464. }
  2465. },
  2466. "node_modules/require-directory": {
  2467. "version": "2.1.1",
  2468. "resolved": "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz",
  2469. "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
  2470. "dev": true,
  2471. "engines": {
  2472. "node": ">=0.10.0"
  2473. }
  2474. },
  2475. "node_modules/reusify": {
  2476. "version": "1.0.4",
  2477. "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz",
  2478. "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
  2479. "dev": true,
  2480. "license": "MIT",
  2481. "engines": {
  2482. "iojs": ">=1.0.0",
  2483. "node": ">=0.10.0"
  2484. }
  2485. },
  2486. "node_modules/rollup": {
  2487. "version": "4.30.1",
  2488. "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.30.1.tgz",
  2489. "integrity": "sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==",
  2490. "dev": true,
  2491. "license": "MIT",
  2492. "dependencies": {
  2493. "@types/estree": "1.0.6"
  2494. },
  2495. "bin": {
  2496. "rollup": "dist/bin/rollup"
  2497. },
  2498. "engines": {
  2499. "node": ">=18.0.0",
  2500. "npm": ">=8.0.0"
  2501. },
  2502. "optionalDependencies": {
  2503. "@rollup/rollup-android-arm-eabi": "4.30.1",
  2504. "@rollup/rollup-android-arm64": "4.30.1",
  2505. "@rollup/rollup-darwin-arm64": "4.30.1",
  2506. "@rollup/rollup-darwin-x64": "4.30.1",
  2507. "@rollup/rollup-freebsd-arm64": "4.30.1",
  2508. "@rollup/rollup-freebsd-x64": "4.30.1",
  2509. "@rollup/rollup-linux-arm-gnueabihf": "4.30.1",
  2510. "@rollup/rollup-linux-arm-musleabihf": "4.30.1",
  2511. "@rollup/rollup-linux-arm64-gnu": "4.30.1",
  2512. "@rollup/rollup-linux-arm64-musl": "4.30.1",
  2513. "@rollup/rollup-linux-loongarch64-gnu": "4.30.1",
  2514. "@rollup/rollup-linux-powerpc64le-gnu": "4.30.1",
  2515. "@rollup/rollup-linux-riscv64-gnu": "4.30.1",
  2516. "@rollup/rollup-linux-s390x-gnu": "4.30.1",
  2517. "@rollup/rollup-linux-x64-gnu": "4.30.1",
  2518. "@rollup/rollup-linux-x64-musl": "4.30.1",
  2519. "@rollup/rollup-win32-arm64-msvc": "4.30.1",
  2520. "@rollup/rollup-win32-ia32-msvc": "4.30.1",
  2521. "@rollup/rollup-win32-x64-msvc": "4.30.1",
  2522. "fsevents": "~2.3.2"
  2523. }
  2524. },
  2525. "node_modules/run-parallel": {
  2526. "version": "1.2.0",
  2527. "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz",
  2528. "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
  2529. "dev": true,
  2530. "funding": [
  2531. {
  2532. "type": "github",
  2533. "url": "https://github.com/sponsors/feross"
  2534. },
  2535. {
  2536. "type": "patreon",
  2537. "url": "https://www.patreon.com/feross"
  2538. },
  2539. {
  2540. "type": "consulting",
  2541. "url": "https://feross.org/support"
  2542. }
  2543. ],
  2544. "license": "MIT",
  2545. "dependencies": {
  2546. "queue-microtask": "^1.2.2"
  2547. }
  2548. },
  2549. "node_modules/rxjs": {
  2550. "version": "7.8.1",
  2551. "resolved": "https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz",
  2552. "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==",
  2553. "dev": true,
  2554. "dependencies": {
  2555. "tslib": "^2.1.0"
  2556. }
  2557. },
  2558. "node_modules/sass": {
  2559. "version": "1.83.4",
  2560. "resolved": "https://registry.npmmirror.com/sass/-/sass-1.83.4.tgz",
  2561. "integrity": "sha512-B1bozCeNQiOgDcLd33e2Cs2U60wZwjUUXzh900ZyQF5qUasvMdDZYbQ566LJu7cqR+sAHlAfO6RMkaID5s6qpA==",
  2562. "dev": true,
  2563. "license": "MIT",
  2564. "dependencies": {
  2565. "chokidar": "^4.0.0",
  2566. "immutable": "^5.0.2",
  2567. "source-map-js": ">=0.6.2 <2.0.0"
  2568. },
  2569. "bin": {
  2570. "sass": "sass.js"
  2571. },
  2572. "engines": {
  2573. "node": ">=14.0.0"
  2574. },
  2575. "optionalDependencies": {
  2576. "@parcel/watcher": "^2.4.1"
  2577. }
  2578. },
  2579. "node_modules/scule": {
  2580. "version": "1.3.0",
  2581. "resolved": "https://registry.npmmirror.com/scule/-/scule-1.3.0.tgz",
  2582. "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==",
  2583. "dev": true,
  2584. "license": "MIT"
  2585. },
  2586. "node_modules/semver": {
  2587. "version": "7.7.1",
  2588. "resolved": "https://registry.npmmirror.com/semver/-/semver-7.7.1.tgz",
  2589. "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
  2590. "dev": true,
  2591. "bin": {
  2592. "semver": "bin/semver.js"
  2593. },
  2594. "engines": {
  2595. "node": ">=10"
  2596. }
  2597. },
  2598. "node_modules/shell-quote": {
  2599. "version": "1.8.2",
  2600. "resolved": "https://registry.npmmirror.com/shell-quote/-/shell-quote-1.8.2.tgz",
  2601. "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==",
  2602. "dev": true,
  2603. "engines": {
  2604. "node": ">= 0.4"
  2605. },
  2606. "funding": {
  2607. "url": "https://github.com/sponsors/ljharb"
  2608. }
  2609. },
  2610. "node_modules/simple-update-notifier": {
  2611. "version": "2.0.0",
  2612. "resolved": "https://registry.npmmirror.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
  2613. "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
  2614. "dev": true,
  2615. "dependencies": {
  2616. "semver": "^7.5.3"
  2617. },
  2618. "engines": {
  2619. "node": ">=10"
  2620. }
  2621. },
  2622. "node_modules/source-map": {
  2623. "version": "0.6.1",
  2624. "resolved": "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz",
  2625. "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
  2626. "dev": true,
  2627. "optional": true,
  2628. "peer": true,
  2629. "engines": {
  2630. "node": ">=0.10.0"
  2631. }
  2632. },
  2633. "node_modules/source-map-js": {
  2634. "version": "1.2.1",
  2635. "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
  2636. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2637. "license": "BSD-3-Clause",
  2638. "engines": {
  2639. "node": ">=0.10.0"
  2640. }
  2641. },
  2642. "node_modules/source-map-support": {
  2643. "version": "0.5.21",
  2644. "resolved": "https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz",
  2645. "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
  2646. "dev": true,
  2647. "optional": true,
  2648. "peer": true,
  2649. "dependencies": {
  2650. "buffer-from": "^1.0.0",
  2651. "source-map": "^0.6.0"
  2652. }
  2653. },
  2654. "node_modules/sourcemap-codec": {
  2655. "version": "1.4.8",
  2656. "resolved": "https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
  2657. "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==",
  2658. "deprecated": "Please use @jridgewell/sourcemap-codec instead",
  2659. "dev": true,
  2660. "license": "MIT"
  2661. },
  2662. "node_modules/string-width": {
  2663. "version": "4.2.3",
  2664. "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz",
  2665. "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
  2666. "dev": true,
  2667. "dependencies": {
  2668. "emoji-regex": "^8.0.0",
  2669. "is-fullwidth-code-point": "^3.0.0",
  2670. "strip-ansi": "^6.0.1"
  2671. },
  2672. "engines": {
  2673. "node": ">=8"
  2674. }
  2675. },
  2676. "node_modules/strip-ansi": {
  2677. "version": "6.0.1",
  2678. "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz",
  2679. "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
  2680. "dev": true,
  2681. "dependencies": {
  2682. "ansi-regex": "^5.0.1"
  2683. },
  2684. "engines": {
  2685. "node": ">=8"
  2686. }
  2687. },
  2688. "node_modules/strip-literal": {
  2689. "version": "2.1.1",
  2690. "resolved": "https://registry.npmmirror.com/strip-literal/-/strip-literal-2.1.1.tgz",
  2691. "integrity": "sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==",
  2692. "dev": true,
  2693. "license": "MIT",
  2694. "dependencies": {
  2695. "js-tokens": "^9.0.1"
  2696. },
  2697. "funding": {
  2698. "url": "https://github.com/sponsors/antfu"
  2699. }
  2700. },
  2701. "node_modules/supports-color": {
  2702. "version": "8.1.1",
  2703. "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz",
  2704. "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
  2705. "dev": true,
  2706. "dependencies": {
  2707. "has-flag": "^4.0.0"
  2708. },
  2709. "engines": {
  2710. "node": ">=10"
  2711. },
  2712. "funding": {
  2713. "url": "https://github.com/chalk/supports-color?sponsor=1"
  2714. }
  2715. },
  2716. "node_modules/terser": {
  2717. "version": "5.37.0",
  2718. "resolved": "https://registry.npmmirror.com/terser/-/terser-5.37.0.tgz",
  2719. "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==",
  2720. "dev": true,
  2721. "optional": true,
  2722. "peer": true,
  2723. "dependencies": {
  2724. "@jridgewell/source-map": "^0.3.3",
  2725. "acorn": "^8.8.2",
  2726. "commander": "^2.20.0",
  2727. "source-map-support": "~0.5.20"
  2728. },
  2729. "bin": {
  2730. "terser": "bin/terser"
  2731. },
  2732. "engines": {
  2733. "node": ">=10"
  2734. }
  2735. },
  2736. "node_modules/to-regex-range": {
  2737. "version": "5.0.1",
  2738. "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz",
  2739. "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
  2740. "dev": true,
  2741. "license": "MIT",
  2742. "dependencies": {
  2743. "is-number": "^7.0.0"
  2744. },
  2745. "engines": {
  2746. "node": ">=8.0"
  2747. }
  2748. },
  2749. "node_modules/touch": {
  2750. "version": "3.1.1",
  2751. "resolved": "https://registry.npmmirror.com/touch/-/touch-3.1.1.tgz",
  2752. "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
  2753. "dev": true,
  2754. "bin": {
  2755. "nodetouch": "bin/nodetouch.js"
  2756. }
  2757. },
  2758. "node_modules/tree-kill": {
  2759. "version": "1.2.2",
  2760. "resolved": "https://registry.npmmirror.com/tree-kill/-/tree-kill-1.2.2.tgz",
  2761. "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==",
  2762. "dev": true,
  2763. "bin": {
  2764. "tree-kill": "cli.js"
  2765. }
  2766. },
  2767. "node_modules/tslib": {
  2768. "version": "2.8.1",
  2769. "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
  2770. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  2771. "dev": true
  2772. },
  2773. "node_modules/ufo": {
  2774. "version": "1.5.4",
  2775. "resolved": "https://registry.npmmirror.com/ufo/-/ufo-1.5.4.tgz",
  2776. "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==",
  2777. "dev": true,
  2778. "license": "MIT"
  2779. },
  2780. "node_modules/undefsafe": {
  2781. "version": "2.0.5",
  2782. "resolved": "https://registry.npmmirror.com/undefsafe/-/undefsafe-2.0.5.tgz",
  2783. "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
  2784. "dev": true
  2785. },
  2786. "node_modules/undici-types": {
  2787. "version": "6.20.0",
  2788. "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-6.20.0.tgz",
  2789. "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
  2790. "dev": true,
  2791. "optional": true,
  2792. "peer": true
  2793. },
  2794. "node_modules/unimport": {
  2795. "version": "3.14.6",
  2796. "resolved": "https://registry.npmmirror.com/unimport/-/unimport-3.14.6.tgz",
  2797. "integrity": "sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g==",
  2798. "dev": true,
  2799. "license": "MIT",
  2800. "dependencies": {
  2801. "@rollup/pluginutils": "^5.1.4",
  2802. "acorn": "^8.14.0",
  2803. "escape-string-regexp": "^5.0.0",
  2804. "estree-walker": "^3.0.3",
  2805. "fast-glob": "^3.3.3",
  2806. "local-pkg": "^1.0.0",
  2807. "magic-string": "^0.30.17",
  2808. "mlly": "^1.7.4",
  2809. "pathe": "^2.0.1",
  2810. "picomatch": "^4.0.2",
  2811. "pkg-types": "^1.3.0",
  2812. "scule": "^1.3.0",
  2813. "strip-literal": "^2.1.1",
  2814. "unplugin": "^1.16.1"
  2815. }
  2816. },
  2817. "node_modules/unimport/node_modules/estree-walker": {
  2818. "version": "3.0.3",
  2819. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-3.0.3.tgz",
  2820. "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
  2821. "dev": true,
  2822. "license": "MIT",
  2823. "dependencies": {
  2824. "@types/estree": "^1.0.0"
  2825. }
  2826. },
  2827. "node_modules/unimport/node_modules/local-pkg": {
  2828. "version": "1.0.0",
  2829. "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-1.0.0.tgz",
  2830. "integrity": "sha512-bbgPw/wmroJsil/GgL4qjDzs5YLTBMQ99weRsok1XCDccQeehbHA/I1oRvk2NPtr7KGZgT/Y5tPRnAtMqeG2Kg==",
  2831. "dev": true,
  2832. "license": "MIT",
  2833. "dependencies": {
  2834. "mlly": "^1.7.3",
  2835. "pkg-types": "^1.3.0"
  2836. },
  2837. "engines": {
  2838. "node": ">=14"
  2839. },
  2840. "funding": {
  2841. "url": "https://github.com/sponsors/antfu"
  2842. }
  2843. },
  2844. "node_modules/unimport/node_modules/picomatch": {
  2845. "version": "4.0.2",
  2846. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.2.tgz",
  2847. "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
  2848. "dev": true,
  2849. "license": "MIT",
  2850. "engines": {
  2851. "node": ">=12"
  2852. },
  2853. "funding": {
  2854. "url": "https://github.com/sponsors/jonschlinkert"
  2855. }
  2856. },
  2857. "node_modules/unimport/node_modules/unplugin": {
  2858. "version": "1.16.1",
  2859. "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-1.16.1.tgz",
  2860. "integrity": "sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==",
  2861. "dev": true,
  2862. "license": "MIT",
  2863. "dependencies": {
  2864. "acorn": "^8.14.0",
  2865. "webpack-virtual-modules": "^0.6.2"
  2866. },
  2867. "engines": {
  2868. "node": ">=14.0.0"
  2869. }
  2870. },
  2871. "node_modules/unplugin": {
  2872. "version": "2.1.2",
  2873. "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-2.1.2.tgz",
  2874. "integrity": "sha512-Q3LU0e4zxKfRko1wMV2HmP8lB9KWislY7hxXpxd+lGx0PRInE4vhMBVEZwpdVYHvtqzhSrzuIfErsob6bQfCzw==",
  2875. "dev": true,
  2876. "license": "MIT",
  2877. "dependencies": {
  2878. "acorn": "^8.14.0",
  2879. "webpack-virtual-modules": "^0.6.2"
  2880. },
  2881. "engines": {
  2882. "node": ">=18.12.0"
  2883. }
  2884. },
  2885. "node_modules/unplugin-auto-import": {
  2886. "version": "19.0.0",
  2887. "resolved": "https://registry.npmmirror.com/unplugin-auto-import/-/unplugin-auto-import-19.0.0.tgz",
  2888. "integrity": "sha512-TREXtXqCM6YLy3rE2tjvKZEaCiPlP2e5bmnRKaS8AM2MlNgjV7UP4RPieWIfs4Isv0GoeHmov956PIIvJYdqpQ==",
  2889. "dev": true,
  2890. "license": "MIT",
  2891. "dependencies": {
  2892. "@antfu/utils": "^0.7.10",
  2893. "@rollup/pluginutils": "^5.1.4",
  2894. "local-pkg": "^0.5.1",
  2895. "magic-string": "^0.30.17",
  2896. "picomatch": "^4.0.2",
  2897. "unimport": "^3.14.5",
  2898. "unplugin": "^2.1.2"
  2899. },
  2900. "engines": {
  2901. "node": ">=14"
  2902. },
  2903. "funding": {
  2904. "url": "https://github.com/sponsors/antfu"
  2905. },
  2906. "peerDependencies": {
  2907. "@nuxt/kit": "^3.2.2",
  2908. "@vueuse/core": "*"
  2909. },
  2910. "peerDependenciesMeta": {
  2911. "@nuxt/kit": {
  2912. "optional": true
  2913. },
  2914. "@vueuse/core": {
  2915. "optional": true
  2916. }
  2917. }
  2918. },
  2919. "node_modules/unplugin-auto-import/node_modules/picomatch": {
  2920. "version": "4.0.2",
  2921. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.2.tgz",
  2922. "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
  2923. "dev": true,
  2924. "license": "MIT",
  2925. "engines": {
  2926. "node": ">=12"
  2927. },
  2928. "funding": {
  2929. "url": "https://github.com/sponsors/jonschlinkert"
  2930. }
  2931. },
  2932. "node_modules/unplugin-vue-components": {
  2933. "version": "28.0.0",
  2934. "resolved": "https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.0.0.tgz",
  2935. "integrity": "sha512-vYe0wSyqTVhyNFIad1iiGyQGhG++tDOMgohqenMDOAooMJP9vvzCdXTqCVx20A0rCQXFNjgoRbSeDAioLPH36Q==",
  2936. "dev": true,
  2937. "license": "MIT",
  2938. "dependencies": {
  2939. "@antfu/utils": "^0.7.10",
  2940. "@rollup/pluginutils": "^5.1.4",
  2941. "chokidar": "^3.6.0",
  2942. "debug": "^4.4.0",
  2943. "fast-glob": "^3.3.3",
  2944. "local-pkg": "^0.5.1",
  2945. "magic-string": "^0.30.17",
  2946. "minimatch": "^9.0.5",
  2947. "mlly": "^1.7.3",
  2948. "unplugin": "^2.1.2"
  2949. },
  2950. "engines": {
  2951. "node": ">=14"
  2952. },
  2953. "funding": {
  2954. "url": "https://github.com/sponsors/antfu"
  2955. },
  2956. "peerDependencies": {
  2957. "@babel/parser": "^7.15.8",
  2958. "@nuxt/kit": "^3.2.2",
  2959. "vue": "2 || 3"
  2960. },
  2961. "peerDependenciesMeta": {
  2962. "@babel/parser": {
  2963. "optional": true
  2964. },
  2965. "@nuxt/kit": {
  2966. "optional": true
  2967. }
  2968. }
  2969. },
  2970. "node_modules/unplugin-vue-components/node_modules/chokidar": {
  2971. "version": "3.6.0",
  2972. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.6.0.tgz",
  2973. "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
  2974. "dev": true,
  2975. "license": "MIT",
  2976. "dependencies": {
  2977. "anymatch": "~3.1.2",
  2978. "braces": "~3.0.2",
  2979. "glob-parent": "~5.1.2",
  2980. "is-binary-path": "~2.1.0",
  2981. "is-glob": "~4.0.1",
  2982. "normalize-path": "~3.0.0",
  2983. "readdirp": "~3.6.0"
  2984. },
  2985. "engines": {
  2986. "node": ">= 8.10.0"
  2987. },
  2988. "funding": {
  2989. "url": "https://paulmillr.com/funding/"
  2990. },
  2991. "optionalDependencies": {
  2992. "fsevents": "~2.3.2"
  2993. }
  2994. },
  2995. "node_modules/unplugin-vue-components/node_modules/readdirp": {
  2996. "version": "3.6.0",
  2997. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz",
  2998. "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
  2999. "dev": true,
  3000. "license": "MIT",
  3001. "dependencies": {
  3002. "picomatch": "^2.2.1"
  3003. },
  3004. "engines": {
  3005. "node": ">=8.10.0"
  3006. }
  3007. },
  3008. "node_modules/unplugin-vue-setup-extend-plus": {
  3009. "version": "1.0.1",
  3010. "resolved": "https://registry.npmmirror.com/unplugin-vue-setup-extend-plus/-/unplugin-vue-setup-extend-plus-1.0.1.tgz",
  3011. "integrity": "sha512-mW2IzkyJITyspAV/LEdnEyE1CJip9jB5fCeaVv7Q6X0oJyDrOxXoB+jyet0q5pRJNjErbjQx950/8NPTvbqLTQ==",
  3012. "dev": true,
  3013. "license": "MIT",
  3014. "dependencies": {
  3015. "@vue/compiler-sfc": "^3.2.37",
  3016. "magic-string": "^0.26.2",
  3017. "unplugin": "^1.3.1"
  3018. }
  3019. },
  3020. "node_modules/unplugin-vue-setup-extend-plus/node_modules/magic-string": {
  3021. "version": "0.26.7",
  3022. "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.26.7.tgz",
  3023. "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==",
  3024. "dev": true,
  3025. "license": "MIT",
  3026. "dependencies": {
  3027. "sourcemap-codec": "^1.4.8"
  3028. },
  3029. "engines": {
  3030. "node": ">=12"
  3031. }
  3032. },
  3033. "node_modules/unplugin-vue-setup-extend-plus/node_modules/unplugin": {
  3034. "version": "1.16.1",
  3035. "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-1.16.1.tgz",
  3036. "integrity": "sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==",
  3037. "dev": true,
  3038. "license": "MIT",
  3039. "dependencies": {
  3040. "acorn": "^8.14.0",
  3041. "webpack-virtual-modules": "^0.6.2"
  3042. },
  3043. "engines": {
  3044. "node": ">=14.0.0"
  3045. }
  3046. },
  3047. "node_modules/vite": {
  3048. "version": "6.0.7",
  3049. "resolved": "https://registry.npmmirror.com/vite/-/vite-6.0.7.tgz",
  3050. "integrity": "sha512-RDt8r/7qx9940f8FcOIAH9PTViRrghKaK2K1jY3RaAURrEUbm9Du1mJ72G+jlhtG3WwodnfzY8ORQZbBavZEAQ==",
  3051. "dev": true,
  3052. "license": "MIT",
  3053. "dependencies": {
  3054. "esbuild": "^0.24.2",
  3055. "postcss": "^8.4.49",
  3056. "rollup": "^4.23.0"
  3057. },
  3058. "bin": {
  3059. "vite": "bin/vite.js"
  3060. },
  3061. "engines": {
  3062. "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
  3063. },
  3064. "funding": {
  3065. "url": "https://github.com/vitejs/vite?sponsor=1"
  3066. },
  3067. "optionalDependencies": {
  3068. "fsevents": "~2.3.3"
  3069. },
  3070. "peerDependencies": {
  3071. "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
  3072. "jiti": ">=1.21.0",
  3073. "less": "*",
  3074. "lightningcss": "^1.21.0",
  3075. "sass": "*",
  3076. "sass-embedded": "*",
  3077. "stylus": "*",
  3078. "sugarss": "*",
  3079. "terser": "^5.16.0",
  3080. "tsx": "^4.8.1",
  3081. "yaml": "^2.4.2"
  3082. },
  3083. "peerDependenciesMeta": {
  3084. "@types/node": {
  3085. "optional": true
  3086. },
  3087. "jiti": {
  3088. "optional": true
  3089. },
  3090. "less": {
  3091. "optional": true
  3092. },
  3093. "lightningcss": {
  3094. "optional": true
  3095. },
  3096. "sass": {
  3097. "optional": true
  3098. },
  3099. "sass-embedded": {
  3100. "optional": true
  3101. },
  3102. "stylus": {
  3103. "optional": true
  3104. },
  3105. "sugarss": {
  3106. "optional": true
  3107. },
  3108. "terser": {
  3109. "optional": true
  3110. },
  3111. "tsx": {
  3112. "optional": true
  3113. },
  3114. "yaml": {
  3115. "optional": true
  3116. }
  3117. }
  3118. },
  3119. "node_modules/vue": {
  3120. "version": "3.5.13",
  3121. "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.13.tgz",
  3122. "integrity": "sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==",
  3123. "license": "MIT",
  3124. "dependencies": {
  3125. "@vue/compiler-dom": "3.5.13",
  3126. "@vue/compiler-sfc": "3.5.13",
  3127. "@vue/runtime-dom": "3.5.13",
  3128. "@vue/server-renderer": "3.5.13",
  3129. "@vue/shared": "3.5.13"
  3130. },
  3131. "peerDependencies": {
  3132. "typescript": "*"
  3133. },
  3134. "peerDependenciesMeta": {
  3135. "typescript": {
  3136. "optional": true
  3137. }
  3138. }
  3139. },
  3140. "node_modules/vue-router": {
  3141. "version": "4.5.0",
  3142. "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.5.0.tgz",
  3143. "integrity": "sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==",
  3144. "license": "MIT",
  3145. "dependencies": {
  3146. "@vue/devtools-api": "^6.6.4"
  3147. },
  3148. "funding": {
  3149. "url": "https://github.com/sponsors/posva"
  3150. },
  3151. "peerDependencies": {
  3152. "vue": "^3.2.0"
  3153. }
  3154. },
  3155. "node_modules/webpack-virtual-modules": {
  3156. "version": "0.6.2",
  3157. "resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
  3158. "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
  3159. "dev": true,
  3160. "license": "MIT"
  3161. },
  3162. "node_modules/wrap-ansi": {
  3163. "version": "7.0.0",
  3164. "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
  3165. "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
  3166. "dev": true,
  3167. "dependencies": {
  3168. "ansi-styles": "^4.0.0",
  3169. "string-width": "^4.1.0",
  3170. "strip-ansi": "^6.0.0"
  3171. },
  3172. "engines": {
  3173. "node": ">=10"
  3174. },
  3175. "funding": {
  3176. "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
  3177. }
  3178. },
  3179. "node_modules/y18n": {
  3180. "version": "5.0.8",
  3181. "resolved": "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz",
  3182. "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
  3183. "dev": true,
  3184. "engines": {
  3185. "node": ">=10"
  3186. }
  3187. },
  3188. "node_modules/yargs": {
  3189. "version": "17.7.2",
  3190. "resolved": "https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz",
  3191. "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
  3192. "dev": true,
  3193. "dependencies": {
  3194. "cliui": "^8.0.1",
  3195. "escalade": "^3.1.1",
  3196. "get-caller-file": "^2.0.5",
  3197. "require-directory": "^2.1.1",
  3198. "string-width": "^4.2.3",
  3199. "y18n": "^5.0.5",
  3200. "yargs-parser": "^21.1.1"
  3201. },
  3202. "engines": {
  3203. "node": ">=12"
  3204. }
  3205. },
  3206. "node_modules/yargs-parser": {
  3207. "version": "21.1.1",
  3208. "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz",
  3209. "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
  3210. "dev": true,
  3211. "engines": {
  3212. "node": ">=12"
  3213. }
  3214. }
  3215. }
  3216. }