package-lock.json 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466
  1. {
  2. "name": "untitled",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "untitled",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "axios": "^1.6.7",
  12. "element-plus": "^2.13.2",
  13. "vis-data": "^7.1.9",
  14. "vis-network": "^9.1.9",
  15. "vue": "^3.5.25",
  16. "vue-router": "^5.0.3"
  17. },
  18. "devDependencies": {
  19. "@vitejs/plugin-vue": "^6.0.2",
  20. "vite": "^7.3.1"
  21. }
  22. },
  23. "node_modules/@babel/generator": {
  24. "version": "7.29.1",
  25. "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.29.1.tgz",
  26. "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
  27. "license": "MIT",
  28. "dependencies": {
  29. "@babel/parser": "^7.29.0",
  30. "@babel/types": "^7.29.0",
  31. "@jridgewell/gen-mapping": "^0.3.12",
  32. "@jridgewell/trace-mapping": "^0.3.28",
  33. "jsesc": "^3.0.2"
  34. },
  35. "engines": {
  36. "node": ">=6.9.0"
  37. }
  38. },
  39. "node_modules/@babel/helper-string-parser": {
  40. "version": "7.27.1",
  41. "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  42. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  43. "license": "MIT",
  44. "engines": {
  45. "node": ">=6.9.0"
  46. }
  47. },
  48. "node_modules/@babel/helper-validator-identifier": {
  49. "version": "7.28.5",
  50. "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  51. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  52. "license": "MIT",
  53. "engines": {
  54. "node": ">=6.9.0"
  55. }
  56. },
  57. "node_modules/@babel/parser": {
  58. "version": "7.29.0",
  59. "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.0.tgz",
  60. "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
  61. "license": "MIT",
  62. "dependencies": {
  63. "@babel/types": "^7.29.0"
  64. },
  65. "bin": {
  66. "parser": "bin/babel-parser.js"
  67. },
  68. "engines": {
  69. "node": ">=6.0.0"
  70. }
  71. },
  72. "node_modules/@babel/types": {
  73. "version": "7.29.0",
  74. "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.0.tgz",
  75. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  76. "license": "MIT",
  77. "dependencies": {
  78. "@babel/helper-string-parser": "^7.27.1",
  79. "@babel/helper-validator-identifier": "^7.28.5"
  80. },
  81. "engines": {
  82. "node": ">=6.9.0"
  83. }
  84. },
  85. "node_modules/@ctrl/tinycolor": {
  86. "version": "3.6.1",
  87. "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz",
  88. "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==",
  89. "license": "MIT",
  90. "engines": {
  91. "node": ">=10"
  92. }
  93. },
  94. "node_modules/@egjs/hammerjs": {
  95. "version": "2.0.17",
  96. "resolved": "https://registry.npmmirror.com/@egjs/hammerjs/-/hammerjs-2.0.17.tgz",
  97. "integrity": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==",
  98. "license": "MIT",
  99. "peer": true,
  100. "dependencies": {
  101. "@types/hammerjs": "^2.0.36"
  102. },
  103. "engines": {
  104. "node": ">=0.8.0"
  105. }
  106. },
  107. "node_modules/@element-plus/icons-vue": {
  108. "version": "2.3.2",
  109. "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz",
  110. "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==",
  111. "license": "MIT",
  112. "peerDependencies": {
  113. "vue": "^3.2.0"
  114. }
  115. },
  116. "node_modules/@esbuild/aix-ppc64": {
  117. "version": "0.27.3",
  118. "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
  119. "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
  120. "cpu": [
  121. "ppc64"
  122. ],
  123. "dev": true,
  124. "license": "MIT",
  125. "optional": true,
  126. "os": [
  127. "aix"
  128. ],
  129. "engines": {
  130. "node": ">=18"
  131. }
  132. },
  133. "node_modules/@esbuild/android-arm": {
  134. "version": "0.27.3",
  135. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
  136. "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
  137. "cpu": [
  138. "arm"
  139. ],
  140. "dev": true,
  141. "license": "MIT",
  142. "optional": true,
  143. "os": [
  144. "android"
  145. ],
  146. "engines": {
  147. "node": ">=18"
  148. }
  149. },
  150. "node_modules/@esbuild/android-arm64": {
  151. "version": "0.27.3",
  152. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
  153. "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
  154. "cpu": [
  155. "arm64"
  156. ],
  157. "dev": true,
  158. "license": "MIT",
  159. "optional": true,
  160. "os": [
  161. "android"
  162. ],
  163. "engines": {
  164. "node": ">=18"
  165. }
  166. },
  167. "node_modules/@esbuild/android-x64": {
  168. "version": "0.27.3",
  169. "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
  170. "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
  171. "cpu": [
  172. "x64"
  173. ],
  174. "dev": true,
  175. "license": "MIT",
  176. "optional": true,
  177. "os": [
  178. "android"
  179. ],
  180. "engines": {
  181. "node": ">=18"
  182. }
  183. },
  184. "node_modules/@esbuild/darwin-arm64": {
  185. "version": "0.27.3",
  186. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
  187. "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
  188. "cpu": [
  189. "arm64"
  190. ],
  191. "dev": true,
  192. "license": "MIT",
  193. "optional": true,
  194. "os": [
  195. "darwin"
  196. ],
  197. "engines": {
  198. "node": ">=18"
  199. }
  200. },
  201. "node_modules/@esbuild/darwin-x64": {
  202. "version": "0.27.3",
  203. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
  204. "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
  205. "cpu": [
  206. "x64"
  207. ],
  208. "dev": true,
  209. "license": "MIT",
  210. "optional": true,
  211. "os": [
  212. "darwin"
  213. ],
  214. "engines": {
  215. "node": ">=18"
  216. }
  217. },
  218. "node_modules/@esbuild/freebsd-arm64": {
  219. "version": "0.27.3",
  220. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
  221. "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
  222. "cpu": [
  223. "arm64"
  224. ],
  225. "dev": true,
  226. "license": "MIT",
  227. "optional": true,
  228. "os": [
  229. "freebsd"
  230. ],
  231. "engines": {
  232. "node": ">=18"
  233. }
  234. },
  235. "node_modules/@esbuild/freebsd-x64": {
  236. "version": "0.27.3",
  237. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
  238. "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
  239. "cpu": [
  240. "x64"
  241. ],
  242. "dev": true,
  243. "license": "MIT",
  244. "optional": true,
  245. "os": [
  246. "freebsd"
  247. ],
  248. "engines": {
  249. "node": ">=18"
  250. }
  251. },
  252. "node_modules/@esbuild/linux-arm": {
  253. "version": "0.27.3",
  254. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
  255. "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
  256. "cpu": [
  257. "arm"
  258. ],
  259. "dev": true,
  260. "license": "MIT",
  261. "optional": true,
  262. "os": [
  263. "linux"
  264. ],
  265. "engines": {
  266. "node": ">=18"
  267. }
  268. },
  269. "node_modules/@esbuild/linux-arm64": {
  270. "version": "0.27.3",
  271. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
  272. "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
  273. "cpu": [
  274. "arm64"
  275. ],
  276. "dev": true,
  277. "license": "MIT",
  278. "optional": true,
  279. "os": [
  280. "linux"
  281. ],
  282. "engines": {
  283. "node": ">=18"
  284. }
  285. },
  286. "node_modules/@esbuild/linux-ia32": {
  287. "version": "0.27.3",
  288. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
  289. "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
  290. "cpu": [
  291. "ia32"
  292. ],
  293. "dev": true,
  294. "license": "MIT",
  295. "optional": true,
  296. "os": [
  297. "linux"
  298. ],
  299. "engines": {
  300. "node": ">=18"
  301. }
  302. },
  303. "node_modules/@esbuild/linux-loong64": {
  304. "version": "0.27.3",
  305. "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
  306. "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
  307. "cpu": [
  308. "loong64"
  309. ],
  310. "dev": true,
  311. "license": "MIT",
  312. "optional": true,
  313. "os": [
  314. "linux"
  315. ],
  316. "engines": {
  317. "node": ">=18"
  318. }
  319. },
  320. "node_modules/@esbuild/linux-mips64el": {
  321. "version": "0.27.3",
  322. "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
  323. "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
  324. "cpu": [
  325. "mips64el"
  326. ],
  327. "dev": true,
  328. "license": "MIT",
  329. "optional": true,
  330. "os": [
  331. "linux"
  332. ],
  333. "engines": {
  334. "node": ">=18"
  335. }
  336. },
  337. "node_modules/@esbuild/linux-ppc64": {
  338. "version": "0.27.3",
  339. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
  340. "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
  341. "cpu": [
  342. "ppc64"
  343. ],
  344. "dev": true,
  345. "license": "MIT",
  346. "optional": true,
  347. "os": [
  348. "linux"
  349. ],
  350. "engines": {
  351. "node": ">=18"
  352. }
  353. },
  354. "node_modules/@esbuild/linux-riscv64": {
  355. "version": "0.27.3",
  356. "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
  357. "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
  358. "cpu": [
  359. "riscv64"
  360. ],
  361. "dev": true,
  362. "license": "MIT",
  363. "optional": true,
  364. "os": [
  365. "linux"
  366. ],
  367. "engines": {
  368. "node": ">=18"
  369. }
  370. },
  371. "node_modules/@esbuild/linux-s390x": {
  372. "version": "0.27.3",
  373. "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
  374. "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
  375. "cpu": [
  376. "s390x"
  377. ],
  378. "dev": true,
  379. "license": "MIT",
  380. "optional": true,
  381. "os": [
  382. "linux"
  383. ],
  384. "engines": {
  385. "node": ">=18"
  386. }
  387. },
  388. "node_modules/@esbuild/linux-x64": {
  389. "version": "0.27.3",
  390. "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
  391. "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
  392. "cpu": [
  393. "x64"
  394. ],
  395. "dev": true,
  396. "license": "MIT",
  397. "optional": true,
  398. "os": [
  399. "linux"
  400. ],
  401. "engines": {
  402. "node": ">=18"
  403. }
  404. },
  405. "node_modules/@esbuild/netbsd-arm64": {
  406. "version": "0.27.3",
  407. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
  408. "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
  409. "cpu": [
  410. "arm64"
  411. ],
  412. "dev": true,
  413. "license": "MIT",
  414. "optional": true,
  415. "os": [
  416. "netbsd"
  417. ],
  418. "engines": {
  419. "node": ">=18"
  420. }
  421. },
  422. "node_modules/@esbuild/netbsd-x64": {
  423. "version": "0.27.3",
  424. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
  425. "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
  426. "cpu": [
  427. "x64"
  428. ],
  429. "dev": true,
  430. "license": "MIT",
  431. "optional": true,
  432. "os": [
  433. "netbsd"
  434. ],
  435. "engines": {
  436. "node": ">=18"
  437. }
  438. },
  439. "node_modules/@esbuild/openbsd-arm64": {
  440. "version": "0.27.3",
  441. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
  442. "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
  443. "cpu": [
  444. "arm64"
  445. ],
  446. "dev": true,
  447. "license": "MIT",
  448. "optional": true,
  449. "os": [
  450. "openbsd"
  451. ],
  452. "engines": {
  453. "node": ">=18"
  454. }
  455. },
  456. "node_modules/@esbuild/openbsd-x64": {
  457. "version": "0.27.3",
  458. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
  459. "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
  460. "cpu": [
  461. "x64"
  462. ],
  463. "dev": true,
  464. "license": "MIT",
  465. "optional": true,
  466. "os": [
  467. "openbsd"
  468. ],
  469. "engines": {
  470. "node": ">=18"
  471. }
  472. },
  473. "node_modules/@esbuild/openharmony-arm64": {
  474. "version": "0.27.3",
  475. "resolved": "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
  476. "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
  477. "cpu": [
  478. "arm64"
  479. ],
  480. "dev": true,
  481. "license": "MIT",
  482. "optional": true,
  483. "os": [
  484. "openharmony"
  485. ],
  486. "engines": {
  487. "node": ">=18"
  488. }
  489. },
  490. "node_modules/@esbuild/sunos-x64": {
  491. "version": "0.27.3",
  492. "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
  493. "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
  494. "cpu": [
  495. "x64"
  496. ],
  497. "dev": true,
  498. "license": "MIT",
  499. "optional": true,
  500. "os": [
  501. "sunos"
  502. ],
  503. "engines": {
  504. "node": ">=18"
  505. }
  506. },
  507. "node_modules/@esbuild/win32-arm64": {
  508. "version": "0.27.3",
  509. "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
  510. "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
  511. "cpu": [
  512. "arm64"
  513. ],
  514. "dev": true,
  515. "license": "MIT",
  516. "optional": true,
  517. "os": [
  518. "win32"
  519. ],
  520. "engines": {
  521. "node": ">=18"
  522. }
  523. },
  524. "node_modules/@esbuild/win32-ia32": {
  525. "version": "0.27.3",
  526. "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
  527. "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
  528. "cpu": [
  529. "ia32"
  530. ],
  531. "dev": true,
  532. "license": "MIT",
  533. "optional": true,
  534. "os": [
  535. "win32"
  536. ],
  537. "engines": {
  538. "node": ">=18"
  539. }
  540. },
  541. "node_modules/@esbuild/win32-x64": {
  542. "version": "0.27.3",
  543. "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
  544. "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
  545. "cpu": [
  546. "x64"
  547. ],
  548. "dev": true,
  549. "license": "MIT",
  550. "optional": true,
  551. "os": [
  552. "win32"
  553. ],
  554. "engines": {
  555. "node": ">=18"
  556. }
  557. },
  558. "node_modules/@floating-ui/core": {
  559. "version": "1.7.4",
  560. "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.7.4.tgz",
  561. "integrity": "sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==",
  562. "license": "MIT",
  563. "dependencies": {
  564. "@floating-ui/utils": "^0.2.10"
  565. }
  566. },
  567. "node_modules/@floating-ui/dom": {
  568. "version": "1.7.5",
  569. "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.7.5.tgz",
  570. "integrity": "sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==",
  571. "license": "MIT",
  572. "dependencies": {
  573. "@floating-ui/core": "^1.7.4",
  574. "@floating-ui/utils": "^0.2.10"
  575. }
  576. },
  577. "node_modules/@floating-ui/utils": {
  578. "version": "0.2.10",
  579. "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.10.tgz",
  580. "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
  581. "license": "MIT"
  582. },
  583. "node_modules/@jridgewell/gen-mapping": {
  584. "version": "0.3.13",
  585. "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
  586. "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
  587. "license": "MIT",
  588. "dependencies": {
  589. "@jridgewell/sourcemap-codec": "^1.5.0",
  590. "@jridgewell/trace-mapping": "^0.3.24"
  591. }
  592. },
  593. "node_modules/@jridgewell/remapping": {
  594. "version": "2.3.5",
  595. "resolved": "https://registry.npmmirror.com/@jridgewell/remapping/-/remapping-2.3.5.tgz",
  596. "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
  597. "license": "MIT",
  598. "dependencies": {
  599. "@jridgewell/gen-mapping": "^0.3.5",
  600. "@jridgewell/trace-mapping": "^0.3.24"
  601. }
  602. },
  603. "node_modules/@jridgewell/resolve-uri": {
  604. "version": "3.1.2",
  605. "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  606. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  607. "license": "MIT",
  608. "engines": {
  609. "node": ">=6.0.0"
  610. }
  611. },
  612. "node_modules/@jridgewell/sourcemap-codec": {
  613. "version": "1.5.5",
  614. "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  615. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  616. "license": "MIT"
  617. },
  618. "node_modules/@jridgewell/trace-mapping": {
  619. "version": "0.3.31",
  620. "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
  621. "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
  622. "license": "MIT",
  623. "dependencies": {
  624. "@jridgewell/resolve-uri": "^3.1.0",
  625. "@jridgewell/sourcemap-codec": "^1.4.14"
  626. }
  627. },
  628. "node_modules/@popperjs/core": {
  629. "name": "@sxzz/popperjs-es",
  630. "version": "2.11.8",
  631. "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.8.tgz",
  632. "integrity": "sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==",
  633. "license": "MIT",
  634. "funding": {
  635. "type": "opencollective",
  636. "url": "https://opencollective.com/popperjs"
  637. }
  638. },
  639. "node_modules/@rolldown/pluginutils": {
  640. "version": "1.0.0-rc.2",
  641. "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz",
  642. "integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==",
  643. "dev": true,
  644. "license": "MIT"
  645. },
  646. "node_modules/@rollup/rollup-android-arm-eabi": {
  647. "version": "4.59.0",
  648. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz",
  649. "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==",
  650. "cpu": [
  651. "arm"
  652. ],
  653. "dev": true,
  654. "license": "MIT",
  655. "optional": true,
  656. "os": [
  657. "android"
  658. ]
  659. },
  660. "node_modules/@rollup/rollup-android-arm64": {
  661. "version": "4.59.0",
  662. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz",
  663. "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==",
  664. "cpu": [
  665. "arm64"
  666. ],
  667. "dev": true,
  668. "license": "MIT",
  669. "optional": true,
  670. "os": [
  671. "android"
  672. ]
  673. },
  674. "node_modules/@rollup/rollup-darwin-arm64": {
  675. "version": "4.59.0",
  676. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz",
  677. "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==",
  678. "cpu": [
  679. "arm64"
  680. ],
  681. "dev": true,
  682. "license": "MIT",
  683. "optional": true,
  684. "os": [
  685. "darwin"
  686. ]
  687. },
  688. "node_modules/@rollup/rollup-darwin-x64": {
  689. "version": "4.59.0",
  690. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz",
  691. "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==",
  692. "cpu": [
  693. "x64"
  694. ],
  695. "dev": true,
  696. "license": "MIT",
  697. "optional": true,
  698. "os": [
  699. "darwin"
  700. ]
  701. },
  702. "node_modules/@rollup/rollup-freebsd-arm64": {
  703. "version": "4.59.0",
  704. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz",
  705. "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==",
  706. "cpu": [
  707. "arm64"
  708. ],
  709. "dev": true,
  710. "license": "MIT",
  711. "optional": true,
  712. "os": [
  713. "freebsd"
  714. ]
  715. },
  716. "node_modules/@rollup/rollup-freebsd-x64": {
  717. "version": "4.59.0",
  718. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz",
  719. "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==",
  720. "cpu": [
  721. "x64"
  722. ],
  723. "dev": true,
  724. "license": "MIT",
  725. "optional": true,
  726. "os": [
  727. "freebsd"
  728. ]
  729. },
  730. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  731. "version": "4.59.0",
  732. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz",
  733. "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==",
  734. "cpu": [
  735. "arm"
  736. ],
  737. "dev": true,
  738. "license": "MIT",
  739. "optional": true,
  740. "os": [
  741. "linux"
  742. ]
  743. },
  744. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  745. "version": "4.59.0",
  746. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz",
  747. "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==",
  748. "cpu": [
  749. "arm"
  750. ],
  751. "dev": true,
  752. "license": "MIT",
  753. "optional": true,
  754. "os": [
  755. "linux"
  756. ]
  757. },
  758. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  759. "version": "4.59.0",
  760. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz",
  761. "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==",
  762. "cpu": [
  763. "arm64"
  764. ],
  765. "dev": true,
  766. "license": "MIT",
  767. "optional": true,
  768. "os": [
  769. "linux"
  770. ]
  771. },
  772. "node_modules/@rollup/rollup-linux-arm64-musl": {
  773. "version": "4.59.0",
  774. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz",
  775. "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==",
  776. "cpu": [
  777. "arm64"
  778. ],
  779. "dev": true,
  780. "license": "MIT",
  781. "optional": true,
  782. "os": [
  783. "linux"
  784. ]
  785. },
  786. "node_modules/@rollup/rollup-linux-loong64-gnu": {
  787. "version": "4.59.0",
  788. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz",
  789. "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==",
  790. "cpu": [
  791. "loong64"
  792. ],
  793. "dev": true,
  794. "license": "MIT",
  795. "optional": true,
  796. "os": [
  797. "linux"
  798. ]
  799. },
  800. "node_modules/@rollup/rollup-linux-loong64-musl": {
  801. "version": "4.59.0",
  802. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz",
  803. "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==",
  804. "cpu": [
  805. "loong64"
  806. ],
  807. "dev": true,
  808. "license": "MIT",
  809. "optional": true,
  810. "os": [
  811. "linux"
  812. ]
  813. },
  814. "node_modules/@rollup/rollup-linux-ppc64-gnu": {
  815. "version": "4.59.0",
  816. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz",
  817. "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==",
  818. "cpu": [
  819. "ppc64"
  820. ],
  821. "dev": true,
  822. "license": "MIT",
  823. "optional": true,
  824. "os": [
  825. "linux"
  826. ]
  827. },
  828. "node_modules/@rollup/rollup-linux-ppc64-musl": {
  829. "version": "4.59.0",
  830. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz",
  831. "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==",
  832. "cpu": [
  833. "ppc64"
  834. ],
  835. "dev": true,
  836. "license": "MIT",
  837. "optional": true,
  838. "os": [
  839. "linux"
  840. ]
  841. },
  842. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  843. "version": "4.59.0",
  844. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz",
  845. "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==",
  846. "cpu": [
  847. "riscv64"
  848. ],
  849. "dev": true,
  850. "license": "MIT",
  851. "optional": true,
  852. "os": [
  853. "linux"
  854. ]
  855. },
  856. "node_modules/@rollup/rollup-linux-riscv64-musl": {
  857. "version": "4.59.0",
  858. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz",
  859. "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==",
  860. "cpu": [
  861. "riscv64"
  862. ],
  863. "dev": true,
  864. "license": "MIT",
  865. "optional": true,
  866. "os": [
  867. "linux"
  868. ]
  869. },
  870. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  871. "version": "4.59.0",
  872. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz",
  873. "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==",
  874. "cpu": [
  875. "s390x"
  876. ],
  877. "dev": true,
  878. "license": "MIT",
  879. "optional": true,
  880. "os": [
  881. "linux"
  882. ]
  883. },
  884. "node_modules/@rollup/rollup-linux-x64-gnu": {
  885. "version": "4.59.0",
  886. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz",
  887. "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==",
  888. "cpu": [
  889. "x64"
  890. ],
  891. "dev": true,
  892. "license": "MIT",
  893. "optional": true,
  894. "os": [
  895. "linux"
  896. ]
  897. },
  898. "node_modules/@rollup/rollup-linux-x64-musl": {
  899. "version": "4.59.0",
  900. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz",
  901. "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==",
  902. "cpu": [
  903. "x64"
  904. ],
  905. "dev": true,
  906. "license": "MIT",
  907. "optional": true,
  908. "os": [
  909. "linux"
  910. ]
  911. },
  912. "node_modules/@rollup/rollup-openbsd-x64": {
  913. "version": "4.59.0",
  914. "resolved": "https://registry.npmmirror.com/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz",
  915. "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==",
  916. "cpu": [
  917. "x64"
  918. ],
  919. "dev": true,
  920. "license": "MIT",
  921. "optional": true,
  922. "os": [
  923. "openbsd"
  924. ]
  925. },
  926. "node_modules/@rollup/rollup-openharmony-arm64": {
  927. "version": "4.59.0",
  928. "resolved": "https://registry.npmmirror.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz",
  929. "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==",
  930. "cpu": [
  931. "arm64"
  932. ],
  933. "dev": true,
  934. "license": "MIT",
  935. "optional": true,
  936. "os": [
  937. "openharmony"
  938. ]
  939. },
  940. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  941. "version": "4.59.0",
  942. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz",
  943. "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==",
  944. "cpu": [
  945. "arm64"
  946. ],
  947. "dev": true,
  948. "license": "MIT",
  949. "optional": true,
  950. "os": [
  951. "win32"
  952. ]
  953. },
  954. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  955. "version": "4.59.0",
  956. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz",
  957. "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==",
  958. "cpu": [
  959. "ia32"
  960. ],
  961. "dev": true,
  962. "license": "MIT",
  963. "optional": true,
  964. "os": [
  965. "win32"
  966. ]
  967. },
  968. "node_modules/@rollup/rollup-win32-x64-gnu": {
  969. "version": "4.59.0",
  970. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz",
  971. "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==",
  972. "cpu": [
  973. "x64"
  974. ],
  975. "dev": true,
  976. "license": "MIT",
  977. "optional": true,
  978. "os": [
  979. "win32"
  980. ]
  981. },
  982. "node_modules/@rollup/rollup-win32-x64-msvc": {
  983. "version": "4.59.0",
  984. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz",
  985. "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==",
  986. "cpu": [
  987. "x64"
  988. ],
  989. "dev": true,
  990. "license": "MIT",
  991. "optional": true,
  992. "os": [
  993. "win32"
  994. ]
  995. },
  996. "node_modules/@types/estree": {
  997. "version": "1.0.8",
  998. "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz",
  999. "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
  1000. "dev": true,
  1001. "license": "MIT"
  1002. },
  1003. "node_modules/@types/hammerjs": {
  1004. "version": "2.0.46",
  1005. "resolved": "https://registry.npmmirror.com/@types/hammerjs/-/hammerjs-2.0.46.tgz",
  1006. "integrity": "sha512-ynRvcq6wvqexJ9brDMS4BnBLzmr0e14d6ZJTEShTBWKymQiHwlAyGu0ZPEFI2Fh1U53F7tN9ufClWM5KvqkKOw==",
  1007. "license": "MIT",
  1008. "peer": true
  1009. },
  1010. "node_modules/@types/lodash": {
  1011. "version": "4.17.24",
  1012. "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.24.tgz",
  1013. "integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
  1014. "license": "MIT"
  1015. },
  1016. "node_modules/@types/lodash-es": {
  1017. "version": "4.17.12",
  1018. "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  1019. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  1020. "license": "MIT",
  1021. "dependencies": {
  1022. "@types/lodash": "*"
  1023. }
  1024. },
  1025. "node_modules/@types/web-bluetooth": {
  1026. "version": "0.0.20",
  1027. "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz",
  1028. "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==",
  1029. "license": "MIT"
  1030. },
  1031. "node_modules/@vitejs/plugin-vue": {
  1032. "version": "6.0.4",
  1033. "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.4.tgz",
  1034. "integrity": "sha512-uM5iXipgYIn13UUQCZNdWkYk+sysBeA97d5mHsAoAt1u/wpN3+zxOmsVJWosuzX+IMGRzeYUNytztrYznboIkQ==",
  1035. "dev": true,
  1036. "license": "MIT",
  1037. "dependencies": {
  1038. "@rolldown/pluginutils": "1.0.0-rc.2"
  1039. },
  1040. "engines": {
  1041. "node": "^20.19.0 || >=22.12.0"
  1042. },
  1043. "peerDependencies": {
  1044. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0",
  1045. "vue": "^3.2.25"
  1046. }
  1047. },
  1048. "node_modules/@vue-macros/common": {
  1049. "version": "3.1.2",
  1050. "resolved": "https://registry.npmmirror.com/@vue-macros/common/-/common-3.1.2.tgz",
  1051. "integrity": "sha512-h9t4ArDdniO9ekYHAD95t9AZcAbb19lEGK+26iAjUODOIJKmObDNBSe4+6ELQAA3vtYiFPPBtHh7+cQCKi3Dng==",
  1052. "license": "MIT",
  1053. "dependencies": {
  1054. "@vue/compiler-sfc": "^3.5.22",
  1055. "ast-kit": "^2.1.2",
  1056. "local-pkg": "^1.1.2",
  1057. "magic-string-ast": "^1.0.2",
  1058. "unplugin-utils": "^0.3.0"
  1059. },
  1060. "engines": {
  1061. "node": ">=20.19.0"
  1062. },
  1063. "funding": {
  1064. "url": "https://github.com/sponsors/vue-macros"
  1065. },
  1066. "peerDependencies": {
  1067. "vue": "^2.7.0 || ^3.2.25"
  1068. },
  1069. "peerDependenciesMeta": {
  1070. "vue": {
  1071. "optional": true
  1072. }
  1073. }
  1074. },
  1075. "node_modules/@vue/compiler-core": {
  1076. "version": "3.5.29",
  1077. "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.29.tgz",
  1078. "integrity": "sha512-cuzPhD8fwRHk8IGfmYaR4eEe4cAyJEL66Ove/WZL7yWNL134nqLddSLwNRIsFlnnW1kK+p8Ck3viFnC0chXCXw==",
  1079. "license": "MIT",
  1080. "dependencies": {
  1081. "@babel/parser": "^7.29.0",
  1082. "@vue/shared": "3.5.29",
  1083. "entities": "^7.0.1",
  1084. "estree-walker": "^2.0.2",
  1085. "source-map-js": "^1.2.1"
  1086. }
  1087. },
  1088. "node_modules/@vue/compiler-dom": {
  1089. "version": "3.5.29",
  1090. "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.29.tgz",
  1091. "integrity": "sha512-n0G5o7R3uBVmVxjTIYcz7ovr8sy7QObFG8OQJ3xGCDNhbG60biP/P5KnyY8NLd81OuT1WJflG7N4KWYHaeeaIg==",
  1092. "license": "MIT",
  1093. "dependencies": {
  1094. "@vue/compiler-core": "3.5.29",
  1095. "@vue/shared": "3.5.29"
  1096. }
  1097. },
  1098. "node_modules/@vue/compiler-sfc": {
  1099. "version": "3.5.29",
  1100. "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.29.tgz",
  1101. "integrity": "sha512-oJZhN5XJs35Gzr50E82jg2cYdZQ78wEwvRO6Y63TvLVTc+6xICzJHP1UIecdSPPYIbkautNBanDiWYa64QSFIA==",
  1102. "license": "MIT",
  1103. "dependencies": {
  1104. "@babel/parser": "^7.29.0",
  1105. "@vue/compiler-core": "3.5.29",
  1106. "@vue/compiler-dom": "3.5.29",
  1107. "@vue/compiler-ssr": "3.5.29",
  1108. "@vue/shared": "3.5.29",
  1109. "estree-walker": "^2.0.2",
  1110. "magic-string": "^0.30.21",
  1111. "postcss": "^8.5.6",
  1112. "source-map-js": "^1.2.1"
  1113. }
  1114. },
  1115. "node_modules/@vue/compiler-ssr": {
  1116. "version": "3.5.29",
  1117. "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.29.tgz",
  1118. "integrity": "sha512-Y/ARJZE6fpjzL5GH/phJmsFwx3g6t2KmHKHx5q+MLl2kencADKIrhH5MLF6HHpRMmlRAYBRSvv347Mepf1zVNw==",
  1119. "license": "MIT",
  1120. "dependencies": {
  1121. "@vue/compiler-dom": "3.5.29",
  1122. "@vue/shared": "3.5.29"
  1123. }
  1124. },
  1125. "node_modules/@vue/devtools-api": {
  1126. "version": "8.0.6",
  1127. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-8.0.6.tgz",
  1128. "integrity": "sha512-+lGBI+WTvJmnU2FZqHhEB8J1DXcvNlDeEalz77iYgOdY1jTj1ipSBaKj3sRhYcy+kqA8v/BSuvOz1XJucfQmUA==",
  1129. "license": "MIT",
  1130. "dependencies": {
  1131. "@vue/devtools-kit": "^8.0.6"
  1132. }
  1133. },
  1134. "node_modules/@vue/devtools-kit": {
  1135. "version": "8.0.6",
  1136. "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-8.0.6.tgz",
  1137. "integrity": "sha512-9zXZPTJW72OteDXeSa5RVML3zWDCRcO5t77aJqSs228mdopYj5AiTpihozbsfFJ0IodfNs7pSgOGO3qfCuxDtw==",
  1138. "license": "MIT",
  1139. "dependencies": {
  1140. "@vue/devtools-shared": "^8.0.6",
  1141. "birpc": "^2.6.1",
  1142. "hookable": "^5.5.3",
  1143. "mitt": "^3.0.1",
  1144. "perfect-debounce": "^2.0.0",
  1145. "speakingurl": "^14.0.1",
  1146. "superjson": "^2.2.2"
  1147. }
  1148. },
  1149. "node_modules/@vue/devtools-shared": {
  1150. "version": "8.0.6",
  1151. "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-8.0.6.tgz",
  1152. "integrity": "sha512-Pp1JylTqlgMJvxW6MGyfTF8vGvlBSCAvMFaDCYa82Mgw7TT5eE5kkHgDvmOGHWeJE4zIDfCpCxHapsK2LtIAJg==",
  1153. "license": "MIT",
  1154. "dependencies": {
  1155. "rfdc": "^1.4.1"
  1156. }
  1157. },
  1158. "node_modules/@vue/reactivity": {
  1159. "version": "3.5.29",
  1160. "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.29.tgz",
  1161. "integrity": "sha512-zcrANcrRdcLtmGZETBxWqIkoQei8HaFpZWx/GHKxx79JZsiZ8j1du0VUJtu4eJjgFvU/iKL5lRXFXksVmI+5DA==",
  1162. "license": "MIT",
  1163. "dependencies": {
  1164. "@vue/shared": "3.5.29"
  1165. }
  1166. },
  1167. "node_modules/@vue/runtime-core": {
  1168. "version": "3.5.29",
  1169. "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.29.tgz",
  1170. "integrity": "sha512-8DpW2QfdwIWOLqtsNcds4s+QgwSaHSJY/SUe04LptianUQ/0xi6KVsu/pYVh+HO3NTVvVJjIPL2t6GdeKbS4Lg==",
  1171. "license": "MIT",
  1172. "dependencies": {
  1173. "@vue/reactivity": "3.5.29",
  1174. "@vue/shared": "3.5.29"
  1175. }
  1176. },
  1177. "node_modules/@vue/runtime-dom": {
  1178. "version": "3.5.29",
  1179. "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.29.tgz",
  1180. "integrity": "sha512-AHvvJEtcY9tw/uk+s/YRLSlxxQnqnAkjqvK25ZiM4CllCZWzElRAoQnCM42m9AHRLNJ6oe2kC5DCgD4AUdlvXg==",
  1181. "license": "MIT",
  1182. "dependencies": {
  1183. "@vue/reactivity": "3.5.29",
  1184. "@vue/runtime-core": "3.5.29",
  1185. "@vue/shared": "3.5.29",
  1186. "csstype": "^3.2.3"
  1187. }
  1188. },
  1189. "node_modules/@vue/server-renderer": {
  1190. "version": "3.5.29",
  1191. "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.29.tgz",
  1192. "integrity": "sha512-G/1k6WK5MusLlbxSE2YTcqAAezS+VuwHhOvLx2KnQU7G2zCH6KIb+5Wyt6UjMq7a3qPzNEjJXs1hvAxDclQH+g==",
  1193. "license": "MIT",
  1194. "dependencies": {
  1195. "@vue/compiler-ssr": "3.5.29",
  1196. "@vue/shared": "3.5.29"
  1197. },
  1198. "peerDependencies": {
  1199. "vue": "3.5.29"
  1200. }
  1201. },
  1202. "node_modules/@vue/shared": {
  1203. "version": "3.5.29",
  1204. "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.29.tgz",
  1205. "integrity": "sha512-w7SR0A5zyRByL9XUkCfdLs7t9XOHUyJ67qPGQjOou3p6GvBeBW+AVjUUmlxtZ4PIYaRvE+1LmK44O4uajlZwcg==",
  1206. "license": "MIT"
  1207. },
  1208. "node_modules/@vueuse/core": {
  1209. "version": "10.11.1",
  1210. "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-10.11.1.tgz",
  1211. "integrity": "sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==",
  1212. "license": "MIT",
  1213. "dependencies": {
  1214. "@types/web-bluetooth": "^0.0.20",
  1215. "@vueuse/metadata": "10.11.1",
  1216. "@vueuse/shared": "10.11.1",
  1217. "vue-demi": ">=0.14.8"
  1218. },
  1219. "funding": {
  1220. "url": "https://github.com/sponsors/antfu"
  1221. }
  1222. },
  1223. "node_modules/@vueuse/core/node_modules/vue-demi": {
  1224. "version": "0.14.10",
  1225. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
  1226. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1227. "hasInstallScript": true,
  1228. "license": "MIT",
  1229. "bin": {
  1230. "vue-demi-fix": "bin/vue-demi-fix.js",
  1231. "vue-demi-switch": "bin/vue-demi-switch.js"
  1232. },
  1233. "engines": {
  1234. "node": ">=12"
  1235. },
  1236. "funding": {
  1237. "url": "https://github.com/sponsors/antfu"
  1238. },
  1239. "peerDependencies": {
  1240. "@vue/composition-api": "^1.0.0-rc.1",
  1241. "vue": "^3.0.0-0 || ^2.6.0"
  1242. },
  1243. "peerDependenciesMeta": {
  1244. "@vue/composition-api": {
  1245. "optional": true
  1246. }
  1247. }
  1248. },
  1249. "node_modules/@vueuse/metadata": {
  1250. "version": "10.11.1",
  1251. "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.11.1.tgz",
  1252. "integrity": "sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==",
  1253. "license": "MIT",
  1254. "funding": {
  1255. "url": "https://github.com/sponsors/antfu"
  1256. }
  1257. },
  1258. "node_modules/@vueuse/shared": {
  1259. "version": "10.11.1",
  1260. "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-10.11.1.tgz",
  1261. "integrity": "sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==",
  1262. "license": "MIT",
  1263. "dependencies": {
  1264. "vue-demi": ">=0.14.8"
  1265. },
  1266. "funding": {
  1267. "url": "https://github.com/sponsors/antfu"
  1268. }
  1269. },
  1270. "node_modules/@vueuse/shared/node_modules/vue-demi": {
  1271. "version": "0.14.10",
  1272. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
  1273. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  1274. "hasInstallScript": true,
  1275. "license": "MIT",
  1276. "bin": {
  1277. "vue-demi-fix": "bin/vue-demi-fix.js",
  1278. "vue-demi-switch": "bin/vue-demi-switch.js"
  1279. },
  1280. "engines": {
  1281. "node": ">=12"
  1282. },
  1283. "funding": {
  1284. "url": "https://github.com/sponsors/antfu"
  1285. },
  1286. "peerDependencies": {
  1287. "@vue/composition-api": "^1.0.0-rc.1",
  1288. "vue": "^3.0.0-0 || ^2.6.0"
  1289. },
  1290. "peerDependenciesMeta": {
  1291. "@vue/composition-api": {
  1292. "optional": true
  1293. }
  1294. }
  1295. },
  1296. "node_modules/acorn": {
  1297. "version": "8.16.0",
  1298. "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.16.0.tgz",
  1299. "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
  1300. "license": "MIT",
  1301. "bin": {
  1302. "acorn": "bin/acorn"
  1303. },
  1304. "engines": {
  1305. "node": ">=0.4.0"
  1306. }
  1307. },
  1308. "node_modules/ast-kit": {
  1309. "version": "2.2.0",
  1310. "resolved": "https://registry.npmmirror.com/ast-kit/-/ast-kit-2.2.0.tgz",
  1311. "integrity": "sha512-m1Q/RaVOnTp9JxPX+F+Zn7IcLYMzM8kZofDImfsKZd8MbR+ikdOzTeztStWqfrqIxZnYWryyI9ePm3NGjnZgGw==",
  1312. "license": "MIT",
  1313. "dependencies": {
  1314. "@babel/parser": "^7.28.5",
  1315. "pathe": "^2.0.3"
  1316. },
  1317. "engines": {
  1318. "node": ">=20.19.0"
  1319. },
  1320. "funding": {
  1321. "url": "https://github.com/sponsors/sxzz"
  1322. }
  1323. },
  1324. "node_modules/ast-walker-scope": {
  1325. "version": "0.8.3",
  1326. "resolved": "https://registry.npmmirror.com/ast-walker-scope/-/ast-walker-scope-0.8.3.tgz",
  1327. "integrity": "sha512-cbdCP0PGOBq0ASG+sjnKIoYkWMKhhz+F/h9pRexUdX2Hd38+WOlBkRKlqkGOSm0YQpcFMQBJeK4WspUAkwsEdg==",
  1328. "license": "MIT",
  1329. "dependencies": {
  1330. "@babel/parser": "^7.28.4",
  1331. "ast-kit": "^2.1.3"
  1332. },
  1333. "engines": {
  1334. "node": ">=20.19.0"
  1335. },
  1336. "funding": {
  1337. "url": "https://github.com/sponsors/sxzz"
  1338. }
  1339. },
  1340. "node_modules/async-validator": {
  1341. "version": "4.2.5",
  1342. "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
  1343. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  1344. "license": "MIT"
  1345. },
  1346. "node_modules/asynckit": {
  1347. "version": "0.4.0",
  1348. "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz",
  1349. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  1350. "license": "MIT"
  1351. },
  1352. "node_modules/axios": {
  1353. "version": "1.13.5",
  1354. "resolved": "https://registry.npmmirror.com/axios/-/axios-1.13.5.tgz",
  1355. "integrity": "sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==",
  1356. "license": "MIT",
  1357. "dependencies": {
  1358. "follow-redirects": "^1.15.11",
  1359. "form-data": "^4.0.5",
  1360. "proxy-from-env": "^1.1.0"
  1361. }
  1362. },
  1363. "node_modules/birpc": {
  1364. "version": "2.9.0",
  1365. "resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.9.0.tgz",
  1366. "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
  1367. "license": "MIT",
  1368. "funding": {
  1369. "url": "https://github.com/sponsors/antfu"
  1370. }
  1371. },
  1372. "node_modules/call-bind-apply-helpers": {
  1373. "version": "1.0.2",
  1374. "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1375. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1376. "license": "MIT",
  1377. "dependencies": {
  1378. "es-errors": "^1.3.0",
  1379. "function-bind": "^1.1.2"
  1380. },
  1381. "engines": {
  1382. "node": ">= 0.4"
  1383. }
  1384. },
  1385. "node_modules/chokidar": {
  1386. "version": "5.0.0",
  1387. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-5.0.0.tgz",
  1388. "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==",
  1389. "license": "MIT",
  1390. "dependencies": {
  1391. "readdirp": "^5.0.0"
  1392. },
  1393. "engines": {
  1394. "node": ">= 20.19.0"
  1395. },
  1396. "funding": {
  1397. "url": "https://paulmillr.com/funding/"
  1398. }
  1399. },
  1400. "node_modules/combined-stream": {
  1401. "version": "1.0.8",
  1402. "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz",
  1403. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  1404. "license": "MIT",
  1405. "dependencies": {
  1406. "delayed-stream": "~1.0.0"
  1407. },
  1408. "engines": {
  1409. "node": ">= 0.8"
  1410. }
  1411. },
  1412. "node_modules/component-emitter": {
  1413. "version": "2.0.0",
  1414. "resolved": "https://registry.npmmirror.com/component-emitter/-/component-emitter-2.0.0.tgz",
  1415. "integrity": "sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw==",
  1416. "license": "MIT",
  1417. "peer": true,
  1418. "engines": {
  1419. "node": ">=18"
  1420. },
  1421. "funding": {
  1422. "url": "https://github.com/sponsors/sindresorhus"
  1423. }
  1424. },
  1425. "node_modules/confbox": {
  1426. "version": "0.2.4",
  1427. "resolved": "https://registry.npmmirror.com/confbox/-/confbox-0.2.4.tgz",
  1428. "integrity": "sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==",
  1429. "license": "MIT"
  1430. },
  1431. "node_modules/copy-anything": {
  1432. "version": "4.0.5",
  1433. "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-4.0.5.tgz",
  1434. "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
  1435. "license": "MIT",
  1436. "dependencies": {
  1437. "is-what": "^5.2.0"
  1438. },
  1439. "engines": {
  1440. "node": ">=18"
  1441. },
  1442. "funding": {
  1443. "url": "https://github.com/sponsors/mesqueeb"
  1444. }
  1445. },
  1446. "node_modules/csstype": {
  1447. "version": "3.2.3",
  1448. "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
  1449. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1450. "license": "MIT"
  1451. },
  1452. "node_modules/dayjs": {
  1453. "version": "1.11.19",
  1454. "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.19.tgz",
  1455. "integrity": "sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==",
  1456. "license": "MIT"
  1457. },
  1458. "node_modules/delayed-stream": {
  1459. "version": "1.0.0",
  1460. "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz",
  1461. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  1462. "license": "MIT",
  1463. "engines": {
  1464. "node": ">=0.4.0"
  1465. }
  1466. },
  1467. "node_modules/dunder-proto": {
  1468. "version": "1.0.1",
  1469. "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
  1470. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  1471. "license": "MIT",
  1472. "dependencies": {
  1473. "call-bind-apply-helpers": "^1.0.1",
  1474. "es-errors": "^1.3.0",
  1475. "gopd": "^1.2.0"
  1476. },
  1477. "engines": {
  1478. "node": ">= 0.4"
  1479. }
  1480. },
  1481. "node_modules/element-plus": {
  1482. "version": "2.13.2",
  1483. "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.13.2.tgz",
  1484. "integrity": "sha512-Zjzm1NnFXGhV4LYZ6Ze9skPlYi2B4KAmN18FL63A3PZcjhDfroHwhtM6RE8BonlOPHXUnPQynH0BgaoEfvhrGw==",
  1485. "license": "MIT",
  1486. "dependencies": {
  1487. "@ctrl/tinycolor": "^3.4.1",
  1488. "@element-plus/icons-vue": "^2.3.2",
  1489. "@floating-ui/dom": "^1.0.1",
  1490. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
  1491. "@types/lodash": "^4.17.20",
  1492. "@types/lodash-es": "^4.17.12",
  1493. "@vueuse/core": "^10.11.0",
  1494. "async-validator": "^4.2.5",
  1495. "dayjs": "^1.11.19",
  1496. "lodash": "^4.17.23",
  1497. "lodash-es": "^4.17.23",
  1498. "lodash-unified": "^1.0.3",
  1499. "memoize-one": "^6.0.0",
  1500. "normalize-wheel-es": "^1.2.0"
  1501. },
  1502. "peerDependencies": {
  1503. "vue": "^3.3.0"
  1504. }
  1505. },
  1506. "node_modules/entities": {
  1507. "version": "7.0.1",
  1508. "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz",
  1509. "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
  1510. "license": "BSD-2-Clause",
  1511. "engines": {
  1512. "node": ">=0.12"
  1513. },
  1514. "funding": {
  1515. "url": "https://github.com/fb55/entities?sponsor=1"
  1516. }
  1517. },
  1518. "node_modules/es-define-property": {
  1519. "version": "1.0.1",
  1520. "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz",
  1521. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  1522. "license": "MIT",
  1523. "engines": {
  1524. "node": ">= 0.4"
  1525. }
  1526. },
  1527. "node_modules/es-errors": {
  1528. "version": "1.3.0",
  1529. "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz",
  1530. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  1531. "license": "MIT",
  1532. "engines": {
  1533. "node": ">= 0.4"
  1534. }
  1535. },
  1536. "node_modules/es-object-atoms": {
  1537. "version": "1.1.1",
  1538. "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  1539. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  1540. "license": "MIT",
  1541. "dependencies": {
  1542. "es-errors": "^1.3.0"
  1543. },
  1544. "engines": {
  1545. "node": ">= 0.4"
  1546. }
  1547. },
  1548. "node_modules/es-set-tostringtag": {
  1549. "version": "2.1.0",
  1550. "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  1551. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  1552. "license": "MIT",
  1553. "dependencies": {
  1554. "es-errors": "^1.3.0",
  1555. "get-intrinsic": "^1.2.6",
  1556. "has-tostringtag": "^1.0.2",
  1557. "hasown": "^2.0.2"
  1558. },
  1559. "engines": {
  1560. "node": ">= 0.4"
  1561. }
  1562. },
  1563. "node_modules/esbuild": {
  1564. "version": "0.27.3",
  1565. "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.27.3.tgz",
  1566. "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==",
  1567. "dev": true,
  1568. "hasInstallScript": true,
  1569. "license": "MIT",
  1570. "bin": {
  1571. "esbuild": "bin/esbuild"
  1572. },
  1573. "engines": {
  1574. "node": ">=18"
  1575. },
  1576. "optionalDependencies": {
  1577. "@esbuild/aix-ppc64": "0.27.3",
  1578. "@esbuild/android-arm": "0.27.3",
  1579. "@esbuild/android-arm64": "0.27.3",
  1580. "@esbuild/android-x64": "0.27.3",
  1581. "@esbuild/darwin-arm64": "0.27.3",
  1582. "@esbuild/darwin-x64": "0.27.3",
  1583. "@esbuild/freebsd-arm64": "0.27.3",
  1584. "@esbuild/freebsd-x64": "0.27.3",
  1585. "@esbuild/linux-arm": "0.27.3",
  1586. "@esbuild/linux-arm64": "0.27.3",
  1587. "@esbuild/linux-ia32": "0.27.3",
  1588. "@esbuild/linux-loong64": "0.27.3",
  1589. "@esbuild/linux-mips64el": "0.27.3",
  1590. "@esbuild/linux-ppc64": "0.27.3",
  1591. "@esbuild/linux-riscv64": "0.27.3",
  1592. "@esbuild/linux-s390x": "0.27.3",
  1593. "@esbuild/linux-x64": "0.27.3",
  1594. "@esbuild/netbsd-arm64": "0.27.3",
  1595. "@esbuild/netbsd-x64": "0.27.3",
  1596. "@esbuild/openbsd-arm64": "0.27.3",
  1597. "@esbuild/openbsd-x64": "0.27.3",
  1598. "@esbuild/openharmony-arm64": "0.27.3",
  1599. "@esbuild/sunos-x64": "0.27.3",
  1600. "@esbuild/win32-arm64": "0.27.3",
  1601. "@esbuild/win32-ia32": "0.27.3",
  1602. "@esbuild/win32-x64": "0.27.3"
  1603. }
  1604. },
  1605. "node_modules/estree-walker": {
  1606. "version": "2.0.2",
  1607. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
  1608. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  1609. "license": "MIT"
  1610. },
  1611. "node_modules/exsolve": {
  1612. "version": "1.0.8",
  1613. "resolved": "https://registry.npmmirror.com/exsolve/-/exsolve-1.0.8.tgz",
  1614. "integrity": "sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==",
  1615. "license": "MIT"
  1616. },
  1617. "node_modules/fdir": {
  1618. "version": "6.5.0",
  1619. "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
  1620. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1621. "license": "MIT",
  1622. "engines": {
  1623. "node": ">=12.0.0"
  1624. },
  1625. "peerDependencies": {
  1626. "picomatch": "^3 || ^4"
  1627. },
  1628. "peerDependenciesMeta": {
  1629. "picomatch": {
  1630. "optional": true
  1631. }
  1632. }
  1633. },
  1634. "node_modules/follow-redirects": {
  1635. "version": "1.15.11",
  1636. "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.11.tgz",
  1637. "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
  1638. "funding": [
  1639. {
  1640. "type": "individual",
  1641. "url": "https://github.com/sponsors/RubenVerborgh"
  1642. }
  1643. ],
  1644. "license": "MIT",
  1645. "engines": {
  1646. "node": ">=4.0"
  1647. },
  1648. "peerDependenciesMeta": {
  1649. "debug": {
  1650. "optional": true
  1651. }
  1652. }
  1653. },
  1654. "node_modules/form-data": {
  1655. "version": "4.0.5",
  1656. "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.5.tgz",
  1657. "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
  1658. "license": "MIT",
  1659. "dependencies": {
  1660. "asynckit": "^0.4.0",
  1661. "combined-stream": "^1.0.8",
  1662. "es-set-tostringtag": "^2.1.0",
  1663. "hasown": "^2.0.2",
  1664. "mime-types": "^2.1.12"
  1665. },
  1666. "engines": {
  1667. "node": ">= 6"
  1668. }
  1669. },
  1670. "node_modules/fsevents": {
  1671. "version": "2.3.3",
  1672. "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
  1673. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1674. "dev": true,
  1675. "hasInstallScript": true,
  1676. "license": "MIT",
  1677. "optional": true,
  1678. "os": [
  1679. "darwin"
  1680. ],
  1681. "engines": {
  1682. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1683. }
  1684. },
  1685. "node_modules/function-bind": {
  1686. "version": "1.1.2",
  1687. "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz",
  1688. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1689. "license": "MIT",
  1690. "funding": {
  1691. "url": "https://github.com/sponsors/ljharb"
  1692. }
  1693. },
  1694. "node_modules/get-intrinsic": {
  1695. "version": "1.3.0",
  1696. "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1697. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1698. "license": "MIT",
  1699. "dependencies": {
  1700. "call-bind-apply-helpers": "^1.0.2",
  1701. "es-define-property": "^1.0.1",
  1702. "es-errors": "^1.3.0",
  1703. "es-object-atoms": "^1.1.1",
  1704. "function-bind": "^1.1.2",
  1705. "get-proto": "^1.0.1",
  1706. "gopd": "^1.2.0",
  1707. "has-symbols": "^1.1.0",
  1708. "hasown": "^2.0.2",
  1709. "math-intrinsics": "^1.1.0"
  1710. },
  1711. "engines": {
  1712. "node": ">= 0.4"
  1713. },
  1714. "funding": {
  1715. "url": "https://github.com/sponsors/ljharb"
  1716. }
  1717. },
  1718. "node_modules/get-proto": {
  1719. "version": "1.0.1",
  1720. "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz",
  1721. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1722. "license": "MIT",
  1723. "dependencies": {
  1724. "dunder-proto": "^1.0.1",
  1725. "es-object-atoms": "^1.0.0"
  1726. },
  1727. "engines": {
  1728. "node": ">= 0.4"
  1729. }
  1730. },
  1731. "node_modules/gopd": {
  1732. "version": "1.2.0",
  1733. "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
  1734. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1735. "license": "MIT",
  1736. "engines": {
  1737. "node": ">= 0.4"
  1738. },
  1739. "funding": {
  1740. "url": "https://github.com/sponsors/ljharb"
  1741. }
  1742. },
  1743. "node_modules/has-symbols": {
  1744. "version": "1.1.0",
  1745. "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz",
  1746. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1747. "license": "MIT",
  1748. "engines": {
  1749. "node": ">= 0.4"
  1750. },
  1751. "funding": {
  1752. "url": "https://github.com/sponsors/ljharb"
  1753. }
  1754. },
  1755. "node_modules/has-tostringtag": {
  1756. "version": "1.0.2",
  1757. "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  1758. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  1759. "license": "MIT",
  1760. "dependencies": {
  1761. "has-symbols": "^1.0.3"
  1762. },
  1763. "engines": {
  1764. "node": ">= 0.4"
  1765. },
  1766. "funding": {
  1767. "url": "https://github.com/sponsors/ljharb"
  1768. }
  1769. },
  1770. "node_modules/hasown": {
  1771. "version": "2.0.2",
  1772. "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz",
  1773. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  1774. "license": "MIT",
  1775. "dependencies": {
  1776. "function-bind": "^1.1.2"
  1777. },
  1778. "engines": {
  1779. "node": ">= 0.4"
  1780. }
  1781. },
  1782. "node_modules/hookable": {
  1783. "version": "5.5.3",
  1784. "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz",
  1785. "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
  1786. "license": "MIT"
  1787. },
  1788. "node_modules/is-what": {
  1789. "version": "5.5.0",
  1790. "resolved": "https://registry.npmmirror.com/is-what/-/is-what-5.5.0.tgz",
  1791. "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
  1792. "license": "MIT",
  1793. "engines": {
  1794. "node": ">=18"
  1795. },
  1796. "funding": {
  1797. "url": "https://github.com/sponsors/mesqueeb"
  1798. }
  1799. },
  1800. "node_modules/jsesc": {
  1801. "version": "3.1.0",
  1802. "resolved": "https://registry.npmmirror.com/jsesc/-/jsesc-3.1.0.tgz",
  1803. "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
  1804. "license": "MIT",
  1805. "bin": {
  1806. "jsesc": "bin/jsesc"
  1807. },
  1808. "engines": {
  1809. "node": ">=6"
  1810. }
  1811. },
  1812. "node_modules/json5": {
  1813. "version": "2.2.3",
  1814. "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz",
  1815. "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
  1816. "license": "MIT",
  1817. "bin": {
  1818. "json5": "lib/cli.js"
  1819. },
  1820. "engines": {
  1821. "node": ">=6"
  1822. }
  1823. },
  1824. "node_modules/keycharm": {
  1825. "version": "0.4.0",
  1826. "resolved": "https://registry.npmmirror.com/keycharm/-/keycharm-0.4.0.tgz",
  1827. "integrity": "sha512-TyQTtsabOVv3MeOpR92sIKk/br9wxS+zGj4BG7CR8YbK4jM3tyIBaF0zhzeBUMx36/Q/iQLOKKOT+3jOQtemRQ==",
  1828. "license": "(Apache-2.0 OR MIT)",
  1829. "peer": true
  1830. },
  1831. "node_modules/local-pkg": {
  1832. "version": "1.1.2",
  1833. "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-1.1.2.tgz",
  1834. "integrity": "sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==",
  1835. "license": "MIT",
  1836. "dependencies": {
  1837. "mlly": "^1.7.4",
  1838. "pkg-types": "^2.3.0",
  1839. "quansync": "^0.2.11"
  1840. },
  1841. "engines": {
  1842. "node": ">=14"
  1843. },
  1844. "funding": {
  1845. "url": "https://github.com/sponsors/antfu"
  1846. }
  1847. },
  1848. "node_modules/lodash": {
  1849. "version": "4.17.23",
  1850. "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.23.tgz",
  1851. "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
  1852. "license": "MIT"
  1853. },
  1854. "node_modules/lodash-es": {
  1855. "version": "4.17.23",
  1856. "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.23.tgz",
  1857. "integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==",
  1858. "license": "MIT"
  1859. },
  1860. "node_modules/lodash-unified": {
  1861. "version": "1.0.3",
  1862. "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz",
  1863. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  1864. "license": "MIT",
  1865. "peerDependencies": {
  1866. "@types/lodash-es": "*",
  1867. "lodash": "*",
  1868. "lodash-es": "*"
  1869. }
  1870. },
  1871. "node_modules/magic-string": {
  1872. "version": "0.30.21",
  1873. "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
  1874. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  1875. "license": "MIT",
  1876. "dependencies": {
  1877. "@jridgewell/sourcemap-codec": "^1.5.5"
  1878. }
  1879. },
  1880. "node_modules/magic-string-ast": {
  1881. "version": "1.0.2",
  1882. "resolved": "https://registry.npmmirror.com/magic-string-ast/-/magic-string-ast-1.0.2.tgz",
  1883. "integrity": "sha512-8ngQgLhcT0t3YBdn9CGkZqCYlvwW9pm7aWJwd7AxseVWf1RU8ZHCQvG1mt3N5vvUme+pXTcHB8G/7fE666U8Vw==",
  1884. "license": "MIT",
  1885. "dependencies": {
  1886. "magic-string": "^0.30.17"
  1887. },
  1888. "engines": {
  1889. "node": ">=20.18.0"
  1890. },
  1891. "funding": {
  1892. "url": "https://github.com/sponsors/sxzz"
  1893. }
  1894. },
  1895. "node_modules/math-intrinsics": {
  1896. "version": "1.1.0",
  1897. "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  1898. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  1899. "license": "MIT",
  1900. "engines": {
  1901. "node": ">= 0.4"
  1902. }
  1903. },
  1904. "node_modules/memoize-one": {
  1905. "version": "6.0.0",
  1906. "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz",
  1907. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  1908. "license": "MIT"
  1909. },
  1910. "node_modules/mime-db": {
  1911. "version": "1.52.0",
  1912. "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
  1913. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  1914. "license": "MIT",
  1915. "engines": {
  1916. "node": ">= 0.6"
  1917. }
  1918. },
  1919. "node_modules/mime-types": {
  1920. "version": "2.1.35",
  1921. "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz",
  1922. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  1923. "license": "MIT",
  1924. "dependencies": {
  1925. "mime-db": "1.52.0"
  1926. },
  1927. "engines": {
  1928. "node": ">= 0.6"
  1929. }
  1930. },
  1931. "node_modules/mitt": {
  1932. "version": "3.0.1",
  1933. "resolved": "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz",
  1934. "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
  1935. "license": "MIT"
  1936. },
  1937. "node_modules/mlly": {
  1938. "version": "1.8.0",
  1939. "resolved": "https://registry.npmmirror.com/mlly/-/mlly-1.8.0.tgz",
  1940. "integrity": "sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==",
  1941. "license": "MIT",
  1942. "dependencies": {
  1943. "acorn": "^8.15.0",
  1944. "pathe": "^2.0.3",
  1945. "pkg-types": "^1.3.1",
  1946. "ufo": "^1.6.1"
  1947. }
  1948. },
  1949. "node_modules/mlly/node_modules/confbox": {
  1950. "version": "0.1.8",
  1951. "resolved": "https://registry.npmmirror.com/confbox/-/confbox-0.1.8.tgz",
  1952. "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==",
  1953. "license": "MIT"
  1954. },
  1955. "node_modules/mlly/node_modules/pkg-types": {
  1956. "version": "1.3.1",
  1957. "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.3.1.tgz",
  1958. "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
  1959. "license": "MIT",
  1960. "dependencies": {
  1961. "confbox": "^0.1.8",
  1962. "mlly": "^1.7.4",
  1963. "pathe": "^2.0.1"
  1964. }
  1965. },
  1966. "node_modules/muggle-string": {
  1967. "version": "0.4.1",
  1968. "resolved": "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz",
  1969. "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
  1970. "license": "MIT"
  1971. },
  1972. "node_modules/nanoid": {
  1973. "version": "3.3.11",
  1974. "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz",
  1975. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  1976. "funding": [
  1977. {
  1978. "type": "github",
  1979. "url": "https://github.com/sponsors/ai"
  1980. }
  1981. ],
  1982. "license": "MIT",
  1983. "bin": {
  1984. "nanoid": "bin/nanoid.cjs"
  1985. },
  1986. "engines": {
  1987. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  1988. }
  1989. },
  1990. "node_modules/normalize-wheel-es": {
  1991. "version": "1.2.0",
  1992. "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  1993. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  1994. "license": "BSD-3-Clause"
  1995. },
  1996. "node_modules/pathe": {
  1997. "version": "2.0.3",
  1998. "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz",
  1999. "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
  2000. "license": "MIT"
  2001. },
  2002. "node_modules/perfect-debounce": {
  2003. "version": "2.1.0",
  2004. "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-2.1.0.tgz",
  2005. "integrity": "sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==",
  2006. "license": "MIT"
  2007. },
  2008. "node_modules/picocolors": {
  2009. "version": "1.1.1",
  2010. "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
  2011. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2012. "license": "ISC"
  2013. },
  2014. "node_modules/picomatch": {
  2015. "version": "4.0.3",
  2016. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz",
  2017. "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
  2018. "license": "MIT",
  2019. "engines": {
  2020. "node": ">=12"
  2021. },
  2022. "funding": {
  2023. "url": "https://github.com/sponsors/jonschlinkert"
  2024. }
  2025. },
  2026. "node_modules/pkg-types": {
  2027. "version": "2.3.0",
  2028. "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-2.3.0.tgz",
  2029. "integrity": "sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==",
  2030. "license": "MIT",
  2031. "dependencies": {
  2032. "confbox": "^0.2.2",
  2033. "exsolve": "^1.0.7",
  2034. "pathe": "^2.0.3"
  2035. }
  2036. },
  2037. "node_modules/postcss": {
  2038. "version": "8.5.6",
  2039. "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.6.tgz",
  2040. "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
  2041. "funding": [
  2042. {
  2043. "type": "opencollective",
  2044. "url": "https://opencollective.com/postcss/"
  2045. },
  2046. {
  2047. "type": "tidelift",
  2048. "url": "https://tidelift.com/funding/github/npm/postcss"
  2049. },
  2050. {
  2051. "type": "github",
  2052. "url": "https://github.com/sponsors/ai"
  2053. }
  2054. ],
  2055. "license": "MIT",
  2056. "dependencies": {
  2057. "nanoid": "^3.3.11",
  2058. "picocolors": "^1.1.1",
  2059. "source-map-js": "^1.2.1"
  2060. },
  2061. "engines": {
  2062. "node": "^10 || ^12 || >=14"
  2063. }
  2064. },
  2065. "node_modules/proxy-from-env": {
  2066. "version": "1.1.0",
  2067. "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
  2068. "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
  2069. "license": "MIT"
  2070. },
  2071. "node_modules/quansync": {
  2072. "version": "0.2.11",
  2073. "resolved": "https://registry.npmmirror.com/quansync/-/quansync-0.2.11.tgz",
  2074. "integrity": "sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==",
  2075. "funding": [
  2076. {
  2077. "type": "individual",
  2078. "url": "https://github.com/sponsors/antfu"
  2079. },
  2080. {
  2081. "type": "individual",
  2082. "url": "https://github.com/sponsors/sxzz"
  2083. }
  2084. ],
  2085. "license": "MIT"
  2086. },
  2087. "node_modules/readdirp": {
  2088. "version": "5.0.0",
  2089. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-5.0.0.tgz",
  2090. "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==",
  2091. "license": "MIT",
  2092. "engines": {
  2093. "node": ">= 20.19.0"
  2094. },
  2095. "funding": {
  2096. "type": "individual",
  2097. "url": "https://paulmillr.com/funding/"
  2098. }
  2099. },
  2100. "node_modules/rfdc": {
  2101. "version": "1.4.1",
  2102. "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz",
  2103. "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
  2104. "license": "MIT"
  2105. },
  2106. "node_modules/rollup": {
  2107. "version": "4.59.0",
  2108. "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.59.0.tgz",
  2109. "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==",
  2110. "dev": true,
  2111. "license": "MIT",
  2112. "dependencies": {
  2113. "@types/estree": "1.0.8"
  2114. },
  2115. "bin": {
  2116. "rollup": "dist/bin/rollup"
  2117. },
  2118. "engines": {
  2119. "node": ">=18.0.0",
  2120. "npm": ">=8.0.0"
  2121. },
  2122. "optionalDependencies": {
  2123. "@rollup/rollup-android-arm-eabi": "4.59.0",
  2124. "@rollup/rollup-android-arm64": "4.59.0",
  2125. "@rollup/rollup-darwin-arm64": "4.59.0",
  2126. "@rollup/rollup-darwin-x64": "4.59.0",
  2127. "@rollup/rollup-freebsd-arm64": "4.59.0",
  2128. "@rollup/rollup-freebsd-x64": "4.59.0",
  2129. "@rollup/rollup-linux-arm-gnueabihf": "4.59.0",
  2130. "@rollup/rollup-linux-arm-musleabihf": "4.59.0",
  2131. "@rollup/rollup-linux-arm64-gnu": "4.59.0",
  2132. "@rollup/rollup-linux-arm64-musl": "4.59.0",
  2133. "@rollup/rollup-linux-loong64-gnu": "4.59.0",
  2134. "@rollup/rollup-linux-loong64-musl": "4.59.0",
  2135. "@rollup/rollup-linux-ppc64-gnu": "4.59.0",
  2136. "@rollup/rollup-linux-ppc64-musl": "4.59.0",
  2137. "@rollup/rollup-linux-riscv64-gnu": "4.59.0",
  2138. "@rollup/rollup-linux-riscv64-musl": "4.59.0",
  2139. "@rollup/rollup-linux-s390x-gnu": "4.59.0",
  2140. "@rollup/rollup-linux-x64-gnu": "4.59.0",
  2141. "@rollup/rollup-linux-x64-musl": "4.59.0",
  2142. "@rollup/rollup-openbsd-x64": "4.59.0",
  2143. "@rollup/rollup-openharmony-arm64": "4.59.0",
  2144. "@rollup/rollup-win32-arm64-msvc": "4.59.0",
  2145. "@rollup/rollup-win32-ia32-msvc": "4.59.0",
  2146. "@rollup/rollup-win32-x64-gnu": "4.59.0",
  2147. "@rollup/rollup-win32-x64-msvc": "4.59.0",
  2148. "fsevents": "~2.3.2"
  2149. }
  2150. },
  2151. "node_modules/scule": {
  2152. "version": "1.3.0",
  2153. "resolved": "https://registry.npmmirror.com/scule/-/scule-1.3.0.tgz",
  2154. "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==",
  2155. "license": "MIT"
  2156. },
  2157. "node_modules/source-map-js": {
  2158. "version": "1.2.1",
  2159. "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
  2160. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2161. "license": "BSD-3-Clause",
  2162. "engines": {
  2163. "node": ">=0.10.0"
  2164. }
  2165. },
  2166. "node_modules/speakingurl": {
  2167. "version": "14.0.1",
  2168. "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz",
  2169. "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
  2170. "license": "BSD-3-Clause",
  2171. "engines": {
  2172. "node": ">=0.10.0"
  2173. }
  2174. },
  2175. "node_modules/superjson": {
  2176. "version": "2.2.6",
  2177. "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.6.tgz",
  2178. "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
  2179. "license": "MIT",
  2180. "dependencies": {
  2181. "copy-anything": "^4"
  2182. },
  2183. "engines": {
  2184. "node": ">=16"
  2185. }
  2186. },
  2187. "node_modules/tinyglobby": {
  2188. "version": "0.2.15",
  2189. "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.15.tgz",
  2190. "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
  2191. "license": "MIT",
  2192. "dependencies": {
  2193. "fdir": "^6.5.0",
  2194. "picomatch": "^4.0.3"
  2195. },
  2196. "engines": {
  2197. "node": ">=12.0.0"
  2198. },
  2199. "funding": {
  2200. "url": "https://github.com/sponsors/SuperchupuDev"
  2201. }
  2202. },
  2203. "node_modules/ufo": {
  2204. "version": "1.6.3",
  2205. "resolved": "https://registry.npmmirror.com/ufo/-/ufo-1.6.3.tgz",
  2206. "integrity": "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==",
  2207. "license": "MIT"
  2208. },
  2209. "node_modules/unplugin": {
  2210. "version": "3.0.0",
  2211. "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-3.0.0.tgz",
  2212. "integrity": "sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==",
  2213. "license": "MIT",
  2214. "dependencies": {
  2215. "@jridgewell/remapping": "^2.3.5",
  2216. "picomatch": "^4.0.3",
  2217. "webpack-virtual-modules": "^0.6.2"
  2218. },
  2219. "engines": {
  2220. "node": "^20.19.0 || >=22.12.0"
  2221. }
  2222. },
  2223. "node_modules/unplugin-utils": {
  2224. "version": "0.3.1",
  2225. "resolved": "https://registry.npmmirror.com/unplugin-utils/-/unplugin-utils-0.3.1.tgz",
  2226. "integrity": "sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==",
  2227. "license": "MIT",
  2228. "dependencies": {
  2229. "pathe": "^2.0.3",
  2230. "picomatch": "^4.0.3"
  2231. },
  2232. "engines": {
  2233. "node": ">=20.19.0"
  2234. },
  2235. "funding": {
  2236. "url": "https://github.com/sponsors/sxzz"
  2237. }
  2238. },
  2239. "node_modules/uuid": {
  2240. "version": "11.1.0",
  2241. "resolved": "https://registry.npmmirror.com/uuid/-/uuid-11.1.0.tgz",
  2242. "integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==",
  2243. "funding": [
  2244. "https://github.com/sponsors/broofa",
  2245. "https://github.com/sponsors/ctavan"
  2246. ],
  2247. "license": "MIT",
  2248. "peer": true,
  2249. "bin": {
  2250. "uuid": "dist/esm/bin/uuid"
  2251. }
  2252. },
  2253. "node_modules/vis-data": {
  2254. "version": "7.1.10",
  2255. "resolved": "https://registry.npmmirror.com/vis-data/-/vis-data-7.1.10.tgz",
  2256. "integrity": "sha512-23juM9tdCaHTX5vyIQ7XBzsfZU0Hny+gSTwniLrfFcmw9DOm7pi3+h9iEBsoZMp5rX6KNqWwc1MF0fkAmWVuoQ==",
  2257. "license": "(Apache-2.0 OR MIT)",
  2258. "funding": {
  2259. "type": "opencollective",
  2260. "url": "https://opencollective.com/visjs"
  2261. },
  2262. "peerDependencies": {
  2263. "uuid": "^3.4.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
  2264. "vis-util": "^5.0.1"
  2265. }
  2266. },
  2267. "node_modules/vis-network": {
  2268. "version": "9.1.13",
  2269. "resolved": "https://registry.npmmirror.com/vis-network/-/vis-network-9.1.13.tgz",
  2270. "integrity": "sha512-HLeHd5KZS92qzO1kC59qMh1/FWAZxMUEwUWBwDMoj6RKj/Ajkrgy/heEYo0Zc8SZNQ2J+u6omvK2+a28GX1QuQ==",
  2271. "license": "(Apache-2.0 OR MIT)",
  2272. "funding": {
  2273. "type": "opencollective",
  2274. "url": "https://opencollective.com/visjs"
  2275. },
  2276. "peerDependencies": {
  2277. "@egjs/hammerjs": "^2.0.0",
  2278. "component-emitter": "^1.3.0 || ^2.0.0",
  2279. "keycharm": "^0.2.0 || ^0.3.0 || ^0.4.0",
  2280. "uuid": "^3.4.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
  2281. "vis-data": "^6.3.0 || ^7.0.0",
  2282. "vis-util": "^5.0.1"
  2283. }
  2284. },
  2285. "node_modules/vis-util": {
  2286. "version": "5.0.7",
  2287. "resolved": "https://registry.npmmirror.com/vis-util/-/vis-util-5.0.7.tgz",
  2288. "integrity": "sha512-E3L03G3+trvc/X4LXvBfih3YIHcKS2WrP0XTdZefr6W6Qi/2nNCqZfe4JFfJU6DcQLm6Gxqj2Pfl+02859oL5A==",
  2289. "license": "(Apache-2.0 OR MIT)",
  2290. "peer": true,
  2291. "engines": {
  2292. "node": ">=8"
  2293. },
  2294. "funding": {
  2295. "type": "opencollective",
  2296. "url": "https://opencollective.com/visjs"
  2297. },
  2298. "peerDependencies": {
  2299. "@egjs/hammerjs": "^2.0.0",
  2300. "component-emitter": "^1.3.0 || ^2.0.0"
  2301. }
  2302. },
  2303. "node_modules/vite": {
  2304. "version": "7.3.1",
  2305. "resolved": "https://registry.npmmirror.com/vite/-/vite-7.3.1.tgz",
  2306. "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
  2307. "dev": true,
  2308. "license": "MIT",
  2309. "dependencies": {
  2310. "esbuild": "^0.27.0",
  2311. "fdir": "^6.5.0",
  2312. "picomatch": "^4.0.3",
  2313. "postcss": "^8.5.6",
  2314. "rollup": "^4.43.0",
  2315. "tinyglobby": "^0.2.15"
  2316. },
  2317. "bin": {
  2318. "vite": "bin/vite.js"
  2319. },
  2320. "engines": {
  2321. "node": "^20.19.0 || >=22.12.0"
  2322. },
  2323. "funding": {
  2324. "url": "https://github.com/vitejs/vite?sponsor=1"
  2325. },
  2326. "optionalDependencies": {
  2327. "fsevents": "~2.3.3"
  2328. },
  2329. "peerDependencies": {
  2330. "@types/node": "^20.19.0 || >=22.12.0",
  2331. "jiti": ">=1.21.0",
  2332. "less": "^4.0.0",
  2333. "lightningcss": "^1.21.0",
  2334. "sass": "^1.70.0",
  2335. "sass-embedded": "^1.70.0",
  2336. "stylus": ">=0.54.8",
  2337. "sugarss": "^5.0.0",
  2338. "terser": "^5.16.0",
  2339. "tsx": "^4.8.1",
  2340. "yaml": "^2.4.2"
  2341. },
  2342. "peerDependenciesMeta": {
  2343. "@types/node": {
  2344. "optional": true
  2345. },
  2346. "jiti": {
  2347. "optional": true
  2348. },
  2349. "less": {
  2350. "optional": true
  2351. },
  2352. "lightningcss": {
  2353. "optional": true
  2354. },
  2355. "sass": {
  2356. "optional": true
  2357. },
  2358. "sass-embedded": {
  2359. "optional": true
  2360. },
  2361. "stylus": {
  2362. "optional": true
  2363. },
  2364. "sugarss": {
  2365. "optional": true
  2366. },
  2367. "terser": {
  2368. "optional": true
  2369. },
  2370. "tsx": {
  2371. "optional": true
  2372. },
  2373. "yaml": {
  2374. "optional": true
  2375. }
  2376. }
  2377. },
  2378. "node_modules/vue": {
  2379. "version": "3.5.29",
  2380. "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.29.tgz",
  2381. "integrity": "sha512-BZqN4Ze6mDQVNAni0IHeMJ5mwr8VAJ3MQC9FmprRhcBYENw+wOAAjRj8jfmN6FLl0j96OXbR+CjWhmAmM+QGnA==",
  2382. "license": "MIT",
  2383. "dependencies": {
  2384. "@vue/compiler-dom": "3.5.29",
  2385. "@vue/compiler-sfc": "3.5.29",
  2386. "@vue/runtime-dom": "3.5.29",
  2387. "@vue/server-renderer": "3.5.29",
  2388. "@vue/shared": "3.5.29"
  2389. },
  2390. "peerDependencies": {
  2391. "typescript": "*"
  2392. },
  2393. "peerDependenciesMeta": {
  2394. "typescript": {
  2395. "optional": true
  2396. }
  2397. }
  2398. },
  2399. "node_modules/vue-router": {
  2400. "version": "5.0.3",
  2401. "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-5.0.3.tgz",
  2402. "integrity": "sha512-nG1c7aAFac7NYj8Hluo68WyWfc41xkEjaR0ViLHCa3oDvTQ/nIuLJlXJX1NUPw/DXzx/8+OKMng045HHQKQKWw==",
  2403. "license": "MIT",
  2404. "dependencies": {
  2405. "@babel/generator": "^7.28.6",
  2406. "@vue-macros/common": "^3.1.1",
  2407. "@vue/devtools-api": "^8.0.6",
  2408. "ast-walker-scope": "^0.8.3",
  2409. "chokidar": "^5.0.0",
  2410. "json5": "^2.2.3",
  2411. "local-pkg": "^1.1.2",
  2412. "magic-string": "^0.30.21",
  2413. "mlly": "^1.8.0",
  2414. "muggle-string": "^0.4.1",
  2415. "pathe": "^2.0.3",
  2416. "picomatch": "^4.0.3",
  2417. "scule": "^1.3.0",
  2418. "tinyglobby": "^0.2.15",
  2419. "unplugin": "^3.0.0",
  2420. "unplugin-utils": "^0.3.1",
  2421. "yaml": "^2.8.2"
  2422. },
  2423. "funding": {
  2424. "url": "https://github.com/sponsors/posva"
  2425. },
  2426. "peerDependencies": {
  2427. "@pinia/colada": ">=0.21.2",
  2428. "@vue/compiler-sfc": "^3.5.17",
  2429. "pinia": "^3.0.4",
  2430. "vue": "^3.5.0"
  2431. },
  2432. "peerDependenciesMeta": {
  2433. "@pinia/colada": {
  2434. "optional": true
  2435. },
  2436. "@vue/compiler-sfc": {
  2437. "optional": true
  2438. },
  2439. "pinia": {
  2440. "optional": true
  2441. }
  2442. }
  2443. },
  2444. "node_modules/webpack-virtual-modules": {
  2445. "version": "0.6.2",
  2446. "resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
  2447. "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
  2448. "license": "MIT"
  2449. },
  2450. "node_modules/yaml": {
  2451. "version": "2.8.2",
  2452. "resolved": "https://registry.npmmirror.com/yaml/-/yaml-2.8.2.tgz",
  2453. "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
  2454. "license": "ISC",
  2455. "bin": {
  2456. "yaml": "bin.mjs"
  2457. },
  2458. "engines": {
  2459. "node": ">= 14.6"
  2460. },
  2461. "funding": {
  2462. "url": "https://github.com/sponsors/eemeli"
  2463. }
  2464. }
  2465. }
  2466. }