package-lock.json 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301
  1. {
  2. "name": "linwit-ai-graph",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "linwit-ai-graph",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "@antv/g6": "5.1.0",
  12. "@arco-design/web-vue": "2.58.0",
  13. "@vue-office/pptx": "^1.0.1",
  14. "docx": "^9.7.1",
  15. "file-saver": "^2.0.5",
  16. "neo4j-driver": "^6.0.1",
  17. "pinia": "3.0.4",
  18. "vue": "3.5.32",
  19. "vue-demi": "^0.14.10",
  20. "vue-router": "4.6.4",
  21. "wa-sqlite": "^1.0.0"
  22. },
  23. "devDependencies": {
  24. "@vitejs/plugin-vue": "6.0.5",
  25. "vite": "8.0.4"
  26. }
  27. },
  28. "node_modules/@antv/algorithm": {
  29. "version": "0.1.26",
  30. "resolved": "https://registry.npmmirror.com/@antv/algorithm/-/algorithm-0.1.26.tgz",
  31. "integrity": "sha512-DVhcFSQ8YQnMNW34Mk8BSsfc61iC1sAnmcfYoXTAshYHuU50p/6b7x3QYaGctDNKWGvi1ub7mPcSY0bK+aN0qg==",
  32. "license": "MIT",
  33. "dependencies": {
  34. "@antv/util": "^2.0.13",
  35. "tslib": "^2.0.0"
  36. }
  37. },
  38. "node_modules/@antv/algorithm/node_modules/@antv/util": {
  39. "version": "2.0.17",
  40. "resolved": "https://registry.npmmirror.com/@antv/util/-/util-2.0.17.tgz",
  41. "integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
  42. "license": "ISC",
  43. "dependencies": {
  44. "csstype": "^3.0.8",
  45. "tslib": "^2.0.3"
  46. }
  47. },
  48. "node_modules/@antv/component": {
  49. "version": "2.1.11",
  50. "resolved": "https://registry.npmmirror.com/@antv/component/-/component-2.1.11.tgz",
  51. "integrity": "sha512-dTdz8VAd3rpjOaGEZTluz82mtzrP4XCtNlNQyrxY7VNRNcjtvpTLDn57bUL2lRu1T+iklKvgbE2llMriWkq9vQ==",
  52. "license": "MIT",
  53. "dependencies": {
  54. "@antv/g": "^6.1.11",
  55. "@antv/scale": "^0.4.16",
  56. "@antv/util": "^3.3.10",
  57. "svg-path-parser": "^1.1.0"
  58. }
  59. },
  60. "node_modules/@antv/event-emitter": {
  61. "version": "0.1.3",
  62. "resolved": "https://registry.npmmirror.com/@antv/event-emitter/-/event-emitter-0.1.3.tgz",
  63. "integrity": "sha512-4ddpsiHN9Pd4UIlWuKVK1C4IiZIdbwQvy9i7DUSI3xNJ89FPUFt8lxDYj8GzzfdllV0NkJTRxnG+FvLk0llidg==",
  64. "license": "MIT"
  65. },
  66. "node_modules/@antv/expr": {
  67. "version": "1.0.2",
  68. "resolved": "https://registry.npmmirror.com/@antv/expr/-/expr-1.0.2.tgz",
  69. "integrity": "sha512-vrfdmPHkTuiS5voVutKl2l06w1ihBh9A8SFdQPEE+2KMVpkymzGOF1eWpfkbGZ7tiFE15GodVdhhHomD/hdIwg==",
  70. "license": "MIT"
  71. },
  72. "node_modules/@antv/g": {
  73. "version": "6.3.1",
  74. "resolved": "https://registry.npmmirror.com/@antv/g/-/g-6.3.1.tgz",
  75. "integrity": "sha512-WYEKqy86LHB2PzTmrZXrIsIe+3Epeds2f68zceQ+BJtRoGki7Sy4IhlC8LrUMztgfT1t3d/0L745NWZwITroKA==",
  76. "license": "MIT",
  77. "dependencies": {
  78. "@antv/g-lite": "2.7.0",
  79. "@antv/util": "^3.3.5",
  80. "@babel/runtime": "^7.25.6",
  81. "gl-matrix": "^3.4.3",
  82. "html2canvas": "^1.4.1"
  83. }
  84. },
  85. "node_modules/@antv/g-canvas": {
  86. "version": "2.2.0",
  87. "resolved": "https://registry.npmmirror.com/@antv/g-canvas/-/g-canvas-2.2.0.tgz",
  88. "integrity": "sha512-h7zVBBo2aO64DuGKvq9sG+yTU3sCUb9DALCVm7nz8qGPs8hhLuFOkKPEzUDNfNYZGJUGzY8UDtJ3QRGRFcvEQg==",
  89. "license": "MIT",
  90. "dependencies": {
  91. "@antv/g-lite": "2.7.0",
  92. "@antv/g-math": "3.1.0",
  93. "@antv/util": "^3.3.5",
  94. "@babel/runtime": "^7.25.6",
  95. "gl-matrix": "^3.4.3",
  96. "tslib": "^2.5.3"
  97. }
  98. },
  99. "node_modules/@antv/g-lite": {
  100. "version": "2.7.0",
  101. "resolved": "https://registry.npmmirror.com/@antv/g-lite/-/g-lite-2.7.0.tgz",
  102. "integrity": "sha512-uSzgHYa5bwR5L2Au7/5tsOhFmXKZKLPBH90+Q9bP9teVs5VT4kOAi0isPSpDI8uhdDC2/VrfTWu5K9HhWI6FWw==",
  103. "license": "MIT",
  104. "dependencies": {
  105. "@antv/g-math": "3.1.0",
  106. "@antv/util": "^3.3.5",
  107. "@antv/vendor": "^1.0.3",
  108. "@babel/runtime": "^7.25.6",
  109. "eventemitter3": "^5.0.1",
  110. "gl-matrix": "^3.4.3",
  111. "tslib": "^2.5.3"
  112. }
  113. },
  114. "node_modules/@antv/g-math": {
  115. "version": "3.1.0",
  116. "resolved": "https://registry.npmmirror.com/@antv/g-math/-/g-math-3.1.0.tgz",
  117. "integrity": "sha512-DtN1Gj/yI0UiK18nSBsZX8RK0LszGwqfb+cBYWgE+ddyTm8dZnW4tPUhV7QXePsS6/A5hHC+JFpAAK7OEGo5ZQ==",
  118. "license": "MIT",
  119. "dependencies": {
  120. "@antv/util": "^3.3.5",
  121. "@babel/runtime": "^7.25.6",
  122. "gl-matrix": "^3.4.3",
  123. "tslib": "^2.5.3"
  124. }
  125. },
  126. "node_modules/@antv/g-plugin-dragndrop": {
  127. "version": "2.1.1",
  128. "resolved": "https://registry.npmmirror.com/@antv/g-plugin-dragndrop/-/g-plugin-dragndrop-2.1.1.tgz",
  129. "integrity": "sha512-+aesDUJVQDs6UJ2bOBbDlaGAPCfHmU0MbrMTlQlfpwNplWueqtgVAZ3L57oZ2ZGHRWUHiRwZGPjXMBM3O2LELw==",
  130. "license": "MIT",
  131. "dependencies": {
  132. "@antv/g-lite": "2.7.0",
  133. "@antv/util": "^3.3.5",
  134. "@babel/runtime": "^7.25.6",
  135. "tslib": "^2.5.3"
  136. }
  137. },
  138. "node_modules/@antv/g6": {
  139. "version": "5.1.0",
  140. "resolved": "https://registry.npmmirror.com/@antv/g6/-/g6-5.1.0.tgz",
  141. "integrity": "sha512-tvoBDKypL/zWEG99pgwGJLWr2CKA+6zVixYxaVzDOp0+TrPY2cxB1jevxFGPjbTOLBIMYt/vKCh1jnmDtfvtpg==",
  142. "license": "MIT",
  143. "dependencies": {
  144. "@antv/algorithm": "^0.1.26",
  145. "@antv/component": "^2.1.7",
  146. "@antv/event-emitter": "^0.1.3",
  147. "@antv/g": "^6.1.28",
  148. "@antv/g-canvas": "^2.0.48",
  149. "@antv/g-plugin-dragndrop": "^2.0.38",
  150. "@antv/graphlib": "^2.0.4",
  151. "@antv/hierarchy": "^0.7.1",
  152. "@antv/layout": "^2.0.0",
  153. "@antv/util": "^3.3.11",
  154. "bubblesets-js": "^2.3.4"
  155. }
  156. },
  157. "node_modules/@antv/graphlib": {
  158. "version": "2.0.4",
  159. "resolved": "https://registry.npmmirror.com/@antv/graphlib/-/graphlib-2.0.4.tgz",
  160. "integrity": "sha512-zc/5oQlsdk42Z0ib1mGklwzhJ5vczLFiPa1v7DgJkTbgJ2YxRh9xdarf86zI49sKVJmgbweRpJs7Nu5bIiwv4w==",
  161. "license": "MIT",
  162. "dependencies": {
  163. "@antv/event-emitter": "^0.1.3"
  164. }
  165. },
  166. "node_modules/@antv/hierarchy": {
  167. "version": "0.7.1",
  168. "resolved": "https://registry.npmmirror.com/@antv/hierarchy/-/hierarchy-0.7.1.tgz",
  169. "integrity": "sha512-7r22r+HxfcRZp79ZjGmsn97zgC1Iajrv0Mm9DIgx3lPfk+Kme2MG/+EKdZj1iEBsN0rJRzjWVPGL5YrBdVHchw==",
  170. "license": "MIT"
  171. },
  172. "node_modules/@antv/layout": {
  173. "version": "2.0.0",
  174. "resolved": "https://registry.npmmirror.com/@antv/layout/-/layout-2.0.0.tgz",
  175. "integrity": "sha512-aCZ3UdNc40SfT7meFV7QTADY2HCnc0DShVw56CJNTI6oExUIVU736grPuL5Dhb8/JrVaU4Y83QPN/P7KafBzlw==",
  176. "license": "MIT",
  177. "dependencies": {
  178. "@antv/event-emitter": "^0.1.3",
  179. "@antv/expr": "^1.0.2",
  180. "@antv/graphlib": "^2.0.0",
  181. "@antv/util": "^3.3.2",
  182. "comlink": "^4.4.1",
  183. "d3-force": "^3.0.0",
  184. "d3-force-3d": "^3.0.5",
  185. "d3-octree": "^1.0.2",
  186. "d3-quadtree": "^3.0.1",
  187. "dagre": "^0.8.5",
  188. "ml-matrix": "^6.10.4",
  189. "tslib": "^2.8.1"
  190. }
  191. },
  192. "node_modules/@antv/scale": {
  193. "version": "0.4.16",
  194. "resolved": "https://registry.npmmirror.com/@antv/scale/-/scale-0.4.16.tgz",
  195. "integrity": "sha512-5wg/zB5kXHxpTV5OYwJD3ja6R8yTiqIOkjOhmpEJiowkzRlbEC/BOyMvNUq5fqFIHnMCE9woO7+c3zxEQCKPjw==",
  196. "license": "MIT",
  197. "dependencies": {
  198. "@antv/util": "^3.3.7",
  199. "color-string": "^1.5.5",
  200. "fecha": "^4.2.1"
  201. }
  202. },
  203. "node_modules/@antv/util": {
  204. "version": "3.3.11",
  205. "resolved": "https://registry.npmmirror.com/@antv/util/-/util-3.3.11.tgz",
  206. "integrity": "sha512-FII08DFM4ABh2q5rPYdr0hMtKXRgeZazvXaFYCs7J7uTcWDHUhczab2qOCJLNDugoj8jFag1djb7wS9ehaRYBg==",
  207. "license": "MIT",
  208. "dependencies": {
  209. "fast-deep-equal": "^3.1.3",
  210. "gl-matrix": "^3.3.0",
  211. "tslib": "^2.3.1"
  212. }
  213. },
  214. "node_modules/@antv/vendor": {
  215. "version": "1.0.11",
  216. "resolved": "https://registry.npmmirror.com/@antv/vendor/-/vendor-1.0.11.tgz",
  217. "integrity": "sha512-LmhPEQ+aapk3barntaiIxJ5VHno/Tyab2JnfdcPzp5xONh/8VSfed4bo/9xKo5HcUAEydko38vYLfj6lJliLiw==",
  218. "license": "MIT AND ISC",
  219. "dependencies": {
  220. "@types/d3-array": "^3.2.1",
  221. "@types/d3-color": "^3.1.3",
  222. "@types/d3-dispatch": "^3.0.6",
  223. "@types/d3-dsv": "^3.0.7",
  224. "@types/d3-ease": "^3.0.2",
  225. "@types/d3-fetch": "^3.0.7",
  226. "@types/d3-force": "^3.0.10",
  227. "@types/d3-format": "^3.0.4",
  228. "@types/d3-geo": "^3.1.0",
  229. "@types/d3-hierarchy": "^3.1.7",
  230. "@types/d3-interpolate": "^3.0.4",
  231. "@types/d3-path": "^3.1.0",
  232. "@types/d3-quadtree": "^3.0.6",
  233. "@types/d3-random": "^3.0.3",
  234. "@types/d3-scale": "^4.0.9",
  235. "@types/d3-scale-chromatic": "^3.1.0",
  236. "@types/d3-shape": "^3.1.7",
  237. "@types/d3-time": "^3.0.4",
  238. "@types/d3-timer": "^3.0.2",
  239. "d3-array": "^3.2.4",
  240. "d3-color": "^3.1.0",
  241. "d3-dispatch": "^3.0.1",
  242. "d3-dsv": "^3.0.1",
  243. "d3-ease": "^3.0.1",
  244. "d3-fetch": "^3.0.1",
  245. "d3-force": "^3.0.0",
  246. "d3-force-3d": "^3.0.5",
  247. "d3-format": "^3.1.0",
  248. "d3-geo": "^3.1.1",
  249. "d3-geo-projection": "^4.0.0",
  250. "d3-hierarchy": "^3.1.2",
  251. "d3-interpolate": "^3.0.1",
  252. "d3-path": "^3.1.0",
  253. "d3-quadtree": "^3.0.1",
  254. "d3-random": "^3.0.1",
  255. "d3-regression": "^1.3.10",
  256. "d3-scale": "^4.0.2",
  257. "d3-scale-chromatic": "^3.1.0",
  258. "d3-shape": "^3.2.0",
  259. "d3-time": "^3.1.0",
  260. "d3-timer": "^3.0.1"
  261. }
  262. },
  263. "node_modules/@arco-design/color": {
  264. "version": "0.4.0",
  265. "license": "MIT",
  266. "dependencies": {
  267. "color": "^3.1.3"
  268. }
  269. },
  270. "node_modules/@arco-design/web-vue": {
  271. "version": "2.58.0",
  272. "license": "MIT",
  273. "dependencies": {
  274. "@arco-design/color": "^0.4.0",
  275. "b-tween": "^0.3.3",
  276. "b-validate": "^1.5.3",
  277. "compute-scroll-into-view": "^1.0.20",
  278. "dayjs": "^1.11.13",
  279. "number-precision": "^1.6.0",
  280. "resize-observer-polyfill": "^1.5.1",
  281. "scroll-into-view-if-needed": "^2.2.31",
  282. "vue": "^3.1.0"
  283. },
  284. "peerDependencies": {
  285. "vue": ">=3.1.0"
  286. }
  287. },
  288. "node_modules/@babel/helper-string-parser": {
  289. "version": "7.27.1",
  290. "license": "MIT",
  291. "engines": {
  292. "node": ">=6.9.0"
  293. }
  294. },
  295. "node_modules/@babel/helper-validator-identifier": {
  296. "version": "7.28.5",
  297. "license": "MIT",
  298. "engines": {
  299. "node": ">=6.9.0"
  300. }
  301. },
  302. "node_modules/@babel/parser": {
  303. "version": "7.29.2",
  304. "license": "MIT",
  305. "dependencies": {
  306. "@babel/types": "^7.29.0"
  307. },
  308. "bin": {
  309. "parser": "bin/babel-parser.js"
  310. },
  311. "engines": {
  312. "node": ">=6.0.0"
  313. }
  314. },
  315. "node_modules/@babel/runtime": {
  316. "version": "7.29.2",
  317. "resolved": "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.29.2.tgz",
  318. "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
  319. "license": "MIT",
  320. "engines": {
  321. "node": ">=6.9.0"
  322. }
  323. },
  324. "node_modules/@babel/types": {
  325. "version": "7.29.0",
  326. "license": "MIT",
  327. "dependencies": {
  328. "@babel/helper-string-parser": "^7.27.1",
  329. "@babel/helper-validator-identifier": "^7.28.5"
  330. },
  331. "engines": {
  332. "node": ">=6.9.0"
  333. }
  334. },
  335. "node_modules/@jridgewell/sourcemap-codec": {
  336. "version": "1.5.5",
  337. "license": "MIT"
  338. },
  339. "node_modules/@napi-rs/wasm-runtime": {
  340. "version": "1.1.4",
  341. "resolved": "https://registry.npmmirror.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
  342. "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
  343. "dev": true,
  344. "license": "MIT",
  345. "optional": true,
  346. "dependencies": {
  347. "@tybys/wasm-util": "^0.10.1"
  348. },
  349. "funding": {
  350. "type": "github",
  351. "url": "https://github.com/sponsors/Brooooooklyn"
  352. },
  353. "peerDependencies": {
  354. "@emnapi/core": "^1.7.1",
  355. "@emnapi/runtime": "^1.7.1"
  356. }
  357. },
  358. "node_modules/@oxc-project/types": {
  359. "version": "0.122.0",
  360. "resolved": "https://registry.npmmirror.com/@oxc-project/types/-/types-0.122.0.tgz",
  361. "integrity": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==",
  362. "dev": true,
  363. "license": "MIT",
  364. "funding": {
  365. "url": "https://github.com/sponsors/Boshen"
  366. }
  367. },
  368. "node_modules/@rolldown/binding-android-arm64": {
  369. "version": "1.0.0-rc.12",
  370. "resolved": "https://registry.npmmirror.com/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.12.tgz",
  371. "integrity": "sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==",
  372. "cpu": [
  373. "arm64"
  374. ],
  375. "dev": true,
  376. "license": "MIT",
  377. "optional": true,
  378. "os": [
  379. "android"
  380. ],
  381. "engines": {
  382. "node": "^20.19.0 || >=22.12.0"
  383. }
  384. },
  385. "node_modules/@rolldown/binding-darwin-arm64": {
  386. "version": "1.0.0-rc.12",
  387. "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.12.tgz",
  388. "integrity": "sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==",
  389. "cpu": [
  390. "arm64"
  391. ],
  392. "dev": true,
  393. "license": "MIT",
  394. "optional": true,
  395. "os": [
  396. "darwin"
  397. ],
  398. "engines": {
  399. "node": "^20.19.0 || >=22.12.0"
  400. }
  401. },
  402. "node_modules/@rolldown/binding-darwin-x64": {
  403. "version": "1.0.0-rc.12",
  404. "resolved": "https://registry.npmmirror.com/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.12.tgz",
  405. "integrity": "sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==",
  406. "cpu": [
  407. "x64"
  408. ],
  409. "dev": true,
  410. "license": "MIT",
  411. "optional": true,
  412. "os": [
  413. "darwin"
  414. ],
  415. "engines": {
  416. "node": "^20.19.0 || >=22.12.0"
  417. }
  418. },
  419. "node_modules/@rolldown/binding-freebsd-x64": {
  420. "version": "1.0.0-rc.12",
  421. "resolved": "https://registry.npmmirror.com/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.12.tgz",
  422. "integrity": "sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==",
  423. "cpu": [
  424. "x64"
  425. ],
  426. "dev": true,
  427. "license": "MIT",
  428. "optional": true,
  429. "os": [
  430. "freebsd"
  431. ],
  432. "engines": {
  433. "node": "^20.19.0 || >=22.12.0"
  434. }
  435. },
  436. "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
  437. "version": "1.0.0-rc.12",
  438. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.12.tgz",
  439. "integrity": "sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==",
  440. "cpu": [
  441. "arm"
  442. ],
  443. "dev": true,
  444. "license": "MIT",
  445. "optional": true,
  446. "os": [
  447. "linux"
  448. ],
  449. "engines": {
  450. "node": "^20.19.0 || >=22.12.0"
  451. }
  452. },
  453. "node_modules/@rolldown/binding-linux-arm64-gnu": {
  454. "version": "1.0.0-rc.12",
  455. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.12.tgz",
  456. "integrity": "sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==",
  457. "cpu": [
  458. "arm64"
  459. ],
  460. "dev": true,
  461. "license": "MIT",
  462. "optional": true,
  463. "os": [
  464. "linux"
  465. ],
  466. "engines": {
  467. "node": "^20.19.0 || >=22.12.0"
  468. }
  469. },
  470. "node_modules/@rolldown/binding-linux-arm64-musl": {
  471. "version": "1.0.0-rc.12",
  472. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.12.tgz",
  473. "integrity": "sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==",
  474. "cpu": [
  475. "arm64"
  476. ],
  477. "dev": true,
  478. "license": "MIT",
  479. "optional": true,
  480. "os": [
  481. "linux"
  482. ],
  483. "engines": {
  484. "node": "^20.19.0 || >=22.12.0"
  485. }
  486. },
  487. "node_modules/@rolldown/binding-linux-ppc64-gnu": {
  488. "version": "1.0.0-rc.12",
  489. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.12.tgz",
  490. "integrity": "sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==",
  491. "cpu": [
  492. "ppc64"
  493. ],
  494. "dev": true,
  495. "license": "MIT",
  496. "optional": true,
  497. "os": [
  498. "linux"
  499. ],
  500. "engines": {
  501. "node": "^20.19.0 || >=22.12.0"
  502. }
  503. },
  504. "node_modules/@rolldown/binding-linux-s390x-gnu": {
  505. "version": "1.0.0-rc.12",
  506. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.12.tgz",
  507. "integrity": "sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==",
  508. "cpu": [
  509. "s390x"
  510. ],
  511. "dev": true,
  512. "license": "MIT",
  513. "optional": true,
  514. "os": [
  515. "linux"
  516. ],
  517. "engines": {
  518. "node": "^20.19.0 || >=22.12.0"
  519. }
  520. },
  521. "node_modules/@rolldown/binding-linux-x64-gnu": {
  522. "version": "1.0.0-rc.12",
  523. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.12.tgz",
  524. "integrity": "sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==",
  525. "cpu": [
  526. "x64"
  527. ],
  528. "dev": true,
  529. "license": "MIT",
  530. "optional": true,
  531. "os": [
  532. "linux"
  533. ],
  534. "engines": {
  535. "node": "^20.19.0 || >=22.12.0"
  536. }
  537. },
  538. "node_modules/@rolldown/binding-linux-x64-musl": {
  539. "version": "1.0.0-rc.12",
  540. "resolved": "https://registry.npmmirror.com/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.12.tgz",
  541. "integrity": "sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==",
  542. "cpu": [
  543. "x64"
  544. ],
  545. "dev": true,
  546. "license": "MIT",
  547. "optional": true,
  548. "os": [
  549. "linux"
  550. ],
  551. "engines": {
  552. "node": "^20.19.0 || >=22.12.0"
  553. }
  554. },
  555. "node_modules/@rolldown/binding-openharmony-arm64": {
  556. "version": "1.0.0-rc.12",
  557. "resolved": "https://registry.npmmirror.com/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.12.tgz",
  558. "integrity": "sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==",
  559. "cpu": [
  560. "arm64"
  561. ],
  562. "dev": true,
  563. "license": "MIT",
  564. "optional": true,
  565. "os": [
  566. "openharmony"
  567. ],
  568. "engines": {
  569. "node": "^20.19.0 || >=22.12.0"
  570. }
  571. },
  572. "node_modules/@rolldown/binding-wasm32-wasi": {
  573. "version": "1.0.0-rc.12",
  574. "resolved": "https://registry.npmmirror.com/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.12.tgz",
  575. "integrity": "sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==",
  576. "cpu": [
  577. "wasm32"
  578. ],
  579. "dev": true,
  580. "license": "MIT",
  581. "optional": true,
  582. "dependencies": {
  583. "@napi-rs/wasm-runtime": "^1.1.1"
  584. },
  585. "engines": {
  586. "node": ">=14.0.0"
  587. }
  588. },
  589. "node_modules/@rolldown/binding-win32-arm64-msvc": {
  590. "version": "1.0.0-rc.12",
  591. "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.12.tgz",
  592. "integrity": "sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==",
  593. "cpu": [
  594. "arm64"
  595. ],
  596. "dev": true,
  597. "license": "MIT",
  598. "optional": true,
  599. "os": [
  600. "win32"
  601. ],
  602. "engines": {
  603. "node": "^20.19.0 || >=22.12.0"
  604. }
  605. },
  606. "node_modules/@rolldown/binding-win32-x64-msvc": {
  607. "version": "1.0.0-rc.12",
  608. "resolved": "https://registry.npmmirror.com/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.12.tgz",
  609. "integrity": "sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==",
  610. "cpu": [
  611. "x64"
  612. ],
  613. "dev": true,
  614. "license": "MIT",
  615. "optional": true,
  616. "os": [
  617. "win32"
  618. ],
  619. "engines": {
  620. "node": "^20.19.0 || >=22.12.0"
  621. }
  622. },
  623. "node_modules/@rolldown/pluginutils": {
  624. "version": "1.0.0-rc.2",
  625. "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz",
  626. "integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==",
  627. "dev": true,
  628. "license": "MIT"
  629. },
  630. "node_modules/@tybys/wasm-util": {
  631. "version": "0.10.1",
  632. "resolved": "https://registry.npmmirror.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
  633. "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
  634. "dev": true,
  635. "license": "MIT",
  636. "optional": true,
  637. "dependencies": {
  638. "tslib": "^2.4.0"
  639. }
  640. },
  641. "node_modules/@types/d3-array": {
  642. "version": "3.2.2",
  643. "resolved": "https://registry.npmmirror.com/@types/d3-array/-/d3-array-3.2.2.tgz",
  644. "integrity": "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==",
  645. "license": "MIT"
  646. },
  647. "node_modules/@types/d3-color": {
  648. "version": "3.1.3",
  649. "resolved": "https://registry.npmmirror.com/@types/d3-color/-/d3-color-3.1.3.tgz",
  650. "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
  651. "license": "MIT"
  652. },
  653. "node_modules/@types/d3-dispatch": {
  654. "version": "3.0.7",
  655. "resolved": "https://registry.npmmirror.com/@types/d3-dispatch/-/d3-dispatch-3.0.7.tgz",
  656. "integrity": "sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA==",
  657. "license": "MIT"
  658. },
  659. "node_modules/@types/d3-dsv": {
  660. "version": "3.0.7",
  661. "resolved": "https://registry.npmmirror.com/@types/d3-dsv/-/d3-dsv-3.0.7.tgz",
  662. "integrity": "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==",
  663. "license": "MIT"
  664. },
  665. "node_modules/@types/d3-ease": {
  666. "version": "3.0.2",
  667. "resolved": "https://registry.npmmirror.com/@types/d3-ease/-/d3-ease-3.0.2.tgz",
  668. "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==",
  669. "license": "MIT"
  670. },
  671. "node_modules/@types/d3-fetch": {
  672. "version": "3.0.7",
  673. "resolved": "https://registry.npmmirror.com/@types/d3-fetch/-/d3-fetch-3.0.7.tgz",
  674. "integrity": "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==",
  675. "license": "MIT",
  676. "dependencies": {
  677. "@types/d3-dsv": "*"
  678. }
  679. },
  680. "node_modules/@types/d3-force": {
  681. "version": "3.0.10",
  682. "resolved": "https://registry.npmmirror.com/@types/d3-force/-/d3-force-3.0.10.tgz",
  683. "integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==",
  684. "license": "MIT"
  685. },
  686. "node_modules/@types/d3-format": {
  687. "version": "3.0.4",
  688. "resolved": "https://registry.npmmirror.com/@types/d3-format/-/d3-format-3.0.4.tgz",
  689. "integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==",
  690. "license": "MIT"
  691. },
  692. "node_modules/@types/d3-geo": {
  693. "version": "3.1.0",
  694. "resolved": "https://registry.npmmirror.com/@types/d3-geo/-/d3-geo-3.1.0.tgz",
  695. "integrity": "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==",
  696. "license": "MIT",
  697. "dependencies": {
  698. "@types/geojson": "*"
  699. }
  700. },
  701. "node_modules/@types/d3-hierarchy": {
  702. "version": "3.1.7",
  703. "resolved": "https://registry.npmmirror.com/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz",
  704. "integrity": "sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==",
  705. "license": "MIT"
  706. },
  707. "node_modules/@types/d3-interpolate": {
  708. "version": "3.0.4",
  709. "resolved": "https://registry.npmmirror.com/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
  710. "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
  711. "license": "MIT",
  712. "dependencies": {
  713. "@types/d3-color": "*"
  714. }
  715. },
  716. "node_modules/@types/d3-path": {
  717. "version": "3.1.1",
  718. "resolved": "https://registry.npmmirror.com/@types/d3-path/-/d3-path-3.1.1.tgz",
  719. "integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==",
  720. "license": "MIT"
  721. },
  722. "node_modules/@types/d3-quadtree": {
  723. "version": "3.0.6",
  724. "resolved": "https://registry.npmmirror.com/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz",
  725. "integrity": "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==",
  726. "license": "MIT"
  727. },
  728. "node_modules/@types/d3-random": {
  729. "version": "3.0.3",
  730. "resolved": "https://registry.npmmirror.com/@types/d3-random/-/d3-random-3.0.3.tgz",
  731. "integrity": "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==",
  732. "license": "MIT"
  733. },
  734. "node_modules/@types/d3-scale": {
  735. "version": "4.0.9",
  736. "resolved": "https://registry.npmmirror.com/@types/d3-scale/-/d3-scale-4.0.9.tgz",
  737. "integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==",
  738. "license": "MIT",
  739. "dependencies": {
  740. "@types/d3-time": "*"
  741. }
  742. },
  743. "node_modules/@types/d3-scale-chromatic": {
  744. "version": "3.1.0",
  745. "resolved": "https://registry.npmmirror.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz",
  746. "integrity": "sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==",
  747. "license": "MIT"
  748. },
  749. "node_modules/@types/d3-shape": {
  750. "version": "3.1.8",
  751. "resolved": "https://registry.npmmirror.com/@types/d3-shape/-/d3-shape-3.1.8.tgz",
  752. "integrity": "sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==",
  753. "license": "MIT",
  754. "dependencies": {
  755. "@types/d3-path": "*"
  756. }
  757. },
  758. "node_modules/@types/d3-time": {
  759. "version": "3.0.4",
  760. "resolved": "https://registry.npmmirror.com/@types/d3-time/-/d3-time-3.0.4.tgz",
  761. "integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==",
  762. "license": "MIT"
  763. },
  764. "node_modules/@types/d3-timer": {
  765. "version": "3.0.2",
  766. "resolved": "https://registry.npmmirror.com/@types/d3-timer/-/d3-timer-3.0.2.tgz",
  767. "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==",
  768. "license": "MIT"
  769. },
  770. "node_modules/@types/geojson": {
  771. "version": "7946.0.16",
  772. "resolved": "https://registry.npmmirror.com/@types/geojson/-/geojson-7946.0.16.tgz",
  773. "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==",
  774. "license": "MIT"
  775. },
  776. "node_modules/@types/node": {
  777. "version": "25.9.4",
  778. "resolved": "https://registry.npmmirror.com/@types/node/-/node-25.9.4.tgz",
  779. "integrity": "sha512-dszCsrKb5U7ZsVZBWiHFklTloVl0mSEnWH/iZXfZUlI4rzCUnsvGmgqfuVRHL54ugE7/wRuxEIXRa2iMZ+BG6g==",
  780. "license": "MIT",
  781. "dependencies": {
  782. "undici-types": ">=7.24.0 <7.24.7"
  783. }
  784. },
  785. "node_modules/@vitejs/plugin-vue": {
  786. "version": "6.0.5",
  787. "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.5.tgz",
  788. "integrity": "sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==",
  789. "dev": true,
  790. "license": "MIT",
  791. "dependencies": {
  792. "@rolldown/pluginutils": "1.0.0-rc.2"
  793. },
  794. "engines": {
  795. "node": "^20.19.0 || >=22.12.0"
  796. },
  797. "peerDependencies": {
  798. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
  799. "vue": "^3.2.25"
  800. }
  801. },
  802. "node_modules/@vue-office/pptx": {
  803. "version": "1.0.1",
  804. "resolved": "https://registry.npmmirror.com/@vue-office/pptx/-/pptx-1.0.1.tgz",
  805. "integrity": "sha512-+V7Kctzl6f6+Yk4NaD/wQGRIkqLWcowe0jEhPexWQb8Oilbzt1OyhWRWcMsxNDTdrgm6aMLP+0/tmw27cxddMg==",
  806. "hasInstallScript": true,
  807. "license": "MIT",
  808. "peerDependencies": {
  809. "@vue/composition-api": "^1.7.1",
  810. "vue": "^2.0.0 || >=3.0.0",
  811. "vue-demi": "^0.14.6"
  812. },
  813. "peerDependenciesMeta": {
  814. "@vue/composition-api": {
  815. "optional": true
  816. }
  817. }
  818. },
  819. "node_modules/@vue/compiler-core": {
  820. "version": "3.5.32",
  821. "license": "MIT",
  822. "dependencies": {
  823. "@babel/parser": "^7.29.2",
  824. "@vue/shared": "3.5.32",
  825. "entities": "^7.0.1",
  826. "estree-walker": "^2.0.2",
  827. "source-map-js": "^1.2.1"
  828. }
  829. },
  830. "node_modules/@vue/compiler-dom": {
  831. "version": "3.5.32",
  832. "license": "MIT",
  833. "dependencies": {
  834. "@vue/compiler-core": "3.5.32",
  835. "@vue/shared": "3.5.32"
  836. }
  837. },
  838. "node_modules/@vue/compiler-sfc": {
  839. "version": "3.5.32",
  840. "license": "MIT",
  841. "dependencies": {
  842. "@babel/parser": "^7.29.2",
  843. "@vue/compiler-core": "3.5.32",
  844. "@vue/compiler-dom": "3.5.32",
  845. "@vue/compiler-ssr": "3.5.32",
  846. "@vue/shared": "3.5.32",
  847. "estree-walker": "^2.0.2",
  848. "magic-string": "^0.30.21",
  849. "postcss": "^8.5.8",
  850. "source-map-js": "^1.2.1"
  851. }
  852. },
  853. "node_modules/@vue/compiler-ssr": {
  854. "version": "3.5.32",
  855. "license": "MIT",
  856. "dependencies": {
  857. "@vue/compiler-dom": "3.5.32",
  858. "@vue/shared": "3.5.32"
  859. }
  860. },
  861. "node_modules/@vue/devtools-api": {
  862. "version": "6.6.4",
  863. "license": "MIT"
  864. },
  865. "node_modules/@vue/devtools-kit": {
  866. "version": "7.7.9",
  867. "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz",
  868. "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==",
  869. "license": "MIT",
  870. "dependencies": {
  871. "@vue/devtools-shared": "^7.7.9",
  872. "birpc": "^2.3.0",
  873. "hookable": "^5.5.3",
  874. "mitt": "^3.0.1",
  875. "perfect-debounce": "^1.0.0",
  876. "speakingurl": "^14.0.1",
  877. "superjson": "^2.2.2"
  878. }
  879. },
  880. "node_modules/@vue/devtools-shared": {
  881. "version": "7.7.9",
  882. "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz",
  883. "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==",
  884. "license": "MIT",
  885. "dependencies": {
  886. "rfdc": "^1.4.1"
  887. }
  888. },
  889. "node_modules/@vue/reactivity": {
  890. "version": "3.5.32",
  891. "license": "MIT",
  892. "dependencies": {
  893. "@vue/shared": "3.5.32"
  894. }
  895. },
  896. "node_modules/@vue/runtime-core": {
  897. "version": "3.5.32",
  898. "license": "MIT",
  899. "dependencies": {
  900. "@vue/reactivity": "3.5.32",
  901. "@vue/shared": "3.5.32"
  902. }
  903. },
  904. "node_modules/@vue/runtime-dom": {
  905. "version": "3.5.32",
  906. "license": "MIT",
  907. "dependencies": {
  908. "@vue/reactivity": "3.5.32",
  909. "@vue/runtime-core": "3.5.32",
  910. "@vue/shared": "3.5.32",
  911. "csstype": "^3.2.3"
  912. }
  913. },
  914. "node_modules/@vue/server-renderer": {
  915. "version": "3.5.32",
  916. "license": "MIT",
  917. "dependencies": {
  918. "@vue/compiler-ssr": "3.5.32",
  919. "@vue/shared": "3.5.32"
  920. },
  921. "peerDependencies": {
  922. "vue": "3.5.32"
  923. }
  924. },
  925. "node_modules/@vue/shared": {
  926. "version": "3.5.32",
  927. "license": "MIT"
  928. },
  929. "node_modules/b-tween": {
  930. "version": "0.3.3",
  931. "license": "MIT"
  932. },
  933. "node_modules/b-validate": {
  934. "version": "1.5.3",
  935. "license": "MIT"
  936. },
  937. "node_modules/base64-arraybuffer": {
  938. "version": "1.0.2",
  939. "resolved": "https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz",
  940. "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==",
  941. "license": "MIT",
  942. "engines": {
  943. "node": ">= 0.6.0"
  944. }
  945. },
  946. "node_modules/base64-js": {
  947. "version": "1.5.1",
  948. "resolved": "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz",
  949. "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
  950. "funding": [
  951. {
  952. "type": "github",
  953. "url": "https://github.com/sponsors/feross"
  954. },
  955. {
  956. "type": "patreon",
  957. "url": "https://www.patreon.com/feross"
  958. },
  959. {
  960. "type": "consulting",
  961. "url": "https://feross.org/support"
  962. }
  963. ],
  964. "license": "MIT"
  965. },
  966. "node_modules/birpc": {
  967. "version": "2.9.0",
  968. "resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.9.0.tgz",
  969. "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
  970. "license": "MIT",
  971. "funding": {
  972. "url": "https://github.com/sponsors/antfu"
  973. }
  974. },
  975. "node_modules/bubblesets-js": {
  976. "version": "2.3.4",
  977. "resolved": "https://registry.npmmirror.com/bubblesets-js/-/bubblesets-js-2.3.4.tgz",
  978. "integrity": "sha512-DyMjHmpkS2+xcFNtyN00apJYL3ESdp9fTrkDr5+9Qg/GPqFmcWgGsK1akZnttE1XFxJ/VMy4DNNGMGYtmFp1Sg==",
  979. "license": "MIT"
  980. },
  981. "node_modules/buffer": {
  982. "version": "6.0.3",
  983. "resolved": "https://registry.npmmirror.com/buffer/-/buffer-6.0.3.tgz",
  984. "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
  985. "funding": [
  986. {
  987. "type": "github",
  988. "url": "https://github.com/sponsors/feross"
  989. },
  990. {
  991. "type": "patreon",
  992. "url": "https://www.patreon.com/feross"
  993. },
  994. {
  995. "type": "consulting",
  996. "url": "https://feross.org/support"
  997. }
  998. ],
  999. "license": "MIT",
  1000. "dependencies": {
  1001. "base64-js": "^1.3.1",
  1002. "ieee754": "^1.2.1"
  1003. }
  1004. },
  1005. "node_modules/color": {
  1006. "version": "3.2.1",
  1007. "license": "MIT",
  1008. "dependencies": {
  1009. "color-convert": "^1.9.3",
  1010. "color-string": "^1.6.0"
  1011. }
  1012. },
  1013. "node_modules/color-convert": {
  1014. "version": "1.9.3",
  1015. "license": "MIT",
  1016. "dependencies": {
  1017. "color-name": "1.1.3"
  1018. }
  1019. },
  1020. "node_modules/color-name": {
  1021. "version": "1.1.3",
  1022. "license": "MIT"
  1023. },
  1024. "node_modules/color-string": {
  1025. "version": "1.9.1",
  1026. "license": "MIT",
  1027. "dependencies": {
  1028. "color-name": "^1.0.0",
  1029. "simple-swizzle": "^0.2.2"
  1030. }
  1031. },
  1032. "node_modules/comlink": {
  1033. "version": "4.4.2",
  1034. "resolved": "https://registry.npmmirror.com/comlink/-/comlink-4.4.2.tgz",
  1035. "integrity": "sha512-OxGdvBmJuNKSCMO4NTl1L47VRp6xn2wG4F/2hYzB6tiCb709otOxtEYCSvK80PtjODfXXZu8ds+Nw5kVCjqd2g==",
  1036. "license": "Apache-2.0"
  1037. },
  1038. "node_modules/commander": {
  1039. "version": "7.2.0",
  1040. "resolved": "https://registry.npmmirror.com/commander/-/commander-7.2.0.tgz",
  1041. "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
  1042. "license": "MIT",
  1043. "engines": {
  1044. "node": ">= 10"
  1045. }
  1046. },
  1047. "node_modules/compute-scroll-into-view": {
  1048. "version": "1.0.20",
  1049. "license": "MIT"
  1050. },
  1051. "node_modules/copy-anything": {
  1052. "version": "4.0.5",
  1053. "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-4.0.5.tgz",
  1054. "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
  1055. "license": "MIT",
  1056. "dependencies": {
  1057. "is-what": "^5.2.0"
  1058. },
  1059. "engines": {
  1060. "node": ">=18"
  1061. },
  1062. "funding": {
  1063. "url": "https://github.com/sponsors/mesqueeb"
  1064. }
  1065. },
  1066. "node_modules/core-util-is": {
  1067. "version": "1.0.3",
  1068. "resolved": "https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz",
  1069. "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
  1070. "license": "MIT"
  1071. },
  1072. "node_modules/css-line-break": {
  1073. "version": "2.1.0",
  1074. "resolved": "https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz",
  1075. "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==",
  1076. "license": "MIT",
  1077. "dependencies": {
  1078. "utrie": "^1.0.2"
  1079. }
  1080. },
  1081. "node_modules/csstype": {
  1082. "version": "3.2.3",
  1083. "license": "MIT"
  1084. },
  1085. "node_modules/d3-array": {
  1086. "version": "3.2.4",
  1087. "resolved": "https://registry.npmmirror.com/d3-array/-/d3-array-3.2.4.tgz",
  1088. "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==",
  1089. "license": "ISC",
  1090. "dependencies": {
  1091. "internmap": "1 - 2"
  1092. },
  1093. "engines": {
  1094. "node": ">=12"
  1095. }
  1096. },
  1097. "node_modules/d3-binarytree": {
  1098. "version": "1.0.2",
  1099. "resolved": "https://registry.npmmirror.com/d3-binarytree/-/d3-binarytree-1.0.2.tgz",
  1100. "integrity": "sha512-cElUNH+sHu95L04m92pG73t2MEJXKu+GeKUN1TJkFsu93E5W8E9Sc3kHEGJKgenGvj19m6upSn2EunvMgMD2Yw==",
  1101. "license": "MIT"
  1102. },
  1103. "node_modules/d3-color": {
  1104. "version": "3.1.0",
  1105. "resolved": "https://registry.npmmirror.com/d3-color/-/d3-color-3.1.0.tgz",
  1106. "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
  1107. "license": "ISC",
  1108. "engines": {
  1109. "node": ">=12"
  1110. }
  1111. },
  1112. "node_modules/d3-dispatch": {
  1113. "version": "3.0.1",
  1114. "resolved": "https://registry.npmmirror.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
  1115. "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
  1116. "license": "ISC",
  1117. "engines": {
  1118. "node": ">=12"
  1119. }
  1120. },
  1121. "node_modules/d3-dsv": {
  1122. "version": "3.0.1",
  1123. "resolved": "https://registry.npmmirror.com/d3-dsv/-/d3-dsv-3.0.1.tgz",
  1124. "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==",
  1125. "license": "ISC",
  1126. "dependencies": {
  1127. "commander": "7",
  1128. "iconv-lite": "0.6",
  1129. "rw": "1"
  1130. },
  1131. "bin": {
  1132. "csv2json": "bin/dsv2json.js",
  1133. "csv2tsv": "bin/dsv2dsv.js",
  1134. "dsv2dsv": "bin/dsv2dsv.js",
  1135. "dsv2json": "bin/dsv2json.js",
  1136. "json2csv": "bin/json2dsv.js",
  1137. "json2dsv": "bin/json2dsv.js",
  1138. "json2tsv": "bin/json2dsv.js",
  1139. "tsv2csv": "bin/dsv2dsv.js",
  1140. "tsv2json": "bin/dsv2json.js"
  1141. },
  1142. "engines": {
  1143. "node": ">=12"
  1144. }
  1145. },
  1146. "node_modules/d3-ease": {
  1147. "version": "3.0.1",
  1148. "resolved": "https://registry.npmmirror.com/d3-ease/-/d3-ease-3.0.1.tgz",
  1149. "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
  1150. "license": "BSD-3-Clause",
  1151. "engines": {
  1152. "node": ">=12"
  1153. }
  1154. },
  1155. "node_modules/d3-fetch": {
  1156. "version": "3.0.1",
  1157. "resolved": "https://registry.npmmirror.com/d3-fetch/-/d3-fetch-3.0.1.tgz",
  1158. "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==",
  1159. "license": "ISC",
  1160. "dependencies": {
  1161. "d3-dsv": "1 - 3"
  1162. },
  1163. "engines": {
  1164. "node": ">=12"
  1165. }
  1166. },
  1167. "node_modules/d3-force": {
  1168. "version": "3.0.0",
  1169. "resolved": "https://registry.npmmirror.com/d3-force/-/d3-force-3.0.0.tgz",
  1170. "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
  1171. "license": "ISC",
  1172. "dependencies": {
  1173. "d3-dispatch": "1 - 3",
  1174. "d3-quadtree": "1 - 3",
  1175. "d3-timer": "1 - 3"
  1176. },
  1177. "engines": {
  1178. "node": ">=12"
  1179. }
  1180. },
  1181. "node_modules/d3-force-3d": {
  1182. "version": "3.0.6",
  1183. "resolved": "https://registry.npmmirror.com/d3-force-3d/-/d3-force-3d-3.0.6.tgz",
  1184. "integrity": "sha512-4tsKHUPLOVkyfEffZo1v6sFHvGFwAIIjt/W8IThbp08DYAsXZck+2pSHEG5W1+gQgEvFLdZkYvmJAbRM2EzMnA==",
  1185. "license": "MIT",
  1186. "dependencies": {
  1187. "d3-binarytree": "1",
  1188. "d3-dispatch": "1 - 3",
  1189. "d3-octree": "1",
  1190. "d3-quadtree": "1 - 3",
  1191. "d3-timer": "1 - 3"
  1192. },
  1193. "engines": {
  1194. "node": ">=12"
  1195. }
  1196. },
  1197. "node_modules/d3-format": {
  1198. "version": "3.1.2",
  1199. "resolved": "https://registry.npmmirror.com/d3-format/-/d3-format-3.1.2.tgz",
  1200. "integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==",
  1201. "license": "ISC",
  1202. "engines": {
  1203. "node": ">=12"
  1204. }
  1205. },
  1206. "node_modules/d3-geo": {
  1207. "version": "3.1.1",
  1208. "resolved": "https://registry.npmmirror.com/d3-geo/-/d3-geo-3.1.1.tgz",
  1209. "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==",
  1210. "license": "ISC",
  1211. "dependencies": {
  1212. "d3-array": "2.5.0 - 3"
  1213. },
  1214. "engines": {
  1215. "node": ">=12"
  1216. }
  1217. },
  1218. "node_modules/d3-geo-projection": {
  1219. "version": "4.0.0",
  1220. "resolved": "https://registry.npmmirror.com/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz",
  1221. "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==",
  1222. "license": "ISC",
  1223. "dependencies": {
  1224. "commander": "7",
  1225. "d3-array": "1 - 3",
  1226. "d3-geo": "1.12.0 - 3"
  1227. },
  1228. "bin": {
  1229. "geo2svg": "bin/geo2svg.js",
  1230. "geograticule": "bin/geograticule.js",
  1231. "geoproject": "bin/geoproject.js",
  1232. "geoquantize": "bin/geoquantize.js",
  1233. "geostitch": "bin/geostitch.js"
  1234. },
  1235. "engines": {
  1236. "node": ">=12"
  1237. }
  1238. },
  1239. "node_modules/d3-hierarchy": {
  1240. "version": "3.1.2",
  1241. "resolved": "https://registry.npmmirror.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz",
  1242. "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==",
  1243. "license": "ISC",
  1244. "engines": {
  1245. "node": ">=12"
  1246. }
  1247. },
  1248. "node_modules/d3-interpolate": {
  1249. "version": "3.0.1",
  1250. "resolved": "https://registry.npmmirror.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
  1251. "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
  1252. "license": "ISC",
  1253. "dependencies": {
  1254. "d3-color": "1 - 3"
  1255. },
  1256. "engines": {
  1257. "node": ">=12"
  1258. }
  1259. },
  1260. "node_modules/d3-octree": {
  1261. "version": "1.1.0",
  1262. "resolved": "https://registry.npmmirror.com/d3-octree/-/d3-octree-1.1.0.tgz",
  1263. "integrity": "sha512-F8gPlqpP+HwRPMO/8uOu5wjH110+6q4cgJvgJT6vlpy3BEaDIKlTZrgHKZSp/i1InRpVfh4puY/kvL6MxK930A==",
  1264. "license": "MIT"
  1265. },
  1266. "node_modules/d3-path": {
  1267. "version": "3.1.0",
  1268. "resolved": "https://registry.npmmirror.com/d3-path/-/d3-path-3.1.0.tgz",
  1269. "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
  1270. "license": "ISC",
  1271. "engines": {
  1272. "node": ">=12"
  1273. }
  1274. },
  1275. "node_modules/d3-quadtree": {
  1276. "version": "3.0.1",
  1277. "resolved": "https://registry.npmmirror.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
  1278. "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==",
  1279. "license": "ISC",
  1280. "engines": {
  1281. "node": ">=12"
  1282. }
  1283. },
  1284. "node_modules/d3-random": {
  1285. "version": "3.0.1",
  1286. "resolved": "https://registry.npmmirror.com/d3-random/-/d3-random-3.0.1.tgz",
  1287. "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==",
  1288. "license": "ISC",
  1289. "engines": {
  1290. "node": ">=12"
  1291. }
  1292. },
  1293. "node_modules/d3-regression": {
  1294. "version": "1.3.10",
  1295. "resolved": "https://registry.npmmirror.com/d3-regression/-/d3-regression-1.3.10.tgz",
  1296. "integrity": "sha512-PF8GWEL70cHHWpx2jUQXc68r1pyPHIA+St16muk/XRokETzlegj5LriNKg7o4LR0TySug4nHYPJNNRz/W+/Niw==",
  1297. "license": "BSD-3-Clause"
  1298. },
  1299. "node_modules/d3-scale": {
  1300. "version": "4.0.2",
  1301. "resolved": "https://registry.npmmirror.com/d3-scale/-/d3-scale-4.0.2.tgz",
  1302. "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
  1303. "license": "ISC",
  1304. "dependencies": {
  1305. "d3-array": "2.10.0 - 3",
  1306. "d3-format": "1 - 3",
  1307. "d3-interpolate": "1.2.0 - 3",
  1308. "d3-time": "2.1.1 - 3",
  1309. "d3-time-format": "2 - 4"
  1310. },
  1311. "engines": {
  1312. "node": ">=12"
  1313. }
  1314. },
  1315. "node_modules/d3-scale-chromatic": {
  1316. "version": "3.1.0",
  1317. "resolved": "https://registry.npmmirror.com/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz",
  1318. "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==",
  1319. "license": "ISC",
  1320. "dependencies": {
  1321. "d3-color": "1 - 3",
  1322. "d3-interpolate": "1 - 3"
  1323. },
  1324. "engines": {
  1325. "node": ">=12"
  1326. }
  1327. },
  1328. "node_modules/d3-shape": {
  1329. "version": "3.2.0",
  1330. "resolved": "https://registry.npmmirror.com/d3-shape/-/d3-shape-3.2.0.tgz",
  1331. "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
  1332. "license": "ISC",
  1333. "dependencies": {
  1334. "d3-path": "^3.1.0"
  1335. },
  1336. "engines": {
  1337. "node": ">=12"
  1338. }
  1339. },
  1340. "node_modules/d3-time": {
  1341. "version": "3.1.0",
  1342. "resolved": "https://registry.npmmirror.com/d3-time/-/d3-time-3.1.0.tgz",
  1343. "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
  1344. "license": "ISC",
  1345. "dependencies": {
  1346. "d3-array": "2 - 3"
  1347. },
  1348. "engines": {
  1349. "node": ">=12"
  1350. }
  1351. },
  1352. "node_modules/d3-time-format": {
  1353. "version": "4.1.0",
  1354. "resolved": "https://registry.npmmirror.com/d3-time-format/-/d3-time-format-4.1.0.tgz",
  1355. "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
  1356. "license": "ISC",
  1357. "dependencies": {
  1358. "d3-time": "1 - 3"
  1359. },
  1360. "engines": {
  1361. "node": ">=12"
  1362. }
  1363. },
  1364. "node_modules/d3-timer": {
  1365. "version": "3.0.1",
  1366. "resolved": "https://registry.npmmirror.com/d3-timer/-/d3-timer-3.0.1.tgz",
  1367. "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
  1368. "license": "ISC",
  1369. "engines": {
  1370. "node": ">=12"
  1371. }
  1372. },
  1373. "node_modules/dagre": {
  1374. "version": "0.8.5",
  1375. "resolved": "https://registry.npmmirror.com/dagre/-/dagre-0.8.5.tgz",
  1376. "integrity": "sha512-/aTqmnRta7x7MCCpExk7HQL2O4owCT2h8NT//9I1OQ9vt29Pa0BzSAkR5lwFUcQ7491yVi/3CXU9jQ5o0Mn2Sw==",
  1377. "license": "MIT",
  1378. "dependencies": {
  1379. "graphlib": "^2.1.8",
  1380. "lodash": "^4.17.15"
  1381. }
  1382. },
  1383. "node_modules/dayjs": {
  1384. "version": "1.11.20",
  1385. "license": "MIT"
  1386. },
  1387. "node_modules/detect-libc": {
  1388. "version": "2.1.2",
  1389. "dev": true,
  1390. "license": "Apache-2.0",
  1391. "engines": {
  1392. "node": ">=8"
  1393. }
  1394. },
  1395. "node_modules/docx": {
  1396. "version": "9.7.1",
  1397. "resolved": "https://registry.npmmirror.com/docx/-/docx-9.7.1.tgz",
  1398. "integrity": "sha512-ilXFf9Moz47ABjFpDiA5s1w9lpb4EFSp7+5iiJSbfyYDM+bpZdAgLlSr7fW4aXhVe/E+F6QCv0EvRVFEd5CsWg==",
  1399. "license": "MIT",
  1400. "dependencies": {
  1401. "@types/node": "^25.2.3",
  1402. "hash.js": "^1.1.7",
  1403. "jszip": "^3.10.1",
  1404. "nanoid": "^5.1.3",
  1405. "xml": "^1.0.1",
  1406. "xml-js": "^1.6.8"
  1407. },
  1408. "engines": {
  1409. "node": ">=10"
  1410. }
  1411. },
  1412. "node_modules/docx/node_modules/nanoid": {
  1413. "version": "5.1.15",
  1414. "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-5.1.15.tgz",
  1415. "integrity": "sha512-kBg3RpGtIe+RpTbyXwoI6pk5yD7KUiI3sygUqgeBMRst42KmhB4RZC7eiO9Wa1HIpaCCtpE2DJ6OI4Wi5ebwFw==",
  1416. "funding": [
  1417. {
  1418. "type": "github",
  1419. "url": "https://github.com/sponsors/ai"
  1420. }
  1421. ],
  1422. "license": "MIT",
  1423. "bin": {
  1424. "nanoid": "bin/nanoid.js"
  1425. },
  1426. "engines": {
  1427. "node": "^18 || >=20"
  1428. }
  1429. },
  1430. "node_modules/entities": {
  1431. "version": "7.0.1",
  1432. "license": "BSD-2-Clause",
  1433. "engines": {
  1434. "node": ">=0.12"
  1435. },
  1436. "funding": {
  1437. "url": "https://github.com/fb55/entities?sponsor=1"
  1438. }
  1439. },
  1440. "node_modules/estree-walker": {
  1441. "version": "2.0.2",
  1442. "license": "MIT"
  1443. },
  1444. "node_modules/eventemitter3": {
  1445. "version": "5.0.4",
  1446. "resolved": "https://registry.npmmirror.com/eventemitter3/-/eventemitter3-5.0.4.tgz",
  1447. "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
  1448. "license": "MIT"
  1449. },
  1450. "node_modules/fast-deep-equal": {
  1451. "version": "3.1.3",
  1452. "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
  1453. "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
  1454. "license": "MIT"
  1455. },
  1456. "node_modules/fdir": {
  1457. "version": "6.5.0",
  1458. "dev": true,
  1459. "license": "MIT",
  1460. "engines": {
  1461. "node": ">=12.0.0"
  1462. },
  1463. "peerDependencies": {
  1464. "picomatch": "^3 || ^4"
  1465. },
  1466. "peerDependenciesMeta": {
  1467. "picomatch": {
  1468. "optional": true
  1469. }
  1470. }
  1471. },
  1472. "node_modules/fecha": {
  1473. "version": "4.2.3",
  1474. "resolved": "https://registry.npmmirror.com/fecha/-/fecha-4.2.3.tgz",
  1475. "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==",
  1476. "license": "MIT"
  1477. },
  1478. "node_modules/file-saver": {
  1479. "version": "2.0.5",
  1480. "resolved": "https://registry.npmmirror.com/file-saver/-/file-saver-2.0.5.tgz",
  1481. "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==",
  1482. "license": "MIT"
  1483. },
  1484. "node_modules/fsevents": {
  1485. "version": "2.3.3",
  1486. "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
  1487. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1488. "dev": true,
  1489. "hasInstallScript": true,
  1490. "license": "MIT",
  1491. "optional": true,
  1492. "os": [
  1493. "darwin"
  1494. ],
  1495. "engines": {
  1496. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1497. }
  1498. },
  1499. "node_modules/gl-matrix": {
  1500. "version": "3.4.4",
  1501. "resolved": "https://registry.npmmirror.com/gl-matrix/-/gl-matrix-3.4.4.tgz",
  1502. "integrity": "sha512-latSnyDNt/8zYUB6VIJ6PCh2jBjJX6gnDsoCZ7LyW7GkqrD51EWwa9qCoGixj8YqBtETQK/xY7OmpTF8xz1DdQ==",
  1503. "license": "MIT"
  1504. },
  1505. "node_modules/graphlib": {
  1506. "version": "2.1.8",
  1507. "resolved": "https://registry.npmmirror.com/graphlib/-/graphlib-2.1.8.tgz",
  1508. "integrity": "sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==",
  1509. "license": "MIT",
  1510. "dependencies": {
  1511. "lodash": "^4.17.15"
  1512. }
  1513. },
  1514. "node_modules/hash.js": {
  1515. "version": "1.1.7",
  1516. "resolved": "https://registry.npmmirror.com/hash.js/-/hash.js-1.1.7.tgz",
  1517. "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
  1518. "license": "MIT",
  1519. "dependencies": {
  1520. "inherits": "^2.0.3",
  1521. "minimalistic-assert": "^1.0.1"
  1522. }
  1523. },
  1524. "node_modules/hookable": {
  1525. "version": "5.5.3",
  1526. "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz",
  1527. "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
  1528. "license": "MIT"
  1529. },
  1530. "node_modules/html2canvas": {
  1531. "version": "1.4.1",
  1532. "resolved": "https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz",
  1533. "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==",
  1534. "license": "MIT",
  1535. "dependencies": {
  1536. "css-line-break": "^2.1.0",
  1537. "text-segmentation": "^1.0.3"
  1538. },
  1539. "engines": {
  1540. "node": ">=8.0.0"
  1541. }
  1542. },
  1543. "node_modules/iconv-lite": {
  1544. "version": "0.6.3",
  1545. "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz",
  1546. "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
  1547. "license": "MIT",
  1548. "dependencies": {
  1549. "safer-buffer": ">= 2.1.2 < 3.0.0"
  1550. },
  1551. "engines": {
  1552. "node": ">=0.10.0"
  1553. }
  1554. },
  1555. "node_modules/ieee754": {
  1556. "version": "1.2.1",
  1557. "resolved": "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz",
  1558. "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
  1559. "funding": [
  1560. {
  1561. "type": "github",
  1562. "url": "https://github.com/sponsors/feross"
  1563. },
  1564. {
  1565. "type": "patreon",
  1566. "url": "https://www.patreon.com/feross"
  1567. },
  1568. {
  1569. "type": "consulting",
  1570. "url": "https://feross.org/support"
  1571. }
  1572. ],
  1573. "license": "BSD-3-Clause"
  1574. },
  1575. "node_modules/immediate": {
  1576. "version": "3.0.6",
  1577. "resolved": "https://registry.npmmirror.com/immediate/-/immediate-3.0.6.tgz",
  1578. "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
  1579. "license": "MIT"
  1580. },
  1581. "node_modules/inherits": {
  1582. "version": "2.0.4",
  1583. "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz",
  1584. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
  1585. "license": "ISC"
  1586. },
  1587. "node_modules/internmap": {
  1588. "version": "2.0.3",
  1589. "resolved": "https://registry.npmmirror.com/internmap/-/internmap-2.0.3.tgz",
  1590. "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
  1591. "license": "ISC",
  1592. "engines": {
  1593. "node": ">=12"
  1594. }
  1595. },
  1596. "node_modules/is-any-array": {
  1597. "version": "3.0.0",
  1598. "resolved": "https://registry.npmmirror.com/is-any-array/-/is-any-array-3.0.0.tgz",
  1599. "integrity": "sha512-o4h+tylWykC4BD1vaejp6gDxoM13bwW8FGuNs4yIKpj8xbBJcRxJx8vZpq0dCr7ZDEfeKjmsi/euolKhX6f/ww==",
  1600. "license": "MIT"
  1601. },
  1602. "node_modules/is-arrayish": {
  1603. "version": "0.3.4",
  1604. "license": "MIT"
  1605. },
  1606. "node_modules/is-what": {
  1607. "version": "5.5.0",
  1608. "resolved": "https://registry.npmmirror.com/is-what/-/is-what-5.5.0.tgz",
  1609. "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
  1610. "license": "MIT",
  1611. "engines": {
  1612. "node": ">=18"
  1613. },
  1614. "funding": {
  1615. "url": "https://github.com/sponsors/mesqueeb"
  1616. }
  1617. },
  1618. "node_modules/isarray": {
  1619. "version": "1.0.0",
  1620. "resolved": "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz",
  1621. "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
  1622. "license": "MIT"
  1623. },
  1624. "node_modules/jszip": {
  1625. "version": "3.10.1",
  1626. "resolved": "https://registry.npmmirror.com/jszip/-/jszip-3.10.1.tgz",
  1627. "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==",
  1628. "license": "(MIT OR GPL-3.0-or-later)",
  1629. "dependencies": {
  1630. "lie": "~3.3.0",
  1631. "pako": "~1.0.2",
  1632. "readable-stream": "~2.3.6",
  1633. "setimmediate": "^1.0.5"
  1634. }
  1635. },
  1636. "node_modules/lie": {
  1637. "version": "3.3.0",
  1638. "resolved": "https://registry.npmmirror.com/lie/-/lie-3.3.0.tgz",
  1639. "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
  1640. "license": "MIT",
  1641. "dependencies": {
  1642. "immediate": "~3.0.5"
  1643. }
  1644. },
  1645. "node_modules/lightningcss": {
  1646. "version": "1.32.0",
  1647. "dev": true,
  1648. "license": "MPL-2.0",
  1649. "dependencies": {
  1650. "detect-libc": "^2.0.3"
  1651. },
  1652. "engines": {
  1653. "node": ">= 12.0.0"
  1654. },
  1655. "funding": {
  1656. "type": "opencollective",
  1657. "url": "https://opencollective.com/parcel"
  1658. },
  1659. "optionalDependencies": {
  1660. "lightningcss-android-arm64": "1.32.0",
  1661. "lightningcss-darwin-arm64": "1.32.0",
  1662. "lightningcss-darwin-x64": "1.32.0",
  1663. "lightningcss-freebsd-x64": "1.32.0",
  1664. "lightningcss-linux-arm-gnueabihf": "1.32.0",
  1665. "lightningcss-linux-arm64-gnu": "1.32.0",
  1666. "lightningcss-linux-arm64-musl": "1.32.0",
  1667. "lightningcss-linux-x64-gnu": "1.32.0",
  1668. "lightningcss-linux-x64-musl": "1.32.0",
  1669. "lightningcss-win32-arm64-msvc": "1.32.0",
  1670. "lightningcss-win32-x64-msvc": "1.32.0"
  1671. }
  1672. },
  1673. "node_modules/lightningcss-win32-x64-msvc": {
  1674. "version": "1.32.0",
  1675. "cpu": [
  1676. "x64"
  1677. ],
  1678. "dev": true,
  1679. "license": "MPL-2.0",
  1680. "optional": true,
  1681. "os": [
  1682. "win32"
  1683. ],
  1684. "engines": {
  1685. "node": ">= 12.0.0"
  1686. },
  1687. "funding": {
  1688. "type": "opencollective",
  1689. "url": "https://opencollective.com/parcel"
  1690. }
  1691. },
  1692. "node_modules/lodash": {
  1693. "version": "4.18.1",
  1694. "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.18.1.tgz",
  1695. "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
  1696. "license": "MIT"
  1697. },
  1698. "node_modules/magic-string": {
  1699. "version": "0.30.21",
  1700. "license": "MIT",
  1701. "dependencies": {
  1702. "@jridgewell/sourcemap-codec": "^1.5.5"
  1703. }
  1704. },
  1705. "node_modules/minimalistic-assert": {
  1706. "version": "1.0.1",
  1707. "resolved": "https://registry.npmmirror.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
  1708. "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
  1709. "license": "ISC"
  1710. },
  1711. "node_modules/mitt": {
  1712. "version": "3.0.1",
  1713. "resolved": "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz",
  1714. "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
  1715. "license": "MIT"
  1716. },
  1717. "node_modules/ml-array-max": {
  1718. "version": "2.0.0",
  1719. "resolved": "https://registry.npmmirror.com/ml-array-max/-/ml-array-max-2.0.0.tgz",
  1720. "integrity": "sha512-QQZ4kENwpWmyNb98UXRDFXrmtIXuXtt1+bSbda/2KA85+F+rrJP8hZk6QOkCQXM2Th9mUDYdq/PNByPdT9ID4A==",
  1721. "license": "MIT",
  1722. "dependencies": {
  1723. "is-any-array": "^3.0.0"
  1724. }
  1725. },
  1726. "node_modules/ml-array-min": {
  1727. "version": "2.0.0",
  1728. "resolved": "https://registry.npmmirror.com/ml-array-min/-/ml-array-min-2.0.0.tgz",
  1729. "integrity": "sha512-GRj6Ky6sW9vGL6yIjgsHmXZ9YgrdmcQ8nCxPqEGeKc6dkfYg1XDYxGFxADUjNuZyoCd5PUscWAS4N+cFaX6hFg==",
  1730. "license": "MIT",
  1731. "dependencies": {
  1732. "is-any-array": "^3.0.0"
  1733. }
  1734. },
  1735. "node_modules/ml-array-rescale": {
  1736. "version": "2.0.0",
  1737. "resolved": "https://registry.npmmirror.com/ml-array-rescale/-/ml-array-rescale-2.0.0.tgz",
  1738. "integrity": "sha512-2GGtKfSno94/kIloWGvpp/U5Q5vLvLrza+SAaGsLeo6Xj4mEbA6Gqx+oTfZFkxnd1grT2X007HfJNs3T5BsiVg==",
  1739. "license": "MIT",
  1740. "dependencies": {
  1741. "is-any-array": "^3.0.0",
  1742. "ml-array-max": "^2.0.0",
  1743. "ml-array-min": "^2.0.0"
  1744. }
  1745. },
  1746. "node_modules/ml-matrix": {
  1747. "version": "6.12.2",
  1748. "resolved": "https://registry.npmmirror.com/ml-matrix/-/ml-matrix-6.12.2.tgz",
  1749. "integrity": "sha512-GC+BnW+pBh8Auap8goAxY0senAmF0IEoc3HNVSfnfbvGw0buuDIYb9kAKMS1l+GiwJ1rfK2bzJ8IHhwjzATSFA==",
  1750. "license": "MIT",
  1751. "dependencies": {
  1752. "is-any-array": "^3.0.0",
  1753. "ml-array-rescale": "^2.0.0"
  1754. }
  1755. },
  1756. "node_modules/nanoid": {
  1757. "version": "3.3.11",
  1758. "funding": [
  1759. {
  1760. "type": "github",
  1761. "url": "https://github.com/sponsors/ai"
  1762. }
  1763. ],
  1764. "license": "MIT",
  1765. "bin": {
  1766. "nanoid": "bin/nanoid.cjs"
  1767. },
  1768. "engines": {
  1769. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  1770. }
  1771. },
  1772. "node_modules/neo4j-driver": {
  1773. "version": "6.0.1",
  1774. "resolved": "https://registry.npmmirror.com/neo4j-driver/-/neo4j-driver-6.0.1.tgz",
  1775. "integrity": "sha512-8DDF2MwEJNz7y7cp97x4u8fmVIP4CWS8qNBxdwxTG0fWtsS+2NdeC+7uXwmmuFOpHvkfXqv63uWY73bfDtOH8Q==",
  1776. "license": "Apache-2.0",
  1777. "dependencies": {
  1778. "neo4j-driver-bolt-connection": "6.0.1",
  1779. "neo4j-driver-core": "6.0.1",
  1780. "rxjs": "^7.8.2"
  1781. },
  1782. "engines": {
  1783. "node": ">=18.0.0"
  1784. }
  1785. },
  1786. "node_modules/neo4j-driver-bolt-connection": {
  1787. "version": "6.0.1",
  1788. "resolved": "https://registry.npmmirror.com/neo4j-driver-bolt-connection/-/neo4j-driver-bolt-connection-6.0.1.tgz",
  1789. "integrity": "sha512-1KyG73TO+CwnYJisdHD0sjUw9yR+P5q3JFcmVPzsHT4/whzCjuXSMpmY4jZcHH2PdY2cBUq4l/6WcDiPMxW2UA==",
  1790. "license": "Apache-2.0",
  1791. "dependencies": {
  1792. "buffer": "^6.0.3",
  1793. "neo4j-driver-core": "6.0.1",
  1794. "string_decoder": "^1.3.0"
  1795. }
  1796. },
  1797. "node_modules/neo4j-driver-core": {
  1798. "version": "6.0.1",
  1799. "resolved": "https://registry.npmmirror.com/neo4j-driver-core/-/neo4j-driver-core-6.0.1.tgz",
  1800. "integrity": "sha512-5I2KxICAvcHxnWdJyDqwu8PBAQvWVTlQH2ve3VQmtVdJScPqWhpXN1PiX5IIl+cRF3pFpz9GQF53B5n6s0QQUQ==",
  1801. "license": "Apache-2.0"
  1802. },
  1803. "node_modules/number-precision": {
  1804. "version": "1.6.0",
  1805. "license": "MIT"
  1806. },
  1807. "node_modules/pako": {
  1808. "version": "1.0.11",
  1809. "resolved": "https://registry.npmmirror.com/pako/-/pako-1.0.11.tgz",
  1810. "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
  1811. "license": "(MIT AND Zlib)"
  1812. },
  1813. "node_modules/perfect-debounce": {
  1814. "version": "1.0.0",
  1815. "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
  1816. "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
  1817. "license": "MIT"
  1818. },
  1819. "node_modules/picocolors": {
  1820. "version": "1.1.1",
  1821. "license": "ISC"
  1822. },
  1823. "node_modules/picomatch": {
  1824. "version": "4.0.4",
  1825. "dev": true,
  1826. "license": "MIT",
  1827. "engines": {
  1828. "node": ">=12"
  1829. },
  1830. "funding": {
  1831. "url": "https://github.com/sponsors/jonschlinkert"
  1832. }
  1833. },
  1834. "node_modules/pinia": {
  1835. "version": "3.0.4",
  1836. "resolved": "https://registry.npmmirror.com/pinia/-/pinia-3.0.4.tgz",
  1837. "integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
  1838. "license": "MIT",
  1839. "dependencies": {
  1840. "@vue/devtools-api": "^7.7.7"
  1841. },
  1842. "funding": {
  1843. "url": "https://github.com/sponsors/posva"
  1844. },
  1845. "peerDependencies": {
  1846. "typescript": ">=4.5.0",
  1847. "vue": "^3.5.11"
  1848. },
  1849. "peerDependenciesMeta": {
  1850. "typescript": {
  1851. "optional": true
  1852. }
  1853. }
  1854. },
  1855. "node_modules/pinia/node_modules/@vue/devtools-api": {
  1856. "version": "7.7.9",
  1857. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-7.7.9.tgz",
  1858. "integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==",
  1859. "license": "MIT",
  1860. "dependencies": {
  1861. "@vue/devtools-kit": "^7.7.9"
  1862. }
  1863. },
  1864. "node_modules/postcss": {
  1865. "version": "8.5.10",
  1866. "funding": [
  1867. {
  1868. "type": "opencollective",
  1869. "url": "https://opencollective.com/postcss/"
  1870. },
  1871. {
  1872. "type": "tidelift",
  1873. "url": "https://tidelift.com/funding/github/npm/postcss"
  1874. },
  1875. {
  1876. "type": "github",
  1877. "url": "https://github.com/sponsors/ai"
  1878. }
  1879. ],
  1880. "license": "MIT",
  1881. "dependencies": {
  1882. "nanoid": "^3.3.11",
  1883. "picocolors": "^1.1.1",
  1884. "source-map-js": "^1.2.1"
  1885. },
  1886. "engines": {
  1887. "node": "^10 || ^12 || >=14"
  1888. }
  1889. },
  1890. "node_modules/process-nextick-args": {
  1891. "version": "2.0.1",
  1892. "resolved": "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
  1893. "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
  1894. "license": "MIT"
  1895. },
  1896. "node_modules/readable-stream": {
  1897. "version": "2.3.8",
  1898. "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz",
  1899. "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
  1900. "license": "MIT",
  1901. "dependencies": {
  1902. "core-util-is": "~1.0.0",
  1903. "inherits": "~2.0.3",
  1904. "isarray": "~1.0.0",
  1905. "process-nextick-args": "~2.0.0",
  1906. "safe-buffer": "~5.1.1",
  1907. "string_decoder": "~1.1.1",
  1908. "util-deprecate": "~1.0.1"
  1909. }
  1910. },
  1911. "node_modules/readable-stream/node_modules/safe-buffer": {
  1912. "version": "5.1.2",
  1913. "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz",
  1914. "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
  1915. "license": "MIT"
  1916. },
  1917. "node_modules/readable-stream/node_modules/string_decoder": {
  1918. "version": "1.1.1",
  1919. "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz",
  1920. "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
  1921. "license": "MIT",
  1922. "dependencies": {
  1923. "safe-buffer": "~5.1.0"
  1924. }
  1925. },
  1926. "node_modules/resize-observer-polyfill": {
  1927. "version": "1.5.1",
  1928. "license": "MIT"
  1929. },
  1930. "node_modules/rfdc": {
  1931. "version": "1.4.1",
  1932. "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz",
  1933. "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
  1934. "license": "MIT"
  1935. },
  1936. "node_modules/rolldown": {
  1937. "version": "1.0.0-rc.12",
  1938. "resolved": "https://registry.npmmirror.com/rolldown/-/rolldown-1.0.0-rc.12.tgz",
  1939. "integrity": "sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==",
  1940. "dev": true,
  1941. "license": "MIT",
  1942. "dependencies": {
  1943. "@oxc-project/types": "=0.122.0",
  1944. "@rolldown/pluginutils": "1.0.0-rc.12"
  1945. },
  1946. "bin": {
  1947. "rolldown": "bin/cli.mjs"
  1948. },
  1949. "engines": {
  1950. "node": "^20.19.0 || >=22.12.0"
  1951. },
  1952. "optionalDependencies": {
  1953. "@rolldown/binding-android-arm64": "1.0.0-rc.12",
  1954. "@rolldown/binding-darwin-arm64": "1.0.0-rc.12",
  1955. "@rolldown/binding-darwin-x64": "1.0.0-rc.12",
  1956. "@rolldown/binding-freebsd-x64": "1.0.0-rc.12",
  1957. "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.12",
  1958. "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.12",
  1959. "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.12",
  1960. "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.12",
  1961. "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.12",
  1962. "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.12",
  1963. "@rolldown/binding-linux-x64-musl": "1.0.0-rc.12",
  1964. "@rolldown/binding-openharmony-arm64": "1.0.0-rc.12",
  1965. "@rolldown/binding-wasm32-wasi": "1.0.0-rc.12",
  1966. "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.12",
  1967. "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.12"
  1968. }
  1969. },
  1970. "node_modules/rolldown/node_modules/@rolldown/pluginutils": {
  1971. "version": "1.0.0-rc.12",
  1972. "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.12.tgz",
  1973. "integrity": "sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==",
  1974. "dev": true,
  1975. "license": "MIT"
  1976. },
  1977. "node_modules/rw": {
  1978. "version": "1.3.3",
  1979. "resolved": "https://registry.npmmirror.com/rw/-/rw-1.3.3.tgz",
  1980. "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==",
  1981. "license": "BSD-3-Clause"
  1982. },
  1983. "node_modules/rxjs": {
  1984. "version": "7.8.2",
  1985. "resolved": "https://registry.npmmirror.com/rxjs/-/rxjs-7.8.2.tgz",
  1986. "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==",
  1987. "license": "Apache-2.0",
  1988. "dependencies": {
  1989. "tslib": "^2.1.0"
  1990. }
  1991. },
  1992. "node_modules/safe-buffer": {
  1993. "version": "5.2.1",
  1994. "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz",
  1995. "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
  1996. "funding": [
  1997. {
  1998. "type": "github",
  1999. "url": "https://github.com/sponsors/feross"
  2000. },
  2001. {
  2002. "type": "patreon",
  2003. "url": "https://www.patreon.com/feross"
  2004. },
  2005. {
  2006. "type": "consulting",
  2007. "url": "https://feross.org/support"
  2008. }
  2009. ],
  2010. "license": "MIT"
  2011. },
  2012. "node_modules/safer-buffer": {
  2013. "version": "2.1.2",
  2014. "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz",
  2015. "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
  2016. "license": "MIT"
  2017. },
  2018. "node_modules/sax": {
  2019. "version": "1.6.0",
  2020. "resolved": "https://registry.npmmirror.com/sax/-/sax-1.6.0.tgz",
  2021. "integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==",
  2022. "license": "BlueOak-1.0.0",
  2023. "engines": {
  2024. "node": ">=11.0.0"
  2025. }
  2026. },
  2027. "node_modules/scroll-into-view-if-needed": {
  2028. "version": "2.2.31",
  2029. "license": "MIT",
  2030. "dependencies": {
  2031. "compute-scroll-into-view": "^1.0.20"
  2032. }
  2033. },
  2034. "node_modules/setimmediate": {
  2035. "version": "1.0.5",
  2036. "resolved": "https://registry.npmmirror.com/setimmediate/-/setimmediate-1.0.5.tgz",
  2037. "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==",
  2038. "license": "MIT"
  2039. },
  2040. "node_modules/simple-swizzle": {
  2041. "version": "0.2.4",
  2042. "license": "MIT",
  2043. "dependencies": {
  2044. "is-arrayish": "^0.3.1"
  2045. }
  2046. },
  2047. "node_modules/source-map-js": {
  2048. "version": "1.2.1",
  2049. "license": "BSD-3-Clause",
  2050. "engines": {
  2051. "node": ">=0.10.0"
  2052. }
  2053. },
  2054. "node_modules/speakingurl": {
  2055. "version": "14.0.1",
  2056. "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz",
  2057. "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
  2058. "license": "BSD-3-Clause",
  2059. "engines": {
  2060. "node": ">=0.10.0"
  2061. }
  2062. },
  2063. "node_modules/string_decoder": {
  2064. "version": "1.3.0",
  2065. "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz",
  2066. "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
  2067. "license": "MIT",
  2068. "dependencies": {
  2069. "safe-buffer": "~5.2.0"
  2070. }
  2071. },
  2072. "node_modules/superjson": {
  2073. "version": "2.2.6",
  2074. "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.6.tgz",
  2075. "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
  2076. "license": "MIT",
  2077. "dependencies": {
  2078. "copy-anything": "^4"
  2079. },
  2080. "engines": {
  2081. "node": ">=16"
  2082. }
  2083. },
  2084. "node_modules/svg-path-parser": {
  2085. "version": "1.1.0",
  2086. "resolved": "https://registry.npmmirror.com/svg-path-parser/-/svg-path-parser-1.1.0.tgz",
  2087. "integrity": "sha512-jGCUqcQyXpfe38R7RFfhrMyfXcBmpMNJI/B+4CE9/Unkh98UporAc461GTthv+TVDuZXsBx7/WiwJb1Oh4tt4A==",
  2088. "license": "MIT"
  2089. },
  2090. "node_modules/text-segmentation": {
  2091. "version": "1.0.3",
  2092. "resolved": "https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz",
  2093. "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==",
  2094. "license": "MIT",
  2095. "dependencies": {
  2096. "utrie": "^1.0.2"
  2097. }
  2098. },
  2099. "node_modules/tinyglobby": {
  2100. "version": "0.2.16",
  2101. "dev": true,
  2102. "license": "MIT",
  2103. "dependencies": {
  2104. "fdir": "^6.5.0",
  2105. "picomatch": "^4.0.4"
  2106. },
  2107. "engines": {
  2108. "node": ">=12.0.0"
  2109. },
  2110. "funding": {
  2111. "url": "https://github.com/sponsors/SuperchupuDev"
  2112. }
  2113. },
  2114. "node_modules/tslib": {
  2115. "version": "2.8.1",
  2116. "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
  2117. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  2118. "license": "0BSD"
  2119. },
  2120. "node_modules/undici-types": {
  2121. "version": "7.24.6",
  2122. "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-7.24.6.tgz",
  2123. "integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
  2124. "license": "MIT"
  2125. },
  2126. "node_modules/util-deprecate": {
  2127. "version": "1.0.2",
  2128. "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz",
  2129. "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
  2130. "license": "MIT"
  2131. },
  2132. "node_modules/utrie": {
  2133. "version": "1.0.2",
  2134. "resolved": "https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz",
  2135. "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==",
  2136. "license": "MIT",
  2137. "dependencies": {
  2138. "base64-arraybuffer": "^1.0.2"
  2139. }
  2140. },
  2141. "node_modules/vite": {
  2142. "version": "8.0.4",
  2143. "resolved": "https://registry.npmmirror.com/vite/-/vite-8.0.4.tgz",
  2144. "integrity": "sha512-baBr4jUVSLJ0RPyZ2nK0zS2+W8hNHbM4hEzfvllukmRPVS3xDG5ATTNtbRXrKIOE2b8/FsPWJAOnuIxcs7g3cw==",
  2145. "dev": true,
  2146. "license": "MIT",
  2147. "dependencies": {
  2148. "lightningcss": "^1.32.0",
  2149. "picomatch": "^4.0.4",
  2150. "postcss": "^8.5.8",
  2151. "rolldown": "1.0.0-rc.12",
  2152. "tinyglobby": "^0.2.15"
  2153. },
  2154. "bin": {
  2155. "vite": "bin/vite.js"
  2156. },
  2157. "engines": {
  2158. "node": "^20.19.0 || >=22.12.0"
  2159. },
  2160. "funding": {
  2161. "url": "https://github.com/vitejs/vite?sponsor=1"
  2162. },
  2163. "optionalDependencies": {
  2164. "fsevents": "~2.3.3"
  2165. },
  2166. "peerDependencies": {
  2167. "@types/node": "^20.19.0 || >=22.12.0",
  2168. "@vitejs/devtools": "^0.1.0",
  2169. "esbuild": "^0.27.0 || ^0.28.0",
  2170. "jiti": ">=1.21.0",
  2171. "less": "^4.0.0",
  2172. "sass": "^1.70.0",
  2173. "sass-embedded": "^1.70.0",
  2174. "stylus": ">=0.54.8",
  2175. "sugarss": "^5.0.0",
  2176. "terser": "^5.16.0",
  2177. "tsx": "^4.8.1",
  2178. "yaml": "^2.4.2"
  2179. },
  2180. "peerDependenciesMeta": {
  2181. "@types/node": {
  2182. "optional": true
  2183. },
  2184. "@vitejs/devtools": {
  2185. "optional": true
  2186. },
  2187. "esbuild": {
  2188. "optional": true
  2189. },
  2190. "jiti": {
  2191. "optional": true
  2192. },
  2193. "less": {
  2194. "optional": true
  2195. },
  2196. "sass": {
  2197. "optional": true
  2198. },
  2199. "sass-embedded": {
  2200. "optional": true
  2201. },
  2202. "stylus": {
  2203. "optional": true
  2204. },
  2205. "sugarss": {
  2206. "optional": true
  2207. },
  2208. "terser": {
  2209. "optional": true
  2210. },
  2211. "tsx": {
  2212. "optional": true
  2213. },
  2214. "yaml": {
  2215. "optional": true
  2216. }
  2217. }
  2218. },
  2219. "node_modules/vue": {
  2220. "version": "3.5.32",
  2221. "license": "MIT",
  2222. "dependencies": {
  2223. "@vue/compiler-dom": "3.5.32",
  2224. "@vue/compiler-sfc": "3.5.32",
  2225. "@vue/runtime-dom": "3.5.32",
  2226. "@vue/server-renderer": "3.5.32",
  2227. "@vue/shared": "3.5.32"
  2228. },
  2229. "peerDependencies": {
  2230. "typescript": "*"
  2231. },
  2232. "peerDependenciesMeta": {
  2233. "typescript": {
  2234. "optional": true
  2235. }
  2236. }
  2237. },
  2238. "node_modules/vue-demi": {
  2239. "version": "0.14.10",
  2240. "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz",
  2241. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  2242. "hasInstallScript": true,
  2243. "license": "MIT",
  2244. "bin": {
  2245. "vue-demi-fix": "bin/vue-demi-fix.js",
  2246. "vue-demi-switch": "bin/vue-demi-switch.js"
  2247. },
  2248. "engines": {
  2249. "node": ">=12"
  2250. },
  2251. "funding": {
  2252. "url": "https://github.com/sponsors/antfu"
  2253. },
  2254. "peerDependencies": {
  2255. "@vue/composition-api": "^1.0.0-rc.1",
  2256. "vue": "^3.0.0-0 || ^2.6.0"
  2257. },
  2258. "peerDependenciesMeta": {
  2259. "@vue/composition-api": {
  2260. "optional": true
  2261. }
  2262. }
  2263. },
  2264. "node_modules/vue-router": {
  2265. "version": "4.6.4",
  2266. "license": "MIT",
  2267. "dependencies": {
  2268. "@vue/devtools-api": "^6.6.4"
  2269. },
  2270. "funding": {
  2271. "url": "https://github.com/sponsors/posva"
  2272. },
  2273. "peerDependencies": {
  2274. "vue": "^3.5.0"
  2275. }
  2276. },
  2277. "node_modules/wa-sqlite": {
  2278. "version": "1.0.0",
  2279. "resolved": "https://registry.npmmirror.com/wa-sqlite/-/wa-sqlite-1.0.0.tgz",
  2280. "integrity": "sha512-Kyybo5/BaJp76z7gDWGk2J6Hthl4NIPsE+swgraEjy3IY6r5zIR02wAs1OJH4XtJp1y3puj3Onp5eMGS0z7nUA=="
  2281. },
  2282. "node_modules/xml": {
  2283. "version": "1.0.1",
  2284. "resolved": "https://registry.npmmirror.com/xml/-/xml-1.0.1.tgz",
  2285. "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==",
  2286. "license": "MIT"
  2287. },
  2288. "node_modules/xml-js": {
  2289. "version": "1.6.11",
  2290. "resolved": "https://registry.npmmirror.com/xml-js/-/xml-js-1.6.11.tgz",
  2291. "integrity": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==",
  2292. "license": "MIT",
  2293. "dependencies": {
  2294. "sax": "^1.2.4"
  2295. },
  2296. "bin": {
  2297. "xml-js": "bin/cli.js"
  2298. }
  2299. }
  2300. }
  2301. }