package-lock.json 85 KB

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