package-lock.json 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508
  1. {
  2. "name": "vite-project",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "vite-project",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "@microsoft/fetch-event-source": "^2.0.1",
  12. "axios": "^1.10.0",
  13. "element-plus": "^2.10.2",
  14. "highlight.js": "^11.11.1",
  15. "markdown-it": "^14.1.0",
  16. "router": "^2.2.0",
  17. "vue": "^3.5.17",
  18. "vue-router": "^4.5.1"
  19. },
  20. "devDependencies": {
  21. "@types/markdown-it": "^14.1.2",
  22. "@types/node": "^24.0.10",
  23. "@vitejs/plugin-vue": "^6.0.0",
  24. "path": "^0.12.7",
  25. "sass": "^1.89.2",
  26. "vite": "^7.0.0"
  27. }
  28. },
  29. "node_modules/@babel/helper-string-parser": {
  30. "version": "7.27.1",
  31. "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  32. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  33. "license": "MIT",
  34. "engines": {
  35. "node": ">=6.9.0"
  36. }
  37. },
  38. "node_modules/@babel/helper-validator-identifier": {
  39. "version": "7.27.1",
  40. "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
  41. "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
  42. "license": "MIT",
  43. "engines": {
  44. "node": ">=6.9.0"
  45. }
  46. },
  47. "node_modules/@babel/parser": {
  48. "version": "7.27.7",
  49. "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.27.7.tgz",
  50. "integrity": "sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==",
  51. "license": "MIT",
  52. "dependencies": {
  53. "@babel/types": "^7.27.7"
  54. },
  55. "bin": {
  56. "parser": "bin/babel-parser.js"
  57. },
  58. "engines": {
  59. "node": ">=6.0.0"
  60. }
  61. },
  62. "node_modules/@babel/types": {
  63. "version": "7.27.7",
  64. "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.27.7.tgz",
  65. "integrity": "sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw==",
  66. "license": "MIT",
  67. "dependencies": {
  68. "@babel/helper-string-parser": "^7.27.1",
  69. "@babel/helper-validator-identifier": "^7.27.1"
  70. },
  71. "engines": {
  72. "node": ">=6.9.0"
  73. }
  74. },
  75. "node_modules/@ctrl/tinycolor": {
  76. "version": "3.6.1",
  77. "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz",
  78. "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==",
  79. "license": "MIT",
  80. "engines": {
  81. "node": ">=10"
  82. }
  83. },
  84. "node_modules/@element-plus/icons-vue": {
  85. "version": "2.3.1",
  86. "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.1.tgz",
  87. "integrity": "sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==",
  88. "license": "MIT",
  89. "peerDependencies": {
  90. "vue": "^3.2.0"
  91. }
  92. },
  93. "node_modules/@esbuild/aix-ppc64": {
  94. "version": "0.25.5",
  95. "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz",
  96. "integrity": "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==",
  97. "cpu": [
  98. "ppc64"
  99. ],
  100. "dev": true,
  101. "license": "MIT",
  102. "optional": true,
  103. "os": [
  104. "aix"
  105. ],
  106. "engines": {
  107. "node": ">=18"
  108. }
  109. },
  110. "node_modules/@esbuild/android-arm": {
  111. "version": "0.25.5",
  112. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.25.5.tgz",
  113. "integrity": "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==",
  114. "cpu": [
  115. "arm"
  116. ],
  117. "dev": true,
  118. "license": "MIT",
  119. "optional": true,
  120. "os": [
  121. "android"
  122. ],
  123. "engines": {
  124. "node": ">=18"
  125. }
  126. },
  127. "node_modules/@esbuild/android-arm64": {
  128. "version": "0.25.5",
  129. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz",
  130. "integrity": "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==",
  131. "cpu": [
  132. "arm64"
  133. ],
  134. "dev": true,
  135. "license": "MIT",
  136. "optional": true,
  137. "os": [
  138. "android"
  139. ],
  140. "engines": {
  141. "node": ">=18"
  142. }
  143. },
  144. "node_modules/@esbuild/android-x64": {
  145. "version": "0.25.5",
  146. "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.25.5.tgz",
  147. "integrity": "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==",
  148. "cpu": [
  149. "x64"
  150. ],
  151. "dev": true,
  152. "license": "MIT",
  153. "optional": true,
  154. "os": [
  155. "android"
  156. ],
  157. "engines": {
  158. "node": ">=18"
  159. }
  160. },
  161. "node_modules/@esbuild/darwin-arm64": {
  162. "version": "0.25.5",
  163. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz",
  164. "integrity": "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==",
  165. "cpu": [
  166. "arm64"
  167. ],
  168. "dev": true,
  169. "license": "MIT",
  170. "optional": true,
  171. "os": [
  172. "darwin"
  173. ],
  174. "engines": {
  175. "node": ">=18"
  176. }
  177. },
  178. "node_modules/@esbuild/darwin-x64": {
  179. "version": "0.25.5",
  180. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz",
  181. "integrity": "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==",
  182. "cpu": [
  183. "x64"
  184. ],
  185. "dev": true,
  186. "license": "MIT",
  187. "optional": true,
  188. "os": [
  189. "darwin"
  190. ],
  191. "engines": {
  192. "node": ">=18"
  193. }
  194. },
  195. "node_modules/@esbuild/freebsd-arm64": {
  196. "version": "0.25.5",
  197. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz",
  198. "integrity": "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==",
  199. "cpu": [
  200. "arm64"
  201. ],
  202. "dev": true,
  203. "license": "MIT",
  204. "optional": true,
  205. "os": [
  206. "freebsd"
  207. ],
  208. "engines": {
  209. "node": ">=18"
  210. }
  211. },
  212. "node_modules/@esbuild/freebsd-x64": {
  213. "version": "0.25.5",
  214. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz",
  215. "integrity": "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==",
  216. "cpu": [
  217. "x64"
  218. ],
  219. "dev": true,
  220. "license": "MIT",
  221. "optional": true,
  222. "os": [
  223. "freebsd"
  224. ],
  225. "engines": {
  226. "node": ">=18"
  227. }
  228. },
  229. "node_modules/@esbuild/linux-arm": {
  230. "version": "0.25.5",
  231. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz",
  232. "integrity": "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==",
  233. "cpu": [
  234. "arm"
  235. ],
  236. "dev": true,
  237. "license": "MIT",
  238. "optional": true,
  239. "os": [
  240. "linux"
  241. ],
  242. "engines": {
  243. "node": ">=18"
  244. }
  245. },
  246. "node_modules/@esbuild/linux-arm64": {
  247. "version": "0.25.5",
  248. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz",
  249. "integrity": "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==",
  250. "cpu": [
  251. "arm64"
  252. ],
  253. "dev": true,
  254. "license": "MIT",
  255. "optional": true,
  256. "os": [
  257. "linux"
  258. ],
  259. "engines": {
  260. "node": ">=18"
  261. }
  262. },
  263. "node_modules/@esbuild/linux-ia32": {
  264. "version": "0.25.5",
  265. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz",
  266. "integrity": "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==",
  267. "cpu": [
  268. "ia32"
  269. ],
  270. "dev": true,
  271. "license": "MIT",
  272. "optional": true,
  273. "os": [
  274. "linux"
  275. ],
  276. "engines": {
  277. "node": ">=18"
  278. }
  279. },
  280. "node_modules/@esbuild/linux-loong64": {
  281. "version": "0.25.5",
  282. "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz",
  283. "integrity": "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==",
  284. "cpu": [
  285. "loong64"
  286. ],
  287. "dev": true,
  288. "license": "MIT",
  289. "optional": true,
  290. "os": [
  291. "linux"
  292. ],
  293. "engines": {
  294. "node": ">=18"
  295. }
  296. },
  297. "node_modules/@esbuild/linux-mips64el": {
  298. "version": "0.25.5",
  299. "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz",
  300. "integrity": "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==",
  301. "cpu": [
  302. "mips64el"
  303. ],
  304. "dev": true,
  305. "license": "MIT",
  306. "optional": true,
  307. "os": [
  308. "linux"
  309. ],
  310. "engines": {
  311. "node": ">=18"
  312. }
  313. },
  314. "node_modules/@esbuild/linux-ppc64": {
  315. "version": "0.25.5",
  316. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz",
  317. "integrity": "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==",
  318. "cpu": [
  319. "ppc64"
  320. ],
  321. "dev": true,
  322. "license": "MIT",
  323. "optional": true,
  324. "os": [
  325. "linux"
  326. ],
  327. "engines": {
  328. "node": ">=18"
  329. }
  330. },
  331. "node_modules/@esbuild/linux-riscv64": {
  332. "version": "0.25.5",
  333. "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz",
  334. "integrity": "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==",
  335. "cpu": [
  336. "riscv64"
  337. ],
  338. "dev": true,
  339. "license": "MIT",
  340. "optional": true,
  341. "os": [
  342. "linux"
  343. ],
  344. "engines": {
  345. "node": ">=18"
  346. }
  347. },
  348. "node_modules/@esbuild/linux-s390x": {
  349. "version": "0.25.5",
  350. "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz",
  351. "integrity": "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==",
  352. "cpu": [
  353. "s390x"
  354. ],
  355. "dev": true,
  356. "license": "MIT",
  357. "optional": true,
  358. "os": [
  359. "linux"
  360. ],
  361. "engines": {
  362. "node": ">=18"
  363. }
  364. },
  365. "node_modules/@esbuild/linux-x64": {
  366. "version": "0.25.5",
  367. "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz",
  368. "integrity": "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==",
  369. "cpu": [
  370. "x64"
  371. ],
  372. "dev": true,
  373. "license": "MIT",
  374. "optional": true,
  375. "os": [
  376. "linux"
  377. ],
  378. "engines": {
  379. "node": ">=18"
  380. }
  381. },
  382. "node_modules/@esbuild/netbsd-arm64": {
  383. "version": "0.25.5",
  384. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz",
  385. "integrity": "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==",
  386. "cpu": [
  387. "arm64"
  388. ],
  389. "dev": true,
  390. "license": "MIT",
  391. "optional": true,
  392. "os": [
  393. "netbsd"
  394. ],
  395. "engines": {
  396. "node": ">=18"
  397. }
  398. },
  399. "node_modules/@esbuild/netbsd-x64": {
  400. "version": "0.25.5",
  401. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz",
  402. "integrity": "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==",
  403. "cpu": [
  404. "x64"
  405. ],
  406. "dev": true,
  407. "license": "MIT",
  408. "optional": true,
  409. "os": [
  410. "netbsd"
  411. ],
  412. "engines": {
  413. "node": ">=18"
  414. }
  415. },
  416. "node_modules/@esbuild/openbsd-arm64": {
  417. "version": "0.25.5",
  418. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz",
  419. "integrity": "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==",
  420. "cpu": [
  421. "arm64"
  422. ],
  423. "dev": true,
  424. "license": "MIT",
  425. "optional": true,
  426. "os": [
  427. "openbsd"
  428. ],
  429. "engines": {
  430. "node": ">=18"
  431. }
  432. },
  433. "node_modules/@esbuild/openbsd-x64": {
  434. "version": "0.25.5",
  435. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz",
  436. "integrity": "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==",
  437. "cpu": [
  438. "x64"
  439. ],
  440. "dev": true,
  441. "license": "MIT",
  442. "optional": true,
  443. "os": [
  444. "openbsd"
  445. ],
  446. "engines": {
  447. "node": ">=18"
  448. }
  449. },
  450. "node_modules/@esbuild/sunos-x64": {
  451. "version": "0.25.5",
  452. "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz",
  453. "integrity": "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==",
  454. "cpu": [
  455. "x64"
  456. ],
  457. "dev": true,
  458. "license": "MIT",
  459. "optional": true,
  460. "os": [
  461. "sunos"
  462. ],
  463. "engines": {
  464. "node": ">=18"
  465. }
  466. },
  467. "node_modules/@esbuild/win32-arm64": {
  468. "version": "0.25.5",
  469. "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz",
  470. "integrity": "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==",
  471. "cpu": [
  472. "arm64"
  473. ],
  474. "dev": true,
  475. "license": "MIT",
  476. "optional": true,
  477. "os": [
  478. "win32"
  479. ],
  480. "engines": {
  481. "node": ">=18"
  482. }
  483. },
  484. "node_modules/@esbuild/win32-ia32": {
  485. "version": "0.25.5",
  486. "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz",
  487. "integrity": "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==",
  488. "cpu": [
  489. "ia32"
  490. ],
  491. "dev": true,
  492. "license": "MIT",
  493. "optional": true,
  494. "os": [
  495. "win32"
  496. ],
  497. "engines": {
  498. "node": ">=18"
  499. }
  500. },
  501. "node_modules/@esbuild/win32-x64": {
  502. "version": "0.25.5",
  503. "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz",
  504. "integrity": "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==",
  505. "cpu": [
  506. "x64"
  507. ],
  508. "dev": true,
  509. "license": "MIT",
  510. "optional": true,
  511. "os": [
  512. "win32"
  513. ],
  514. "engines": {
  515. "node": ">=18"
  516. }
  517. },
  518. "node_modules/@floating-ui/core": {
  519. "version": "1.7.2",
  520. "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.7.2.tgz",
  521. "integrity": "sha512-wNB5ooIKHQc+Kui96jE/n69rHFWAVoxn5CAzL1Xdd8FG03cgY3MLO+GF9U3W737fYDSgPWA6MReKhBQBop6Pcw==",
  522. "license": "MIT",
  523. "dependencies": {
  524. "@floating-ui/utils": "^0.2.10"
  525. }
  526. },
  527. "node_modules/@floating-ui/dom": {
  528. "version": "1.7.2",
  529. "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.7.2.tgz",
  530. "integrity": "sha512-7cfaOQuCS27HD7DX+6ib2OrnW+b4ZBwDNnCcT0uTyidcmyWb03FnQqJybDBoCnpdxwBSfA94UAYlRCt7mV+TbA==",
  531. "license": "MIT",
  532. "dependencies": {
  533. "@floating-ui/core": "^1.7.2",
  534. "@floating-ui/utils": "^0.2.10"
  535. }
  536. },
  537. "node_modules/@floating-ui/utils": {
  538. "version": "0.2.10",
  539. "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.10.tgz",
  540. "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
  541. "license": "MIT"
  542. },
  543. "node_modules/@jridgewell/sourcemap-codec": {
  544. "version": "1.5.2",
  545. "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.2.tgz",
  546. "integrity": "sha512-gKYheCylLIedI+CSZoDtGkFV9YEBxRRVcfCH7OfAqh4TyUyRjEE6WVE/aXDXX0p8BIe/QgLcaAoI0220KRRFgg==",
  547. "license": "MIT"
  548. },
  549. "node_modules/@microsoft/fetch-event-source": {
  550. "version": "2.0.1",
  551. "resolved": "https://registry.npmmirror.com/@microsoft/fetch-event-source/-/fetch-event-source-2.0.1.tgz",
  552. "integrity": "sha512-W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==",
  553. "license": "MIT"
  554. },
  555. "node_modules/@parcel/watcher": {
  556. "version": "2.5.1",
  557. "resolved": "https://registry.npmmirror.com/@parcel/watcher/-/watcher-2.5.1.tgz",
  558. "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==",
  559. "dev": true,
  560. "hasInstallScript": true,
  561. "license": "MIT",
  562. "optional": true,
  563. "dependencies": {
  564. "detect-libc": "^1.0.3",
  565. "is-glob": "^4.0.3",
  566. "micromatch": "^4.0.5",
  567. "node-addon-api": "^7.0.0"
  568. },
  569. "engines": {
  570. "node": ">= 10.0.0"
  571. },
  572. "funding": {
  573. "type": "opencollective",
  574. "url": "https://opencollective.com/parcel"
  575. },
  576. "optionalDependencies": {
  577. "@parcel/watcher-android-arm64": "2.5.1",
  578. "@parcel/watcher-darwin-arm64": "2.5.1",
  579. "@parcel/watcher-darwin-x64": "2.5.1",
  580. "@parcel/watcher-freebsd-x64": "2.5.1",
  581. "@parcel/watcher-linux-arm-glibc": "2.5.1",
  582. "@parcel/watcher-linux-arm-musl": "2.5.1",
  583. "@parcel/watcher-linux-arm64-glibc": "2.5.1",
  584. "@parcel/watcher-linux-arm64-musl": "2.5.1",
  585. "@parcel/watcher-linux-x64-glibc": "2.5.1",
  586. "@parcel/watcher-linux-x64-musl": "2.5.1",
  587. "@parcel/watcher-win32-arm64": "2.5.1",
  588. "@parcel/watcher-win32-ia32": "2.5.1",
  589. "@parcel/watcher-win32-x64": "2.5.1"
  590. }
  591. },
  592. "node_modules/@parcel/watcher-android-arm64": {
  593. "version": "2.5.1",
  594. "resolved": "https://registry.npmmirror.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz",
  595. "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==",
  596. "cpu": [
  597. "arm64"
  598. ],
  599. "dev": true,
  600. "license": "MIT",
  601. "optional": true,
  602. "os": [
  603. "android"
  604. ],
  605. "engines": {
  606. "node": ">= 10.0.0"
  607. },
  608. "funding": {
  609. "type": "opencollective",
  610. "url": "https://opencollective.com/parcel"
  611. }
  612. },
  613. "node_modules/@parcel/watcher-darwin-arm64": {
  614. "version": "2.5.1",
  615. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz",
  616. "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==",
  617. "cpu": [
  618. "arm64"
  619. ],
  620. "dev": true,
  621. "license": "MIT",
  622. "optional": true,
  623. "os": [
  624. "darwin"
  625. ],
  626. "engines": {
  627. "node": ">= 10.0.0"
  628. },
  629. "funding": {
  630. "type": "opencollective",
  631. "url": "https://opencollective.com/parcel"
  632. }
  633. },
  634. "node_modules/@parcel/watcher-darwin-x64": {
  635. "version": "2.5.1",
  636. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz",
  637. "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==",
  638. "cpu": [
  639. "x64"
  640. ],
  641. "dev": true,
  642. "license": "MIT",
  643. "optional": true,
  644. "os": [
  645. "darwin"
  646. ],
  647. "engines": {
  648. "node": ">= 10.0.0"
  649. },
  650. "funding": {
  651. "type": "opencollective",
  652. "url": "https://opencollective.com/parcel"
  653. }
  654. },
  655. "node_modules/@parcel/watcher-freebsd-x64": {
  656. "version": "2.5.1",
  657. "resolved": "https://registry.npmmirror.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz",
  658. "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==",
  659. "cpu": [
  660. "x64"
  661. ],
  662. "dev": true,
  663. "license": "MIT",
  664. "optional": true,
  665. "os": [
  666. "freebsd"
  667. ],
  668. "engines": {
  669. "node": ">= 10.0.0"
  670. },
  671. "funding": {
  672. "type": "opencollective",
  673. "url": "https://opencollective.com/parcel"
  674. }
  675. },
  676. "node_modules/@parcel/watcher-linux-arm-glibc": {
  677. "version": "2.5.1",
  678. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz",
  679. "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==",
  680. "cpu": [
  681. "arm"
  682. ],
  683. "dev": true,
  684. "license": "MIT",
  685. "optional": true,
  686. "os": [
  687. "linux"
  688. ],
  689. "engines": {
  690. "node": ">= 10.0.0"
  691. },
  692. "funding": {
  693. "type": "opencollective",
  694. "url": "https://opencollective.com/parcel"
  695. }
  696. },
  697. "node_modules/@parcel/watcher-linux-arm-musl": {
  698. "version": "2.5.1",
  699. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz",
  700. "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==",
  701. "cpu": [
  702. "arm"
  703. ],
  704. "dev": true,
  705. "license": "MIT",
  706. "optional": true,
  707. "os": [
  708. "linux"
  709. ],
  710. "engines": {
  711. "node": ">= 10.0.0"
  712. },
  713. "funding": {
  714. "type": "opencollective",
  715. "url": "https://opencollective.com/parcel"
  716. }
  717. },
  718. "node_modules/@parcel/watcher-linux-arm64-glibc": {
  719. "version": "2.5.1",
  720. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz",
  721. "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==",
  722. "cpu": [
  723. "arm64"
  724. ],
  725. "dev": true,
  726. "license": "MIT",
  727. "optional": true,
  728. "os": [
  729. "linux"
  730. ],
  731. "engines": {
  732. "node": ">= 10.0.0"
  733. },
  734. "funding": {
  735. "type": "opencollective",
  736. "url": "https://opencollective.com/parcel"
  737. }
  738. },
  739. "node_modules/@parcel/watcher-linux-arm64-musl": {
  740. "version": "2.5.1",
  741. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz",
  742. "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==",
  743. "cpu": [
  744. "arm64"
  745. ],
  746. "dev": true,
  747. "license": "MIT",
  748. "optional": true,
  749. "os": [
  750. "linux"
  751. ],
  752. "engines": {
  753. "node": ">= 10.0.0"
  754. },
  755. "funding": {
  756. "type": "opencollective",
  757. "url": "https://opencollective.com/parcel"
  758. }
  759. },
  760. "node_modules/@parcel/watcher-linux-x64-glibc": {
  761. "version": "2.5.1",
  762. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz",
  763. "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==",
  764. "cpu": [
  765. "x64"
  766. ],
  767. "dev": true,
  768. "license": "MIT",
  769. "optional": true,
  770. "os": [
  771. "linux"
  772. ],
  773. "engines": {
  774. "node": ">= 10.0.0"
  775. },
  776. "funding": {
  777. "type": "opencollective",
  778. "url": "https://opencollective.com/parcel"
  779. }
  780. },
  781. "node_modules/@parcel/watcher-linux-x64-musl": {
  782. "version": "2.5.1",
  783. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz",
  784. "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==",
  785. "cpu": [
  786. "x64"
  787. ],
  788. "dev": true,
  789. "license": "MIT",
  790. "optional": true,
  791. "os": [
  792. "linux"
  793. ],
  794. "engines": {
  795. "node": ">= 10.0.0"
  796. },
  797. "funding": {
  798. "type": "opencollective",
  799. "url": "https://opencollective.com/parcel"
  800. }
  801. },
  802. "node_modules/@parcel/watcher-win32-arm64": {
  803. "version": "2.5.1",
  804. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz",
  805. "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==",
  806. "cpu": [
  807. "arm64"
  808. ],
  809. "dev": true,
  810. "license": "MIT",
  811. "optional": true,
  812. "os": [
  813. "win32"
  814. ],
  815. "engines": {
  816. "node": ">= 10.0.0"
  817. },
  818. "funding": {
  819. "type": "opencollective",
  820. "url": "https://opencollective.com/parcel"
  821. }
  822. },
  823. "node_modules/@parcel/watcher-win32-ia32": {
  824. "version": "2.5.1",
  825. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz",
  826. "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==",
  827. "cpu": [
  828. "ia32"
  829. ],
  830. "dev": true,
  831. "license": "MIT",
  832. "optional": true,
  833. "os": [
  834. "win32"
  835. ],
  836. "engines": {
  837. "node": ">= 10.0.0"
  838. },
  839. "funding": {
  840. "type": "opencollective",
  841. "url": "https://opencollective.com/parcel"
  842. }
  843. },
  844. "node_modules/@parcel/watcher-win32-x64": {
  845. "version": "2.5.1",
  846. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz",
  847. "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==",
  848. "cpu": [
  849. "x64"
  850. ],
  851. "dev": true,
  852. "license": "MIT",
  853. "optional": true,
  854. "os": [
  855. "win32"
  856. ],
  857. "engines": {
  858. "node": ">= 10.0.0"
  859. },
  860. "funding": {
  861. "type": "opencollective",
  862. "url": "https://opencollective.com/parcel"
  863. }
  864. },
  865. "node_modules/@popperjs/core": {
  866. "name": "@sxzz/popperjs-es",
  867. "version": "2.11.7",
  868. "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz",
  869. "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==",
  870. "license": "MIT",
  871. "funding": {
  872. "type": "opencollective",
  873. "url": "https://opencollective.com/popperjs"
  874. }
  875. },
  876. "node_modules/@rolldown/pluginutils": {
  877. "version": "1.0.0-beta.19",
  878. "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.19.tgz",
  879. "integrity": "sha512-3FL3mnMbPu0muGOCaKAhhFEYmqv9eTfPSJRJmANrCwtgK8VuxpsZDGK+m0LYAGoyO8+0j5uRe4PeyPDK1yA/hA==",
  880. "dev": true,
  881. "license": "MIT"
  882. },
  883. "node_modules/@rollup/rollup-android-arm-eabi": {
  884. "version": "4.44.1",
  885. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.44.1.tgz",
  886. "integrity": "sha512-JAcBr1+fgqx20m7Fwe1DxPUl/hPkee6jA6Pl7n1v2EFiktAHenTaXl5aIFjUIEsfn9w3HE4gK1lEgNGMzBDs1w==",
  887. "cpu": [
  888. "arm"
  889. ],
  890. "dev": true,
  891. "license": "MIT",
  892. "optional": true,
  893. "os": [
  894. "android"
  895. ]
  896. },
  897. "node_modules/@rollup/rollup-android-arm64": {
  898. "version": "4.44.1",
  899. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.44.1.tgz",
  900. "integrity": "sha512-RurZetXqTu4p+G0ChbnkwBuAtwAbIwJkycw1n6GvlGlBuS4u5qlr5opix8cBAYFJgaY05TWtM+LaoFggUmbZEQ==",
  901. "cpu": [
  902. "arm64"
  903. ],
  904. "dev": true,
  905. "license": "MIT",
  906. "optional": true,
  907. "os": [
  908. "android"
  909. ]
  910. },
  911. "node_modules/@rollup/rollup-darwin-arm64": {
  912. "version": "4.44.1",
  913. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.44.1.tgz",
  914. "integrity": "sha512-fM/xPesi7g2M7chk37LOnmnSTHLG/v2ggWqKj3CCA1rMA4mm5KVBT1fNoswbo1JhPuNNZrVwpTvlCVggv8A2zg==",
  915. "cpu": [
  916. "arm64"
  917. ],
  918. "dev": true,
  919. "license": "MIT",
  920. "optional": true,
  921. "os": [
  922. "darwin"
  923. ]
  924. },
  925. "node_modules/@rollup/rollup-darwin-x64": {
  926. "version": "4.44.1",
  927. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.44.1.tgz",
  928. "integrity": "sha512-gDnWk57urJrkrHQ2WVx9TSVTH7lSlU7E3AFqiko+bgjlh78aJ88/3nycMax52VIVjIm3ObXnDL2H00e/xzoipw==",
  929. "cpu": [
  930. "x64"
  931. ],
  932. "dev": true,
  933. "license": "MIT",
  934. "optional": true,
  935. "os": [
  936. "darwin"
  937. ]
  938. },
  939. "node_modules/@rollup/rollup-freebsd-arm64": {
  940. "version": "4.44.1",
  941. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.44.1.tgz",
  942. "integrity": "sha512-wnFQmJ/zPThM5zEGcnDcCJeYJgtSLjh1d//WuHzhf6zT3Md1BvvhJnWoy+HECKu2bMxaIcfWiu3bJgx6z4g2XA==",
  943. "cpu": [
  944. "arm64"
  945. ],
  946. "dev": true,
  947. "license": "MIT",
  948. "optional": true,
  949. "os": [
  950. "freebsd"
  951. ]
  952. },
  953. "node_modules/@rollup/rollup-freebsd-x64": {
  954. "version": "4.44.1",
  955. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.44.1.tgz",
  956. "integrity": "sha512-uBmIxoJ4493YATvU2c0upGz87f99e3wop7TJgOA/bXMFd2SvKCI7xkxY/5k50bv7J6dw1SXT4MQBQSLn8Bb/Uw==",
  957. "cpu": [
  958. "x64"
  959. ],
  960. "dev": true,
  961. "license": "MIT",
  962. "optional": true,
  963. "os": [
  964. "freebsd"
  965. ]
  966. },
  967. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  968. "version": "4.44.1",
  969. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.44.1.tgz",
  970. "integrity": "sha512-n0edDmSHlXFhrlmTK7XBuwKlG5MbS7yleS1cQ9nn4kIeW+dJH+ExqNgQ0RrFRew8Y+0V/x6C5IjsHrJmiHtkxQ==",
  971. "cpu": [
  972. "arm"
  973. ],
  974. "dev": true,
  975. "license": "MIT",
  976. "optional": true,
  977. "os": [
  978. "linux"
  979. ]
  980. },
  981. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  982. "version": "4.44.1",
  983. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.44.1.tgz",
  984. "integrity": "sha512-8WVUPy3FtAsKSpyk21kV52HCxB+me6YkbkFHATzC2Yd3yuqHwy2lbFL4alJOLXKljoRw08Zk8/xEj89cLQ/4Nw==",
  985. "cpu": [
  986. "arm"
  987. ],
  988. "dev": true,
  989. "license": "MIT",
  990. "optional": true,
  991. "os": [
  992. "linux"
  993. ]
  994. },
  995. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  996. "version": "4.44.1",
  997. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.44.1.tgz",
  998. "integrity": "sha512-yuktAOaeOgorWDeFJggjuCkMGeITfqvPgkIXhDqsfKX8J3jGyxdDZgBV/2kj/2DyPaLiX6bPdjJDTu9RB8lUPQ==",
  999. "cpu": [
  1000. "arm64"
  1001. ],
  1002. "dev": true,
  1003. "license": "MIT",
  1004. "optional": true,
  1005. "os": [
  1006. "linux"
  1007. ]
  1008. },
  1009. "node_modules/@rollup/rollup-linux-arm64-musl": {
  1010. "version": "4.44.1",
  1011. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.44.1.tgz",
  1012. "integrity": "sha512-W+GBM4ifET1Plw8pdVaecwUgxmiH23CfAUj32u8knq0JPFyK4weRy6H7ooxYFD19YxBulL0Ktsflg5XS7+7u9g==",
  1013. "cpu": [
  1014. "arm64"
  1015. ],
  1016. "dev": true,
  1017. "license": "MIT",
  1018. "optional": true,
  1019. "os": [
  1020. "linux"
  1021. ]
  1022. },
  1023. "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
  1024. "version": "4.44.1",
  1025. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.44.1.tgz",
  1026. "integrity": "sha512-1zqnUEMWp9WrGVuVak6jWTl4fEtrVKfZY7CvcBmUUpxAJ7WcSowPSAWIKa/0o5mBL/Ij50SIf9tuirGx63Ovew==",
  1027. "cpu": [
  1028. "loong64"
  1029. ],
  1030. "dev": true,
  1031. "license": "MIT",
  1032. "optional": true,
  1033. "os": [
  1034. "linux"
  1035. ]
  1036. },
  1037. "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
  1038. "version": "4.44.1",
  1039. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.44.1.tgz",
  1040. "integrity": "sha512-Rl3JKaRu0LHIx7ExBAAnf0JcOQetQffaw34T8vLlg9b1IhzcBgaIdnvEbbsZq9uZp3uAH+JkHd20Nwn0h9zPjA==",
  1041. "cpu": [
  1042. "ppc64"
  1043. ],
  1044. "dev": true,
  1045. "license": "MIT",
  1046. "optional": true,
  1047. "os": [
  1048. "linux"
  1049. ]
  1050. },
  1051. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  1052. "version": "4.44.1",
  1053. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.44.1.tgz",
  1054. "integrity": "sha512-j5akelU3snyL6K3N/iX7otLBIl347fGwmd95U5gS/7z6T4ftK288jKq3A5lcFKcx7wwzb5rgNvAg3ZbV4BqUSw==",
  1055. "cpu": [
  1056. "riscv64"
  1057. ],
  1058. "dev": true,
  1059. "license": "MIT",
  1060. "optional": true,
  1061. "os": [
  1062. "linux"
  1063. ]
  1064. },
  1065. "node_modules/@rollup/rollup-linux-riscv64-musl": {
  1066. "version": "4.44.1",
  1067. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.44.1.tgz",
  1068. "integrity": "sha512-ppn5llVGgrZw7yxbIm8TTvtj1EoPgYUAbfw0uDjIOzzoqlZlZrLJ/KuiE7uf5EpTpCTrNt1EdtzF0naMm0wGYg==",
  1069. "cpu": [
  1070. "riscv64"
  1071. ],
  1072. "dev": true,
  1073. "license": "MIT",
  1074. "optional": true,
  1075. "os": [
  1076. "linux"
  1077. ]
  1078. },
  1079. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  1080. "version": "4.44.1",
  1081. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.44.1.tgz",
  1082. "integrity": "sha512-Hu6hEdix0oxtUma99jSP7xbvjkUM/ycke/AQQ4EC5g7jNRLLIwjcNwaUy95ZKBJJwg1ZowsclNnjYqzN4zwkAw==",
  1083. "cpu": [
  1084. "s390x"
  1085. ],
  1086. "dev": true,
  1087. "license": "MIT",
  1088. "optional": true,
  1089. "os": [
  1090. "linux"
  1091. ]
  1092. },
  1093. "node_modules/@rollup/rollup-linux-x64-gnu": {
  1094. "version": "4.44.1",
  1095. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.1.tgz",
  1096. "integrity": "sha512-EtnsrmZGomz9WxK1bR5079zee3+7a+AdFlghyd6VbAjgRJDbTANJ9dcPIPAi76uG05micpEL+gPGmAKYTschQw==",
  1097. "cpu": [
  1098. "x64"
  1099. ],
  1100. "dev": true,
  1101. "license": "MIT",
  1102. "optional": true,
  1103. "os": [
  1104. "linux"
  1105. ]
  1106. },
  1107. "node_modules/@rollup/rollup-linux-x64-musl": {
  1108. "version": "4.44.1",
  1109. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.44.1.tgz",
  1110. "integrity": "sha512-iAS4p+J1az6Usn0f8xhgL4PaU878KEtutP4hqw52I4IO6AGoyOkHCxcc4bqufv1tQLdDWFx8lR9YlwxKuv3/3g==",
  1111. "cpu": [
  1112. "x64"
  1113. ],
  1114. "dev": true,
  1115. "license": "MIT",
  1116. "optional": true,
  1117. "os": [
  1118. "linux"
  1119. ]
  1120. },
  1121. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  1122. "version": "4.44.1",
  1123. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.44.1.tgz",
  1124. "integrity": "sha512-NtSJVKcXwcqozOl+FwI41OH3OApDyLk3kqTJgx8+gp6On9ZEt5mYhIsKNPGuaZr3p9T6NWPKGU/03Vw4CNU9qg==",
  1125. "cpu": [
  1126. "arm64"
  1127. ],
  1128. "dev": true,
  1129. "license": "MIT",
  1130. "optional": true,
  1131. "os": [
  1132. "win32"
  1133. ]
  1134. },
  1135. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  1136. "version": "4.44.1",
  1137. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.44.1.tgz",
  1138. "integrity": "sha512-JYA3qvCOLXSsnTR3oiyGws1Dm0YTuxAAeaYGVlGpUsHqloPcFjPg+X0Fj2qODGLNwQOAcCiQmHub/V007kiH5A==",
  1139. "cpu": [
  1140. "ia32"
  1141. ],
  1142. "dev": true,
  1143. "license": "MIT",
  1144. "optional": true,
  1145. "os": [
  1146. "win32"
  1147. ]
  1148. },
  1149. "node_modules/@rollup/rollup-win32-x64-msvc": {
  1150. "version": "4.44.1",
  1151. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.44.1.tgz",
  1152. "integrity": "sha512-J8o22LuF0kTe7m+8PvW9wk3/bRq5+mRo5Dqo6+vXb7otCm3TPhYOJqOaQtGU9YMWQSL3krMnoOxMr0+9E6F3Ug==",
  1153. "cpu": [
  1154. "x64"
  1155. ],
  1156. "dev": true,
  1157. "license": "MIT",
  1158. "optional": true,
  1159. "os": [
  1160. "win32"
  1161. ]
  1162. },
  1163. "node_modules/@types/estree": {
  1164. "version": "1.0.8",
  1165. "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz",
  1166. "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
  1167. "dev": true,
  1168. "license": "MIT"
  1169. },
  1170. "node_modules/@types/linkify-it": {
  1171. "version": "5.0.0",
  1172. "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz",
  1173. "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==",
  1174. "dev": true,
  1175. "license": "MIT"
  1176. },
  1177. "node_modules/@types/lodash": {
  1178. "version": "4.17.19",
  1179. "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.19.tgz",
  1180. "integrity": "sha512-NYqRyg/hIQrYPT9lbOeYc3kIRabJDn/k4qQHIXUpx88CBDww2fD15Sg5kbXlW86zm2XEW4g0QxkTI3/Kfkc7xQ==",
  1181. "license": "MIT"
  1182. },
  1183. "node_modules/@types/lodash-es": {
  1184. "version": "4.17.12",
  1185. "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  1186. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  1187. "license": "MIT",
  1188. "dependencies": {
  1189. "@types/lodash": "*"
  1190. }
  1191. },
  1192. "node_modules/@types/markdown-it": {
  1193. "version": "14.1.2",
  1194. "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz",
  1195. "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==",
  1196. "dev": true,
  1197. "license": "MIT",
  1198. "dependencies": {
  1199. "@types/linkify-it": "^5",
  1200. "@types/mdurl": "^2"
  1201. }
  1202. },
  1203. "node_modules/@types/mdurl": {
  1204. "version": "2.0.0",
  1205. "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz",
  1206. "integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==",
  1207. "dev": true,
  1208. "license": "MIT"
  1209. },
  1210. "node_modules/@types/node": {
  1211. "version": "24.0.10",
  1212. "resolved": "https://registry.npmmirror.com/@types/node/-/node-24.0.10.tgz",
  1213. "integrity": "sha512-ENHwaH+JIRTDIEEbDK6QSQntAYGtbvdDXnMXnZaZ6k13Du1dPMmprkEHIL7ok2Wl2aZevetwTAb5S+7yIF+enA==",
  1214. "dev": true,
  1215. "license": "MIT",
  1216. "dependencies": {
  1217. "undici-types": "~7.8.0"
  1218. }
  1219. },
  1220. "node_modules/@types/web-bluetooth": {
  1221. "version": "0.0.16",
  1222. "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz",
  1223. "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==",
  1224. "license": "MIT"
  1225. },
  1226. "node_modules/@vitejs/plugin-vue": {
  1227. "version": "6.0.0",
  1228. "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.0.tgz",
  1229. "integrity": "sha512-iAliE72WsdhjzTOp2DtvKThq1VBC4REhwRcaA+zPAAph6I+OQhUXv+Xu2KS7ElxYtb7Zc/3R30Hwv1DxEo7NXQ==",
  1230. "dev": true,
  1231. "license": "MIT",
  1232. "dependencies": {
  1233. "@rolldown/pluginutils": "1.0.0-beta.19"
  1234. },
  1235. "engines": {
  1236. "node": "^20.19.0 || >=22.12.0"
  1237. },
  1238. "peerDependencies": {
  1239. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0",
  1240. "vue": "^3.2.25"
  1241. }
  1242. },
  1243. "node_modules/@vue/compiler-core": {
  1244. "version": "3.5.17",
  1245. "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.17.tgz",
  1246. "integrity": "sha512-Xe+AittLbAyV0pabcN7cP7/BenRBNcteM4aSDCtRvGw0d9OL+HG1u/XHLY/kt1q4fyMeZYXyIYrsHuPSiDPosA==",
  1247. "license": "MIT",
  1248. "dependencies": {
  1249. "@babel/parser": "^7.27.5",
  1250. "@vue/shared": "3.5.17",
  1251. "entities": "^4.5.0",
  1252. "estree-walker": "^2.0.2",
  1253. "source-map-js": "^1.2.1"
  1254. }
  1255. },
  1256. "node_modules/@vue/compiler-dom": {
  1257. "version": "3.5.17",
  1258. "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.17.tgz",
  1259. "integrity": "sha512-+2UgfLKoaNLhgfhV5Ihnk6wB4ljyW1/7wUIog2puUqajiC29Lp5R/IKDdkebh9jTbTogTbsgB+OY9cEWzG95JQ==",
  1260. "license": "MIT",
  1261. "dependencies": {
  1262. "@vue/compiler-core": "3.5.17",
  1263. "@vue/shared": "3.5.17"
  1264. }
  1265. },
  1266. "node_modules/@vue/compiler-sfc": {
  1267. "version": "3.5.17",
  1268. "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.17.tgz",
  1269. "integrity": "sha512-rQQxbRJMgTqwRugtjw0cnyQv9cP4/4BxWfTdRBkqsTfLOHWykLzbOc3C4GGzAmdMDxhzU/1Ija5bTjMVrddqww==",
  1270. "license": "MIT",
  1271. "dependencies": {
  1272. "@babel/parser": "^7.27.5",
  1273. "@vue/compiler-core": "3.5.17",
  1274. "@vue/compiler-dom": "3.5.17",
  1275. "@vue/compiler-ssr": "3.5.17",
  1276. "@vue/shared": "3.5.17",
  1277. "estree-walker": "^2.0.2",
  1278. "magic-string": "^0.30.17",
  1279. "postcss": "^8.5.6",
  1280. "source-map-js": "^1.2.1"
  1281. }
  1282. },
  1283. "node_modules/@vue/compiler-ssr": {
  1284. "version": "3.5.17",
  1285. "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.17.tgz",
  1286. "integrity": "sha512-hkDbA0Q20ZzGgpj5uZjb9rBzQtIHLS78mMilwrlpWk2Ep37DYntUz0PonQ6kr113vfOEdM+zTBuJDaceNIW0tQ==",
  1287. "license": "MIT",
  1288. "dependencies": {
  1289. "@vue/compiler-dom": "3.5.17",
  1290. "@vue/shared": "3.5.17"
  1291. }
  1292. },
  1293. "node_modules/@vue/devtools-api": {
  1294. "version": "6.6.4",
  1295. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
  1296. "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
  1297. "license": "MIT"
  1298. },
  1299. "node_modules/@vue/reactivity": {
  1300. "version": "3.5.17",
  1301. "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.17.tgz",
  1302. "integrity": "sha512-l/rmw2STIscWi7SNJp708FK4Kofs97zc/5aEPQh4bOsReD/8ICuBcEmS7KGwDj5ODQLYWVN2lNibKJL1z5b+Lw==",
  1303. "license": "MIT",
  1304. "dependencies": {
  1305. "@vue/shared": "3.5.17"
  1306. }
  1307. },
  1308. "node_modules/@vue/runtime-core": {
  1309. "version": "3.5.17",
  1310. "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.17.tgz",
  1311. "integrity": "sha512-QQLXa20dHg1R0ri4bjKeGFKEkJA7MMBxrKo2G+gJikmumRS7PTD4BOU9FKrDQWMKowz7frJJGqBffYMgQYS96Q==",
  1312. "license": "MIT",
  1313. "dependencies": {
  1314. "@vue/reactivity": "3.5.17",
  1315. "@vue/shared": "3.5.17"
  1316. }
  1317. },
  1318. "node_modules/@vue/runtime-dom": {
  1319. "version": "3.5.17",
  1320. "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.17.tgz",
  1321. "integrity": "sha512-8El0M60TcwZ1QMz4/os2MdlQECgGoVHPuLnQBU3m9h3gdNRW9xRmI8iLS4t/22OQlOE6aJvNNlBiCzPHur4H9g==",
  1322. "license": "MIT",
  1323. "dependencies": {
  1324. "@vue/reactivity": "3.5.17",
  1325. "@vue/runtime-core": "3.5.17",
  1326. "@vue/shared": "3.5.17",
  1327. "csstype": "^3.1.3"
  1328. }
  1329. },
  1330. "node_modules/@vue/server-renderer": {
  1331. "version": "3.5.17",
  1332. "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.17.tgz",
  1333. "integrity": "sha512-BOHhm8HalujY6lmC3DbqF6uXN/K00uWiEeF22LfEsm9Q93XeJ/plHTepGwf6tqFcF7GA5oGSSAAUock3VvzaCA==",
  1334. "license": "MIT",
  1335. "dependencies": {
  1336. "@vue/compiler-ssr": "3.5.17",
  1337. "@vue/shared": "3.5.17"
  1338. },
  1339. "peerDependencies": {
  1340. "vue": "3.5.17"
  1341. }
  1342. },
  1343. "node_modules/@vue/shared": {
  1344. "version": "3.5.17",
  1345. "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.17.tgz",
  1346. "integrity": "sha512-CabR+UN630VnsJO/jHWYBC1YVXyMq94KKp6iF5MQgZJs5I8cmjw6oVMO1oDbtBkENSHSSn/UadWlW/OAgdmKrg==",
  1347. "license": "MIT"
  1348. },
  1349. "node_modules/@vueuse/core": {
  1350. "version": "9.13.0",
  1351. "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-9.13.0.tgz",
  1352. "integrity": "sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==",
  1353. "license": "MIT",
  1354. "dependencies": {
  1355. "@types/web-bluetooth": "^0.0.16",
  1356. "@vueuse/metadata": "9.13.0",
  1357. "@vueuse/shared": "9.13.0",
  1358. "vue-demi": "*"
  1359. },
  1360. "funding": {
  1361. "url": "https://github.com/sponsors/antfu"
  1362. }
  1363. },
  1364. "node_modules/@vueuse/core/node_modules/vue-demi": {
  1365. "version": "0.14.10",
  1366. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
  1367. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1368. "hasInstallScript": true,
  1369. "license": "MIT",
  1370. "bin": {
  1371. "vue-demi-fix": "bin/vue-demi-fix.js",
  1372. "vue-demi-switch": "bin/vue-demi-switch.js"
  1373. },
  1374. "engines": {
  1375. "node": ">=12"
  1376. },
  1377. "funding": {
  1378. "url": "https://github.com/sponsors/antfu"
  1379. },
  1380. "peerDependencies": {
  1381. "@vue/composition-api": "^1.0.0-rc.1",
  1382. "vue": "^3.0.0-0 || ^2.6.0"
  1383. },
  1384. "peerDependenciesMeta": {
  1385. "@vue/composition-api": {
  1386. "optional": true
  1387. }
  1388. }
  1389. },
  1390. "node_modules/@vueuse/metadata": {
  1391. "version": "9.13.0",
  1392. "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-9.13.0.tgz",
  1393. "integrity": "sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==",
  1394. "license": "MIT",
  1395. "funding": {
  1396. "url": "https://github.com/sponsors/antfu"
  1397. }
  1398. },
  1399. "node_modules/@vueuse/shared": {
  1400. "version": "9.13.0",
  1401. "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-9.13.0.tgz",
  1402. "integrity": "sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==",
  1403. "license": "MIT",
  1404. "dependencies": {
  1405. "vue-demi": "*"
  1406. },
  1407. "funding": {
  1408. "url": "https://github.com/sponsors/antfu"
  1409. }
  1410. },
  1411. "node_modules/@vueuse/shared/node_modules/vue-demi": {
  1412. "version": "0.14.10",
  1413. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
  1414. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1415. "hasInstallScript": true,
  1416. "license": "MIT",
  1417. "bin": {
  1418. "vue-demi-fix": "bin/vue-demi-fix.js",
  1419. "vue-demi-switch": "bin/vue-demi-switch.js"
  1420. },
  1421. "engines": {
  1422. "node": ">=12"
  1423. },
  1424. "funding": {
  1425. "url": "https://github.com/sponsors/antfu"
  1426. },
  1427. "peerDependencies": {
  1428. "@vue/composition-api": "^1.0.0-rc.1",
  1429. "vue": "^3.0.0-0 || ^2.6.0"
  1430. },
  1431. "peerDependenciesMeta": {
  1432. "@vue/composition-api": {
  1433. "optional": true
  1434. }
  1435. }
  1436. },
  1437. "node_modules/argparse": {
  1438. "version": "2.0.1",
  1439. "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
  1440. "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
  1441. "license": "Python-2.0"
  1442. },
  1443. "node_modules/async-validator": {
  1444. "version": "4.2.5",
  1445. "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
  1446. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  1447. "license": "MIT"
  1448. },
  1449. "node_modules/asynckit": {
  1450. "version": "0.4.0",
  1451. "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz",
  1452. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  1453. "license": "MIT"
  1454. },
  1455. "node_modules/axios": {
  1456. "version": "1.10.0",
  1457. "resolved": "https://registry.npmmirror.com/axios/-/axios-1.10.0.tgz",
  1458. "integrity": "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==",
  1459. "license": "MIT",
  1460. "dependencies": {
  1461. "follow-redirects": "^1.15.6",
  1462. "form-data": "^4.0.0",
  1463. "proxy-from-env": "^1.1.0"
  1464. }
  1465. },
  1466. "node_modules/braces": {
  1467. "version": "3.0.3",
  1468. "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz",
  1469. "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
  1470. "dev": true,
  1471. "license": "MIT",
  1472. "optional": true,
  1473. "dependencies": {
  1474. "fill-range": "^7.1.1"
  1475. },
  1476. "engines": {
  1477. "node": ">=8"
  1478. }
  1479. },
  1480. "node_modules/call-bind-apply-helpers": {
  1481. "version": "1.0.2",
  1482. "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1483. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1484. "license": "MIT",
  1485. "dependencies": {
  1486. "es-errors": "^1.3.0",
  1487. "function-bind": "^1.1.2"
  1488. },
  1489. "engines": {
  1490. "node": ">= 0.4"
  1491. }
  1492. },
  1493. "node_modules/chokidar": {
  1494. "version": "4.0.3",
  1495. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz",
  1496. "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
  1497. "dev": true,
  1498. "license": "MIT",
  1499. "dependencies": {
  1500. "readdirp": "^4.0.1"
  1501. },
  1502. "engines": {
  1503. "node": ">= 14.16.0"
  1504. },
  1505. "funding": {
  1506. "url": "https://paulmillr.com/funding/"
  1507. }
  1508. },
  1509. "node_modules/combined-stream": {
  1510. "version": "1.0.8",
  1511. "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz",
  1512. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  1513. "license": "MIT",
  1514. "dependencies": {
  1515. "delayed-stream": "~1.0.0"
  1516. },
  1517. "engines": {
  1518. "node": ">= 0.8"
  1519. }
  1520. },
  1521. "node_modules/csstype": {
  1522. "version": "3.1.3",
  1523. "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz",
  1524. "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
  1525. "license": "MIT"
  1526. },
  1527. "node_modules/dayjs": {
  1528. "version": "1.11.13",
  1529. "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.13.tgz",
  1530. "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==",
  1531. "license": "MIT"
  1532. },
  1533. "node_modules/debug": {
  1534. "version": "4.4.1",
  1535. "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.1.tgz",
  1536. "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
  1537. "license": "MIT",
  1538. "dependencies": {
  1539. "ms": "^2.1.3"
  1540. },
  1541. "engines": {
  1542. "node": ">=6.0"
  1543. },
  1544. "peerDependenciesMeta": {
  1545. "supports-color": {
  1546. "optional": true
  1547. }
  1548. }
  1549. },
  1550. "node_modules/delayed-stream": {
  1551. "version": "1.0.0",
  1552. "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz",
  1553. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  1554. "license": "MIT",
  1555. "engines": {
  1556. "node": ">=0.4.0"
  1557. }
  1558. },
  1559. "node_modules/depd": {
  1560. "version": "2.0.0",
  1561. "resolved": "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz",
  1562. "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
  1563. "license": "MIT",
  1564. "engines": {
  1565. "node": ">= 0.8"
  1566. }
  1567. },
  1568. "node_modules/detect-libc": {
  1569. "version": "1.0.3",
  1570. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-1.0.3.tgz",
  1571. "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
  1572. "dev": true,
  1573. "license": "Apache-2.0",
  1574. "optional": true,
  1575. "bin": {
  1576. "detect-libc": "bin/detect-libc.js"
  1577. },
  1578. "engines": {
  1579. "node": ">=0.10"
  1580. }
  1581. },
  1582. "node_modules/dunder-proto": {
  1583. "version": "1.0.1",
  1584. "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
  1585. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  1586. "license": "MIT",
  1587. "dependencies": {
  1588. "call-bind-apply-helpers": "^1.0.1",
  1589. "es-errors": "^1.3.0",
  1590. "gopd": "^1.2.0"
  1591. },
  1592. "engines": {
  1593. "node": ">= 0.4"
  1594. }
  1595. },
  1596. "node_modules/element-plus": {
  1597. "version": "2.10.2",
  1598. "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.10.2.tgz",
  1599. "integrity": "sha512-p2KiAa0jEGXrzdlTAfpiS7HQFAhla4gvx6H7RuDf+OO0uC3DGpolxvdHjFR8gt7+vaWyxQNcHa1sAdBkmjqlgA==",
  1600. "license": "MIT",
  1601. "dependencies": {
  1602. "@ctrl/tinycolor": "^3.4.1",
  1603. "@element-plus/icons-vue": "^2.3.1",
  1604. "@floating-ui/dom": "^1.0.1",
  1605. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
  1606. "@types/lodash": "^4.14.182",
  1607. "@types/lodash-es": "^4.17.6",
  1608. "@vueuse/core": "^9.1.0",
  1609. "async-validator": "^4.2.5",
  1610. "dayjs": "^1.11.13",
  1611. "escape-html": "^1.0.3",
  1612. "lodash": "^4.17.21",
  1613. "lodash-es": "^4.17.21",
  1614. "lodash-unified": "^1.0.2",
  1615. "memoize-one": "^6.0.0",
  1616. "normalize-wheel-es": "^1.2.0"
  1617. },
  1618. "peerDependencies": {
  1619. "vue": "^3.2.0"
  1620. }
  1621. },
  1622. "node_modules/entities": {
  1623. "version": "4.5.0",
  1624. "resolved": "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz",
  1625. "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
  1626. "license": "BSD-2-Clause",
  1627. "engines": {
  1628. "node": ">=0.12"
  1629. },
  1630. "funding": {
  1631. "url": "https://github.com/fb55/entities?sponsor=1"
  1632. }
  1633. },
  1634. "node_modules/es-define-property": {
  1635. "version": "1.0.1",
  1636. "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz",
  1637. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  1638. "license": "MIT",
  1639. "engines": {
  1640. "node": ">= 0.4"
  1641. }
  1642. },
  1643. "node_modules/es-errors": {
  1644. "version": "1.3.0",
  1645. "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz",
  1646. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  1647. "license": "MIT",
  1648. "engines": {
  1649. "node": ">= 0.4"
  1650. }
  1651. },
  1652. "node_modules/es-object-atoms": {
  1653. "version": "1.1.1",
  1654. "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  1655. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  1656. "license": "MIT",
  1657. "dependencies": {
  1658. "es-errors": "^1.3.0"
  1659. },
  1660. "engines": {
  1661. "node": ">= 0.4"
  1662. }
  1663. },
  1664. "node_modules/es-set-tostringtag": {
  1665. "version": "2.1.0",
  1666. "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  1667. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  1668. "license": "MIT",
  1669. "dependencies": {
  1670. "es-errors": "^1.3.0",
  1671. "get-intrinsic": "^1.2.6",
  1672. "has-tostringtag": "^1.0.2",
  1673. "hasown": "^2.0.2"
  1674. },
  1675. "engines": {
  1676. "node": ">= 0.4"
  1677. }
  1678. },
  1679. "node_modules/esbuild": {
  1680. "version": "0.25.5",
  1681. "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.25.5.tgz",
  1682. "integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==",
  1683. "dev": true,
  1684. "hasInstallScript": true,
  1685. "license": "MIT",
  1686. "bin": {
  1687. "esbuild": "bin/esbuild"
  1688. },
  1689. "engines": {
  1690. "node": ">=18"
  1691. },
  1692. "optionalDependencies": {
  1693. "@esbuild/aix-ppc64": "0.25.5",
  1694. "@esbuild/android-arm": "0.25.5",
  1695. "@esbuild/android-arm64": "0.25.5",
  1696. "@esbuild/android-x64": "0.25.5",
  1697. "@esbuild/darwin-arm64": "0.25.5",
  1698. "@esbuild/darwin-x64": "0.25.5",
  1699. "@esbuild/freebsd-arm64": "0.25.5",
  1700. "@esbuild/freebsd-x64": "0.25.5",
  1701. "@esbuild/linux-arm": "0.25.5",
  1702. "@esbuild/linux-arm64": "0.25.5",
  1703. "@esbuild/linux-ia32": "0.25.5",
  1704. "@esbuild/linux-loong64": "0.25.5",
  1705. "@esbuild/linux-mips64el": "0.25.5",
  1706. "@esbuild/linux-ppc64": "0.25.5",
  1707. "@esbuild/linux-riscv64": "0.25.5",
  1708. "@esbuild/linux-s390x": "0.25.5",
  1709. "@esbuild/linux-x64": "0.25.5",
  1710. "@esbuild/netbsd-arm64": "0.25.5",
  1711. "@esbuild/netbsd-x64": "0.25.5",
  1712. "@esbuild/openbsd-arm64": "0.25.5",
  1713. "@esbuild/openbsd-x64": "0.25.5",
  1714. "@esbuild/sunos-x64": "0.25.5",
  1715. "@esbuild/win32-arm64": "0.25.5",
  1716. "@esbuild/win32-ia32": "0.25.5",
  1717. "@esbuild/win32-x64": "0.25.5"
  1718. }
  1719. },
  1720. "node_modules/escape-html": {
  1721. "version": "1.0.3",
  1722. "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz",
  1723. "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
  1724. "license": "MIT"
  1725. },
  1726. "node_modules/estree-walker": {
  1727. "version": "2.0.2",
  1728. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
  1729. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  1730. "license": "MIT"
  1731. },
  1732. "node_modules/fdir": {
  1733. "version": "6.4.6",
  1734. "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.4.6.tgz",
  1735. "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
  1736. "dev": true,
  1737. "license": "MIT",
  1738. "peerDependencies": {
  1739. "picomatch": "^3 || ^4"
  1740. },
  1741. "peerDependenciesMeta": {
  1742. "picomatch": {
  1743. "optional": true
  1744. }
  1745. }
  1746. },
  1747. "node_modules/fill-range": {
  1748. "version": "7.1.1",
  1749. "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz",
  1750. "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
  1751. "dev": true,
  1752. "license": "MIT",
  1753. "optional": true,
  1754. "dependencies": {
  1755. "to-regex-range": "^5.0.1"
  1756. },
  1757. "engines": {
  1758. "node": ">=8"
  1759. }
  1760. },
  1761. "node_modules/follow-redirects": {
  1762. "version": "1.15.9",
  1763. "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.9.tgz",
  1764. "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==",
  1765. "funding": [
  1766. {
  1767. "type": "individual",
  1768. "url": "https://github.com/sponsors/RubenVerborgh"
  1769. }
  1770. ],
  1771. "license": "MIT",
  1772. "engines": {
  1773. "node": ">=4.0"
  1774. },
  1775. "peerDependenciesMeta": {
  1776. "debug": {
  1777. "optional": true
  1778. }
  1779. }
  1780. },
  1781. "node_modules/form-data": {
  1782. "version": "4.0.3",
  1783. "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.3.tgz",
  1784. "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==",
  1785. "license": "MIT",
  1786. "dependencies": {
  1787. "asynckit": "^0.4.0",
  1788. "combined-stream": "^1.0.8",
  1789. "es-set-tostringtag": "^2.1.0",
  1790. "hasown": "^2.0.2",
  1791. "mime-types": "^2.1.12"
  1792. },
  1793. "engines": {
  1794. "node": ">= 6"
  1795. }
  1796. },
  1797. "node_modules/fsevents": {
  1798. "version": "2.3.3",
  1799. "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
  1800. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1801. "dev": true,
  1802. "hasInstallScript": true,
  1803. "license": "MIT",
  1804. "optional": true,
  1805. "os": [
  1806. "darwin"
  1807. ],
  1808. "engines": {
  1809. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1810. }
  1811. },
  1812. "node_modules/function-bind": {
  1813. "version": "1.1.2",
  1814. "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz",
  1815. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1816. "license": "MIT",
  1817. "funding": {
  1818. "url": "https://github.com/sponsors/ljharb"
  1819. }
  1820. },
  1821. "node_modules/get-intrinsic": {
  1822. "version": "1.3.0",
  1823. "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1824. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1825. "license": "MIT",
  1826. "dependencies": {
  1827. "call-bind-apply-helpers": "^1.0.2",
  1828. "es-define-property": "^1.0.1",
  1829. "es-errors": "^1.3.0",
  1830. "es-object-atoms": "^1.1.1",
  1831. "function-bind": "^1.1.2",
  1832. "get-proto": "^1.0.1",
  1833. "gopd": "^1.2.0",
  1834. "has-symbols": "^1.1.0",
  1835. "hasown": "^2.0.2",
  1836. "math-intrinsics": "^1.1.0"
  1837. },
  1838. "engines": {
  1839. "node": ">= 0.4"
  1840. },
  1841. "funding": {
  1842. "url": "https://github.com/sponsors/ljharb"
  1843. }
  1844. },
  1845. "node_modules/get-proto": {
  1846. "version": "1.0.1",
  1847. "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz",
  1848. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1849. "license": "MIT",
  1850. "dependencies": {
  1851. "dunder-proto": "^1.0.1",
  1852. "es-object-atoms": "^1.0.0"
  1853. },
  1854. "engines": {
  1855. "node": ">= 0.4"
  1856. }
  1857. },
  1858. "node_modules/gopd": {
  1859. "version": "1.2.0",
  1860. "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
  1861. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1862. "license": "MIT",
  1863. "engines": {
  1864. "node": ">= 0.4"
  1865. },
  1866. "funding": {
  1867. "url": "https://github.com/sponsors/ljharb"
  1868. }
  1869. },
  1870. "node_modules/has-symbols": {
  1871. "version": "1.1.0",
  1872. "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz",
  1873. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1874. "license": "MIT",
  1875. "engines": {
  1876. "node": ">= 0.4"
  1877. },
  1878. "funding": {
  1879. "url": "https://github.com/sponsors/ljharb"
  1880. }
  1881. },
  1882. "node_modules/has-tostringtag": {
  1883. "version": "1.0.2",
  1884. "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  1885. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  1886. "license": "MIT",
  1887. "dependencies": {
  1888. "has-symbols": "^1.0.3"
  1889. },
  1890. "engines": {
  1891. "node": ">= 0.4"
  1892. },
  1893. "funding": {
  1894. "url": "https://github.com/sponsors/ljharb"
  1895. }
  1896. },
  1897. "node_modules/hasown": {
  1898. "version": "2.0.2",
  1899. "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz",
  1900. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  1901. "license": "MIT",
  1902. "dependencies": {
  1903. "function-bind": "^1.1.2"
  1904. },
  1905. "engines": {
  1906. "node": ">= 0.4"
  1907. }
  1908. },
  1909. "node_modules/highlight.js": {
  1910. "version": "11.11.1",
  1911. "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.11.1.tgz",
  1912. "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==",
  1913. "license": "BSD-3-Clause",
  1914. "engines": {
  1915. "node": ">=12.0.0"
  1916. }
  1917. },
  1918. "node_modules/immutable": {
  1919. "version": "5.1.3",
  1920. "resolved": "https://registry.npmmirror.com/immutable/-/immutable-5.1.3.tgz",
  1921. "integrity": "sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==",
  1922. "dev": true,
  1923. "license": "MIT"
  1924. },
  1925. "node_modules/inherits": {
  1926. "version": "2.0.3",
  1927. "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.3.tgz",
  1928. "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==",
  1929. "dev": true,
  1930. "license": "ISC"
  1931. },
  1932. "node_modules/is-extglob": {
  1933. "version": "2.1.1",
  1934. "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz",
  1935. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  1936. "dev": true,
  1937. "license": "MIT",
  1938. "optional": true,
  1939. "engines": {
  1940. "node": ">=0.10.0"
  1941. }
  1942. },
  1943. "node_modules/is-glob": {
  1944. "version": "4.0.3",
  1945. "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz",
  1946. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  1947. "dev": true,
  1948. "license": "MIT",
  1949. "optional": true,
  1950. "dependencies": {
  1951. "is-extglob": "^2.1.1"
  1952. },
  1953. "engines": {
  1954. "node": ">=0.10.0"
  1955. }
  1956. },
  1957. "node_modules/is-number": {
  1958. "version": "7.0.0",
  1959. "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz",
  1960. "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
  1961. "dev": true,
  1962. "license": "MIT",
  1963. "optional": true,
  1964. "engines": {
  1965. "node": ">=0.12.0"
  1966. }
  1967. },
  1968. "node_modules/is-promise": {
  1969. "version": "4.0.0",
  1970. "resolved": "https://registry.npmmirror.com/is-promise/-/is-promise-4.0.0.tgz",
  1971. "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
  1972. "license": "MIT"
  1973. },
  1974. "node_modules/linkify-it": {
  1975. "version": "5.0.0",
  1976. "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz",
  1977. "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
  1978. "license": "MIT",
  1979. "dependencies": {
  1980. "uc.micro": "^2.0.0"
  1981. }
  1982. },
  1983. "node_modules/lodash": {
  1984. "version": "4.17.21",
  1985. "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz",
  1986. "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
  1987. "license": "MIT"
  1988. },
  1989. "node_modules/lodash-es": {
  1990. "version": "4.17.21",
  1991. "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz",
  1992. "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==",
  1993. "license": "MIT"
  1994. },
  1995. "node_modules/lodash-unified": {
  1996. "version": "1.0.3",
  1997. "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz",
  1998. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  1999. "license": "MIT",
  2000. "peerDependencies": {
  2001. "@types/lodash-es": "*",
  2002. "lodash": "*",
  2003. "lodash-es": "*"
  2004. }
  2005. },
  2006. "node_modules/magic-string": {
  2007. "version": "0.30.17",
  2008. "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.17.tgz",
  2009. "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
  2010. "license": "MIT",
  2011. "dependencies": {
  2012. "@jridgewell/sourcemap-codec": "^1.5.0"
  2013. }
  2014. },
  2015. "node_modules/markdown-it": {
  2016. "version": "14.1.0",
  2017. "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz",
  2018. "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==",
  2019. "license": "MIT",
  2020. "dependencies": {
  2021. "argparse": "^2.0.1",
  2022. "entities": "^4.4.0",
  2023. "linkify-it": "^5.0.0",
  2024. "mdurl": "^2.0.0",
  2025. "punycode.js": "^2.3.1",
  2026. "uc.micro": "^2.1.0"
  2027. },
  2028. "bin": {
  2029. "markdown-it": "bin/markdown-it.mjs"
  2030. }
  2031. },
  2032. "node_modules/math-intrinsics": {
  2033. "version": "1.1.0",
  2034. "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  2035. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  2036. "license": "MIT",
  2037. "engines": {
  2038. "node": ">= 0.4"
  2039. }
  2040. },
  2041. "node_modules/mdurl": {
  2042. "version": "2.0.0",
  2043. "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
  2044. "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==",
  2045. "license": "MIT"
  2046. },
  2047. "node_modules/memoize-one": {
  2048. "version": "6.0.0",
  2049. "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz",
  2050. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  2051. "license": "MIT"
  2052. },
  2053. "node_modules/micromatch": {
  2054. "version": "4.0.8",
  2055. "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz",
  2056. "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
  2057. "dev": true,
  2058. "license": "MIT",
  2059. "optional": true,
  2060. "dependencies": {
  2061. "braces": "^3.0.3",
  2062. "picomatch": "^2.3.1"
  2063. },
  2064. "engines": {
  2065. "node": ">=8.6"
  2066. }
  2067. },
  2068. "node_modules/micromatch/node_modules/picomatch": {
  2069. "version": "2.3.1",
  2070. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz",
  2071. "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
  2072. "dev": true,
  2073. "license": "MIT",
  2074. "optional": true,
  2075. "engines": {
  2076. "node": ">=8.6"
  2077. },
  2078. "funding": {
  2079. "url": "https://github.com/sponsors/jonschlinkert"
  2080. }
  2081. },
  2082. "node_modules/mime-db": {
  2083. "version": "1.52.0",
  2084. "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
  2085. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  2086. "license": "MIT",
  2087. "engines": {
  2088. "node": ">= 0.6"
  2089. }
  2090. },
  2091. "node_modules/mime-types": {
  2092. "version": "2.1.35",
  2093. "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz",
  2094. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  2095. "license": "MIT",
  2096. "dependencies": {
  2097. "mime-db": "1.52.0"
  2098. },
  2099. "engines": {
  2100. "node": ">= 0.6"
  2101. }
  2102. },
  2103. "node_modules/ms": {
  2104. "version": "2.1.3",
  2105. "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
  2106. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  2107. "license": "MIT"
  2108. },
  2109. "node_modules/nanoid": {
  2110. "version": "3.3.11",
  2111. "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz",
  2112. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  2113. "funding": [
  2114. {
  2115. "type": "github",
  2116. "url": "https://github.com/sponsors/ai"
  2117. }
  2118. ],
  2119. "license": "MIT",
  2120. "bin": {
  2121. "nanoid": "bin/nanoid.cjs"
  2122. },
  2123. "engines": {
  2124. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2125. }
  2126. },
  2127. "node_modules/node-addon-api": {
  2128. "version": "7.1.1",
  2129. "resolved": "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-7.1.1.tgz",
  2130. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  2131. "dev": true,
  2132. "license": "MIT",
  2133. "optional": true
  2134. },
  2135. "node_modules/normalize-wheel-es": {
  2136. "version": "1.2.0",
  2137. "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  2138. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  2139. "license": "BSD-3-Clause"
  2140. },
  2141. "node_modules/parseurl": {
  2142. "version": "1.3.3",
  2143. "resolved": "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz",
  2144. "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
  2145. "license": "MIT",
  2146. "engines": {
  2147. "node": ">= 0.8"
  2148. }
  2149. },
  2150. "node_modules/path": {
  2151. "version": "0.12.7",
  2152. "resolved": "https://registry.npmmirror.com/path/-/path-0.12.7.tgz",
  2153. "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==",
  2154. "dev": true,
  2155. "license": "MIT",
  2156. "dependencies": {
  2157. "process": "^0.11.1",
  2158. "util": "^0.10.3"
  2159. }
  2160. },
  2161. "node_modules/path-to-regexp": {
  2162. "version": "8.2.0",
  2163. "resolved": "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-8.2.0.tgz",
  2164. "integrity": "sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==",
  2165. "license": "MIT",
  2166. "engines": {
  2167. "node": ">=16"
  2168. }
  2169. },
  2170. "node_modules/picocolors": {
  2171. "version": "1.1.1",
  2172. "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
  2173. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2174. "license": "ISC"
  2175. },
  2176. "node_modules/picomatch": {
  2177. "version": "4.0.2",
  2178. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.2.tgz",
  2179. "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
  2180. "dev": true,
  2181. "license": "MIT",
  2182. "engines": {
  2183. "node": ">=12"
  2184. },
  2185. "funding": {
  2186. "url": "https://github.com/sponsors/jonschlinkert"
  2187. }
  2188. },
  2189. "node_modules/postcss": {
  2190. "version": "8.5.6",
  2191. "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.6.tgz",
  2192. "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
  2193. "funding": [
  2194. {
  2195. "type": "opencollective",
  2196. "url": "https://opencollective.com/postcss/"
  2197. },
  2198. {
  2199. "type": "tidelift",
  2200. "url": "https://tidelift.com/funding/github/npm/postcss"
  2201. },
  2202. {
  2203. "type": "github",
  2204. "url": "https://github.com/sponsors/ai"
  2205. }
  2206. ],
  2207. "license": "MIT",
  2208. "dependencies": {
  2209. "nanoid": "^3.3.11",
  2210. "picocolors": "^1.1.1",
  2211. "source-map-js": "^1.2.1"
  2212. },
  2213. "engines": {
  2214. "node": "^10 || ^12 || >=14"
  2215. }
  2216. },
  2217. "node_modules/process": {
  2218. "version": "0.11.10",
  2219. "resolved": "https://registry.npmmirror.com/process/-/process-0.11.10.tgz",
  2220. "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
  2221. "dev": true,
  2222. "license": "MIT",
  2223. "engines": {
  2224. "node": ">= 0.6.0"
  2225. }
  2226. },
  2227. "node_modules/proxy-from-env": {
  2228. "version": "1.1.0",
  2229. "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
  2230. "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
  2231. "license": "MIT"
  2232. },
  2233. "node_modules/punycode.js": {
  2234. "version": "2.3.1",
  2235. "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz",
  2236. "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==",
  2237. "license": "MIT",
  2238. "engines": {
  2239. "node": ">=6"
  2240. }
  2241. },
  2242. "node_modules/readdirp": {
  2243. "version": "4.1.2",
  2244. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.2.tgz",
  2245. "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
  2246. "dev": true,
  2247. "license": "MIT",
  2248. "engines": {
  2249. "node": ">= 14.18.0"
  2250. },
  2251. "funding": {
  2252. "type": "individual",
  2253. "url": "https://paulmillr.com/funding/"
  2254. }
  2255. },
  2256. "node_modules/rollup": {
  2257. "version": "4.44.1",
  2258. "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.44.1.tgz",
  2259. "integrity": "sha512-x8H8aPvD+xbl0Do8oez5f5o8eMS3trfCghc4HhLAnCkj7Vl0d1JWGs0UF/D886zLW2rOj2QymV/JcSSsw+XDNg==",
  2260. "dev": true,
  2261. "license": "MIT",
  2262. "dependencies": {
  2263. "@types/estree": "1.0.8"
  2264. },
  2265. "bin": {
  2266. "rollup": "dist/bin/rollup"
  2267. },
  2268. "engines": {
  2269. "node": ">=18.0.0",
  2270. "npm": ">=8.0.0"
  2271. },
  2272. "optionalDependencies": {
  2273. "@rollup/rollup-android-arm-eabi": "4.44.1",
  2274. "@rollup/rollup-android-arm64": "4.44.1",
  2275. "@rollup/rollup-darwin-arm64": "4.44.1",
  2276. "@rollup/rollup-darwin-x64": "4.44.1",
  2277. "@rollup/rollup-freebsd-arm64": "4.44.1",
  2278. "@rollup/rollup-freebsd-x64": "4.44.1",
  2279. "@rollup/rollup-linux-arm-gnueabihf": "4.44.1",
  2280. "@rollup/rollup-linux-arm-musleabihf": "4.44.1",
  2281. "@rollup/rollup-linux-arm64-gnu": "4.44.1",
  2282. "@rollup/rollup-linux-arm64-musl": "4.44.1",
  2283. "@rollup/rollup-linux-loongarch64-gnu": "4.44.1",
  2284. "@rollup/rollup-linux-powerpc64le-gnu": "4.44.1",
  2285. "@rollup/rollup-linux-riscv64-gnu": "4.44.1",
  2286. "@rollup/rollup-linux-riscv64-musl": "4.44.1",
  2287. "@rollup/rollup-linux-s390x-gnu": "4.44.1",
  2288. "@rollup/rollup-linux-x64-gnu": "4.44.1",
  2289. "@rollup/rollup-linux-x64-musl": "4.44.1",
  2290. "@rollup/rollup-win32-arm64-msvc": "4.44.1",
  2291. "@rollup/rollup-win32-ia32-msvc": "4.44.1",
  2292. "@rollup/rollup-win32-x64-msvc": "4.44.1",
  2293. "fsevents": "~2.3.2"
  2294. }
  2295. },
  2296. "node_modules/router": {
  2297. "version": "2.2.0",
  2298. "resolved": "https://registry.npmmirror.com/router/-/router-2.2.0.tgz",
  2299. "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
  2300. "license": "MIT",
  2301. "dependencies": {
  2302. "debug": "^4.4.0",
  2303. "depd": "^2.0.0",
  2304. "is-promise": "^4.0.0",
  2305. "parseurl": "^1.3.3",
  2306. "path-to-regexp": "^8.0.0"
  2307. },
  2308. "engines": {
  2309. "node": ">= 18"
  2310. }
  2311. },
  2312. "node_modules/sass": {
  2313. "version": "1.89.2",
  2314. "resolved": "https://registry.npmmirror.com/sass/-/sass-1.89.2.tgz",
  2315. "integrity": "sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==",
  2316. "dev": true,
  2317. "license": "MIT",
  2318. "dependencies": {
  2319. "chokidar": "^4.0.0",
  2320. "immutable": "^5.0.2",
  2321. "source-map-js": ">=0.6.2 <2.0.0"
  2322. },
  2323. "bin": {
  2324. "sass": "sass.js"
  2325. },
  2326. "engines": {
  2327. "node": ">=14.0.0"
  2328. },
  2329. "optionalDependencies": {
  2330. "@parcel/watcher": "^2.4.1"
  2331. }
  2332. },
  2333. "node_modules/source-map-js": {
  2334. "version": "1.2.1",
  2335. "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
  2336. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2337. "license": "BSD-3-Clause",
  2338. "engines": {
  2339. "node": ">=0.10.0"
  2340. }
  2341. },
  2342. "node_modules/tinyglobby": {
  2343. "version": "0.2.14",
  2344. "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.14.tgz",
  2345. "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
  2346. "dev": true,
  2347. "license": "MIT",
  2348. "dependencies": {
  2349. "fdir": "^6.4.4",
  2350. "picomatch": "^4.0.2"
  2351. },
  2352. "engines": {
  2353. "node": ">=12.0.0"
  2354. },
  2355. "funding": {
  2356. "url": "https://github.com/sponsors/SuperchupuDev"
  2357. }
  2358. },
  2359. "node_modules/to-regex-range": {
  2360. "version": "5.0.1",
  2361. "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz",
  2362. "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
  2363. "dev": true,
  2364. "license": "MIT",
  2365. "optional": true,
  2366. "dependencies": {
  2367. "is-number": "^7.0.0"
  2368. },
  2369. "engines": {
  2370. "node": ">=8.0"
  2371. }
  2372. },
  2373. "node_modules/uc.micro": {
  2374. "version": "2.1.0",
  2375. "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
  2376. "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==",
  2377. "license": "MIT"
  2378. },
  2379. "node_modules/undici-types": {
  2380. "version": "7.8.0",
  2381. "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-7.8.0.tgz",
  2382. "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==",
  2383. "dev": true,
  2384. "license": "MIT"
  2385. },
  2386. "node_modules/util": {
  2387. "version": "0.10.4",
  2388. "resolved": "https://registry.npmmirror.com/util/-/util-0.10.4.tgz",
  2389. "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
  2390. "dev": true,
  2391. "license": "MIT",
  2392. "dependencies": {
  2393. "inherits": "2.0.3"
  2394. }
  2395. },
  2396. "node_modules/vite": {
  2397. "version": "7.0.0",
  2398. "resolved": "https://registry.npmmirror.com/vite/-/vite-7.0.0.tgz",
  2399. "integrity": "sha512-ixXJB1YRgDIw2OszKQS9WxGHKwLdCsbQNkpJN171udl6szi/rIySHL6/Os3s2+oE4P/FLD4dxg4mD7Wust+u5g==",
  2400. "dev": true,
  2401. "license": "MIT",
  2402. "dependencies": {
  2403. "esbuild": "^0.25.0",
  2404. "fdir": "^6.4.6",
  2405. "picomatch": "^4.0.2",
  2406. "postcss": "^8.5.6",
  2407. "rollup": "^4.40.0",
  2408. "tinyglobby": "^0.2.14"
  2409. },
  2410. "bin": {
  2411. "vite": "bin/vite.js"
  2412. },
  2413. "engines": {
  2414. "node": "^20.19.0 || >=22.12.0"
  2415. },
  2416. "funding": {
  2417. "url": "https://github.com/vitejs/vite?sponsor=1"
  2418. },
  2419. "optionalDependencies": {
  2420. "fsevents": "~2.3.3"
  2421. },
  2422. "peerDependencies": {
  2423. "@types/node": "^20.19.0 || >=22.12.0",
  2424. "jiti": ">=1.21.0",
  2425. "less": "^4.0.0",
  2426. "lightningcss": "^1.21.0",
  2427. "sass": "^1.70.0",
  2428. "sass-embedded": "^1.70.0",
  2429. "stylus": ">=0.54.8",
  2430. "sugarss": "^5.0.0",
  2431. "terser": "^5.16.0",
  2432. "tsx": "^4.8.1",
  2433. "yaml": "^2.4.2"
  2434. },
  2435. "peerDependenciesMeta": {
  2436. "@types/node": {
  2437. "optional": true
  2438. },
  2439. "jiti": {
  2440. "optional": true
  2441. },
  2442. "less": {
  2443. "optional": true
  2444. },
  2445. "lightningcss": {
  2446. "optional": true
  2447. },
  2448. "sass": {
  2449. "optional": true
  2450. },
  2451. "sass-embedded": {
  2452. "optional": true
  2453. },
  2454. "stylus": {
  2455. "optional": true
  2456. },
  2457. "sugarss": {
  2458. "optional": true
  2459. },
  2460. "terser": {
  2461. "optional": true
  2462. },
  2463. "tsx": {
  2464. "optional": true
  2465. },
  2466. "yaml": {
  2467. "optional": true
  2468. }
  2469. }
  2470. },
  2471. "node_modules/vue": {
  2472. "version": "3.5.17",
  2473. "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.17.tgz",
  2474. "integrity": "sha512-LbHV3xPN9BeljML+Xctq4lbz2lVHCR6DtbpTf5XIO6gugpXUN49j2QQPcMj086r9+AkJ0FfUT8xjulKKBkkr9g==",
  2475. "license": "MIT",
  2476. "dependencies": {
  2477. "@vue/compiler-dom": "3.5.17",
  2478. "@vue/compiler-sfc": "3.5.17",
  2479. "@vue/runtime-dom": "3.5.17",
  2480. "@vue/server-renderer": "3.5.17",
  2481. "@vue/shared": "3.5.17"
  2482. },
  2483. "peerDependencies": {
  2484. "typescript": "*"
  2485. },
  2486. "peerDependenciesMeta": {
  2487. "typescript": {
  2488. "optional": true
  2489. }
  2490. }
  2491. },
  2492. "node_modules/vue-router": {
  2493. "version": "4.5.1",
  2494. "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.5.1.tgz",
  2495. "integrity": "sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==",
  2496. "license": "MIT",
  2497. "dependencies": {
  2498. "@vue/devtools-api": "^6.6.4"
  2499. },
  2500. "funding": {
  2501. "url": "https://github.com/sponsors/posva"
  2502. },
  2503. "peerDependencies": {
  2504. "vue": "^3.2.0"
  2505. }
  2506. }
  2507. }
  2508. }