package-lock.json 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703
  1. {
  2. "name": "frontend",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "frontend",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "@monaco-editor/loader": "^1.7.0",
  12. "@types/dompurify": "^3.0.5",
  13. "@vue-flow/background": "^1.3.2",
  14. "@vue-flow/controls": "^1.1.3",
  15. "@vue-flow/core": "^1.48.2",
  16. "ant-design-vue": "^4.2.6",
  17. "axios": "^1.18.1",
  18. "chart.js": "^4.5.1",
  19. "dompurify": "^3.4.12",
  20. "highlight.js": "^11.11.1",
  21. "marked": "^18.0.6",
  22. "pinia": "^3.0.4",
  23. "vue-chartjs": "^5.3.4",
  24. "vue-router": "^5.1.0"
  25. },
  26. "devDependencies": {
  27. "@vitejs/plugin-vue": "^6.0.7",
  28. "typescript": "~6.0.2",
  29. "vite": "^8.1.1"
  30. }
  31. },
  32. "node_modules/@ant-design/colors": {
  33. "version": "6.0.0",
  34. "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-6.0.0.tgz",
  35. "integrity": "sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==",
  36. "license": "MIT",
  37. "dependencies": {
  38. "@ctrl/tinycolor": "^3.4.0"
  39. }
  40. },
  41. "node_modules/@ant-design/icons-svg": {
  42. "version": "4.5.0",
  43. "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.5.0.tgz",
  44. "integrity": "sha512-1BTUFyKPTBZ53MuTP8s0k5SFEXL7o3VHEOwLgzaoWKwnBeqIcqUtVshc4SKzhI6uACfqhJqBwBUE9FsWR3uULA==",
  45. "license": "MIT"
  46. },
  47. "node_modules/@ant-design/icons-vue": {
  48. "version": "7.0.1",
  49. "resolved": "https://registry.npmjs.org/@ant-design/icons-vue/-/icons-vue-7.0.1.tgz",
  50. "integrity": "sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==",
  51. "license": "MIT",
  52. "dependencies": {
  53. "@ant-design/colors": "^6.0.0",
  54. "@ant-design/icons-svg": "^4.2.1"
  55. },
  56. "peerDependencies": {
  57. "vue": ">=3.0.3"
  58. }
  59. },
  60. "node_modules/@babel/generator": {
  61. "version": "8.0.0-rc.4",
  62. "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-8.0.0-rc.4.tgz",
  63. "integrity": "sha512-YZ+FuIgkj7KrIb2a2X1XiY0QYgDxAbVbYP64SjwJzOK3euCsUerzenh2oqdsmKuPSlhzmFOOklnxzHAzXagvpw==",
  64. "license": "MIT",
  65. "dependencies": {
  66. "@babel/parser": "^8.0.0-rc.4",
  67. "@babel/types": "^8.0.0-rc.4",
  68. "@jridgewell/gen-mapping": "^0.3.12",
  69. "@jridgewell/trace-mapping": "^0.3.28",
  70. "@types/jsesc": "^2.5.0",
  71. "jsesc": "^3.0.2"
  72. },
  73. "engines": {
  74. "node": "^20.19.0 || >=22.12.0"
  75. }
  76. },
  77. "node_modules/@babel/generator/node_modules/@babel/helper-string-parser": {
  78. "version": "8.0.0-rc.4",
  79. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-8.0.0-rc.4.tgz",
  80. "integrity": "sha512-dluR3v287dp6YPF57kyKKrHPKffUeuxH1zQcF1WD30TeFzWXhDiVi1U6PkqaDB0++H1PeCwRhmYl4DvoerlPIw==",
  81. "license": "MIT",
  82. "engines": {
  83. "node": "^20.19.0 || >=22.12.0"
  84. }
  85. },
  86. "node_modules/@babel/generator/node_modules/@babel/helper-validator-identifier": {
  87. "version": "8.0.0-rc.4",
  88. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-8.0.0-rc.4.tgz",
  89. "integrity": "sha512-HTD3bskipk5MSm08twTW6832jzIXUhxMddy4NPPzIMuyMEsrs0ZgwAaMj5ubB5+6hMlUjDu17vNconEmwsmpYg==",
  90. "license": "MIT",
  91. "engines": {
  92. "node": "^20.19.0 || >=22.12.0"
  93. }
  94. },
  95. "node_modules/@babel/generator/node_modules/@babel/parser": {
  96. "version": "8.0.0-rc.4",
  97. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-8.0.0-rc.4.tgz",
  98. "integrity": "sha512-0S/1yefMa15N4i2v3t8Fw9pgMHhf2gF6Lc1UEXI96Ls6FNAjqvHHZouZ2ZS/deqLhbMFtmfVeFac6iTsvFbLwA==",
  99. "license": "MIT",
  100. "dependencies": {
  101. "@babel/types": "^8.0.0-rc.4"
  102. },
  103. "bin": {
  104. "parser": "bin/babel-parser.js"
  105. },
  106. "engines": {
  107. "node": "^20.19.0 || >=22.12.0"
  108. }
  109. },
  110. "node_modules/@babel/generator/node_modules/@babel/types": {
  111. "version": "8.0.0-rc.4",
  112. "resolved": "https://registry.npmjs.org/@babel/types/-/types-8.0.0-rc.4.tgz",
  113. "integrity": "sha512-bw30DV880P/VYtsjWWdoWmJpb9S2Vn1/PqayyccTELzRQ/HslIO7+BD9rNoZ4AAFOAjC1vrNeBCkAsyh6Ibfww==",
  114. "license": "MIT",
  115. "dependencies": {
  116. "@babel/helper-string-parser": "^8.0.0-rc.4",
  117. "@babel/helper-validator-identifier": "^8.0.0-rc.4"
  118. },
  119. "engines": {
  120. "node": "^20.19.0 || >=22.12.0"
  121. }
  122. },
  123. "node_modules/@babel/helper-string-parser": {
  124. "version": "7.29.7",
  125. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
  126. "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
  127. "license": "MIT",
  128. "engines": {
  129. "node": ">=6.9.0"
  130. }
  131. },
  132. "node_modules/@babel/helper-validator-identifier": {
  133. "version": "7.29.7",
  134. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
  135. "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
  136. "license": "MIT",
  137. "engines": {
  138. "node": ">=6.9.0"
  139. }
  140. },
  141. "node_modules/@babel/parser": {
  142. "version": "7.29.7",
  143. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
  144. "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
  145. "license": "MIT",
  146. "dependencies": {
  147. "@babel/types": "^7.29.7"
  148. },
  149. "bin": {
  150. "parser": "bin/babel-parser.js"
  151. },
  152. "engines": {
  153. "node": ">=6.0.0"
  154. }
  155. },
  156. "node_modules/@babel/runtime": {
  157. "version": "7.29.7",
  158. "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
  159. "integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
  160. "license": "MIT",
  161. "engines": {
  162. "node": ">=6.9.0"
  163. }
  164. },
  165. "node_modules/@babel/types": {
  166. "version": "7.29.7",
  167. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
  168. "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
  169. "license": "MIT",
  170. "dependencies": {
  171. "@babel/helper-string-parser": "^7.29.7",
  172. "@babel/helper-validator-identifier": "^7.29.7"
  173. },
  174. "engines": {
  175. "node": ">=6.9.0"
  176. }
  177. },
  178. "node_modules/@ctrl/tinycolor": {
  179. "version": "3.6.1",
  180. "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz",
  181. "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==",
  182. "license": "MIT",
  183. "engines": {
  184. "node": ">=10"
  185. }
  186. },
  187. "node_modules/@emnapi/core": {
  188. "version": "1.11.1",
  189. "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.1.tgz",
  190. "integrity": "sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==",
  191. "dev": true,
  192. "license": "MIT",
  193. "optional": true,
  194. "dependencies": {
  195. "@emnapi/wasi-threads": "1.2.2",
  196. "tslib": "^2.4.0"
  197. }
  198. },
  199. "node_modules/@emnapi/runtime": {
  200. "version": "1.11.1",
  201. "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
  202. "integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
  203. "dev": true,
  204. "license": "MIT",
  205. "optional": true,
  206. "dependencies": {
  207. "tslib": "^2.4.0"
  208. }
  209. },
  210. "node_modules/@emnapi/wasi-threads": {
  211. "version": "1.2.2",
  212. "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
  213. "integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
  214. "dev": true,
  215. "license": "MIT",
  216. "optional": true,
  217. "dependencies": {
  218. "tslib": "^2.4.0"
  219. }
  220. },
  221. "node_modules/@emotion/hash": {
  222. "version": "0.9.2",
  223. "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
  224. "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==",
  225. "license": "MIT"
  226. },
  227. "node_modules/@emotion/unitless": {
  228. "version": "0.8.1",
  229. "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz",
  230. "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==",
  231. "license": "MIT"
  232. },
  233. "node_modules/@jridgewell/gen-mapping": {
  234. "version": "0.3.13",
  235. "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
  236. "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
  237. "license": "MIT",
  238. "dependencies": {
  239. "@jridgewell/sourcemap-codec": "^1.5.0",
  240. "@jridgewell/trace-mapping": "^0.3.24"
  241. }
  242. },
  243. "node_modules/@jridgewell/remapping": {
  244. "version": "2.3.5",
  245. "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
  246. "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
  247. "license": "MIT",
  248. "dependencies": {
  249. "@jridgewell/gen-mapping": "^0.3.5",
  250. "@jridgewell/trace-mapping": "^0.3.24"
  251. }
  252. },
  253. "node_modules/@jridgewell/resolve-uri": {
  254. "version": "3.1.2",
  255. "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  256. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  257. "license": "MIT",
  258. "engines": {
  259. "node": ">=6.0.0"
  260. }
  261. },
  262. "node_modules/@jridgewell/sourcemap-codec": {
  263. "version": "1.5.5",
  264. "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  265. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  266. "license": "MIT"
  267. },
  268. "node_modules/@jridgewell/trace-mapping": {
  269. "version": "0.3.31",
  270. "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
  271. "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
  272. "license": "MIT",
  273. "dependencies": {
  274. "@jridgewell/resolve-uri": "^3.1.0",
  275. "@jridgewell/sourcemap-codec": "^1.4.14"
  276. }
  277. },
  278. "node_modules/@kurkle/color": {
  279. "version": "0.3.4",
  280. "resolved": "https://registry.npmjs.org/@kurkle/color/-/color-0.3.4.tgz",
  281. "integrity": "sha512-M5UknZPHRu3DEDWoipU6sE8PdkZ6Z/S+v4dD+Ke8IaNlpdSQah50lz1KtcFBa2vsdOnwbbnxJwVM4wty6udA5w==",
  282. "license": "MIT"
  283. },
  284. "node_modules/@monaco-editor/loader": {
  285. "version": "1.7.0",
  286. "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.7.0.tgz",
  287. "integrity": "sha512-gIwR1HrJrrx+vfyOhYmCZ0/JcWqG5kbfG7+d3f/C1LXk2EvzAbHSg3MQ5lO2sMlo9izoAZ04shohfKLVT6crVA==",
  288. "license": "MIT",
  289. "dependencies": {
  290. "state-local": "^1.0.6"
  291. }
  292. },
  293. "node_modules/@napi-rs/wasm-runtime": {
  294. "version": "1.1.6",
  295. "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz",
  296. "integrity": "sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==",
  297. "dev": true,
  298. "license": "MIT",
  299. "optional": true,
  300. "dependencies": {
  301. "@tybys/wasm-util": "^0.10.3"
  302. },
  303. "funding": {
  304. "type": "github",
  305. "url": "https://github.com/sponsors/Brooooooklyn"
  306. },
  307. "peerDependencies": {
  308. "@emnapi/core": "^1.7.1",
  309. "@emnapi/runtime": "^1.7.1"
  310. }
  311. },
  312. "node_modules/@oxc-project/types": {
  313. "version": "0.139.0",
  314. "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.139.0.tgz",
  315. "integrity": "sha512-r9gHphtCs+1M7J0pw6Sn/hh/Wpa/iQrOOkrNAlVLF/gHq+/CJmHIWKKUUhdWjcD6CIa8idarspCsASiXCXvFUw==",
  316. "devOptional": true,
  317. "license": "MIT",
  318. "funding": {
  319. "url": "https://github.com/sponsors/Boshen"
  320. }
  321. },
  322. "node_modules/@rolldown/binding-android-arm64": {
  323. "version": "1.1.5",
  324. "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.1.5.tgz",
  325. "integrity": "sha512-lZg8fqIv2v7FF237bwMgzGZEJvGL79/s5knJ/i6FmsGF4XXlzccZ4jb+TrFIxtSSxFtIpdsgrPZeMk1I9AFcyQ==",
  326. "cpu": [
  327. "arm64"
  328. ],
  329. "dev": true,
  330. "license": "MIT",
  331. "optional": true,
  332. "os": [
  333. "android"
  334. ],
  335. "engines": {
  336. "node": "^20.19.0 || >=22.12.0"
  337. }
  338. },
  339. "node_modules/@rolldown/binding-darwin-arm64": {
  340. "version": "1.1.5",
  341. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.1.5.tgz",
  342. "integrity": "sha512-51Bnx9pNiMRKSUNtBfySkNJ9vMU9Hh3I1ozDd6gyPPYzaXCfnptUcEZxXGYFn+ul2dtcMUiqGR1Yai2K10uoTw==",
  343. "cpu": [
  344. "arm64"
  345. ],
  346. "dev": true,
  347. "license": "MIT",
  348. "optional": true,
  349. "os": [
  350. "darwin"
  351. ],
  352. "engines": {
  353. "node": "^20.19.0 || >=22.12.0"
  354. }
  355. },
  356. "node_modules/@rolldown/binding-darwin-x64": {
  357. "version": "1.1.5",
  358. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.1.5.tgz",
  359. "integrity": "sha512-Tm+gbfC0aHu1tBA/JvKQh32S0K6YgCHkiAF4/W6xX0K0RmNuc94VeK419dJoE65R5aRxmo+noZQSWrAMF6yb6g==",
  360. "cpu": [
  361. "x64"
  362. ],
  363. "dev": true,
  364. "license": "MIT",
  365. "optional": true,
  366. "os": [
  367. "darwin"
  368. ],
  369. "engines": {
  370. "node": "^20.19.0 || >=22.12.0"
  371. }
  372. },
  373. "node_modules/@rolldown/binding-freebsd-x64": {
  374. "version": "1.1.5",
  375. "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.1.5.tgz",
  376. "integrity": "sha512-JMzDKCCXq93YccG5gz3hvOs1oXRKAf0XYpfOS88e+wZrC8Iugj6j68867vrYZkvpDDpKn/KoKORThmchMpF6TA==",
  377. "cpu": [
  378. "x64"
  379. ],
  380. "dev": true,
  381. "license": "MIT",
  382. "optional": true,
  383. "os": [
  384. "freebsd"
  385. ],
  386. "engines": {
  387. "node": "^20.19.0 || >=22.12.0"
  388. }
  389. },
  390. "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
  391. "version": "1.1.5",
  392. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.1.5.tgz",
  393. "integrity": "sha512-uML21j2K5TfPGutKxub+M+nLjZIrWjXQ5Grx4lCe/nimTj9B4L63zHpjXLl4y0L3mcm2htEQIb06oCG/szerNw==",
  394. "cpu": [
  395. "arm"
  396. ],
  397. "dev": true,
  398. "license": "MIT",
  399. "optional": true,
  400. "os": [
  401. "linux"
  402. ],
  403. "engines": {
  404. "node": "^20.19.0 || >=22.12.0"
  405. }
  406. },
  407. "node_modules/@rolldown/binding-linux-arm64-gnu": {
  408. "version": "1.1.5",
  409. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.1.5.tgz",
  410. "integrity": "sha512-navSiuTMogvnQoZoM/v+l3ZWo50/NTwSHSzheABx/RCnmUPaKwq9qSo4Br2OYRs21+Fz8uFqITZM3H4opOB0/Q==",
  411. "cpu": [
  412. "arm64"
  413. ],
  414. "dev": true,
  415. "license": "MIT",
  416. "optional": true,
  417. "os": [
  418. "linux"
  419. ],
  420. "engines": {
  421. "node": "^20.19.0 || >=22.12.0"
  422. }
  423. },
  424. "node_modules/@rolldown/binding-linux-arm64-musl": {
  425. "version": "1.1.5",
  426. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.1.5.tgz",
  427. "integrity": "sha512-lAryqH7IteztmCXQXk0etKj4wBQ7Gx5S6LjKhsgp9zb8I5bsuvU/2llH1hDQcjsFeqIsovMVN339/8pUDDBXxA==",
  428. "cpu": [
  429. "arm64"
  430. ],
  431. "dev": true,
  432. "license": "MIT",
  433. "optional": true,
  434. "os": [
  435. "linux"
  436. ],
  437. "engines": {
  438. "node": "^20.19.0 || >=22.12.0"
  439. }
  440. },
  441. "node_modules/@rolldown/binding-linux-ppc64-gnu": {
  442. "version": "1.1.5",
  443. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.1.5.tgz",
  444. "integrity": "sha512-fsK/sNBnxzBlL4O1JNrZakVQxPspqpED5dLtNsZS9oOKmtSpdNIzxH2kkol5HYTWJN47sE20ztMJPxfZ89qGOg==",
  445. "cpu": [
  446. "ppc64"
  447. ],
  448. "dev": true,
  449. "license": "MIT",
  450. "optional": true,
  451. "os": [
  452. "linux"
  453. ],
  454. "engines": {
  455. "node": "^20.19.0 || >=22.12.0"
  456. }
  457. },
  458. "node_modules/@rolldown/binding-linux-s390x-gnu": {
  459. "version": "1.1.5",
  460. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.1.5.tgz",
  461. "integrity": "sha512-gLYb4BIadlfTOYT5gO503n8zQjXflgzpD0FcyKh0Mzx3rqCZKnHoJWV9xe1KXUJ5lx2JfcSHr/mhzS0PC/McAA==",
  462. "cpu": [
  463. "s390x"
  464. ],
  465. "dev": true,
  466. "license": "MIT",
  467. "optional": true,
  468. "os": [
  469. "linux"
  470. ],
  471. "engines": {
  472. "node": "^20.19.0 || >=22.12.0"
  473. }
  474. },
  475. "node_modules/@rolldown/binding-linux-x64-gnu": {
  476. "version": "1.1.5",
  477. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.1.5.tgz",
  478. "integrity": "sha512-FjcpEKUyJygHgs1o50VYNvkt5+7Le/VEdYt0AkRpkL33MnyQfwr8l5mXwMmfmTbyMPr5vJLC+8/Gd9gXnwU1QQ==",
  479. "cpu": [
  480. "x64"
  481. ],
  482. "dev": true,
  483. "license": "MIT",
  484. "optional": true,
  485. "os": [
  486. "linux"
  487. ],
  488. "engines": {
  489. "node": "^20.19.0 || >=22.12.0"
  490. }
  491. },
  492. "node_modules/@rolldown/binding-linux-x64-musl": {
  493. "version": "1.1.5",
  494. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.1.5.tgz",
  495. "integrity": "sha512-Me+PfPI2TMeOQk0gYWfLQZtTktrmzbr8cDboqX83XKc7UrgAi55gF+2dUkWdxd19n55Essp2yeca+O9N5rBxHg==",
  496. "cpu": [
  497. "x64"
  498. ],
  499. "dev": true,
  500. "license": "MIT",
  501. "optional": true,
  502. "os": [
  503. "linux"
  504. ],
  505. "engines": {
  506. "node": "^20.19.0 || >=22.12.0"
  507. }
  508. },
  509. "node_modules/@rolldown/binding-openharmony-arm64": {
  510. "version": "1.1.5",
  511. "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.1.5.tgz",
  512. "integrity": "sha512-yc5WrLzXks6zCQfn9Oxr8pORKyl/pF+QjHmW/Qx3qu0oyrrNC+y2JLTU1E2rcWYAmzlnqngWXHQjy51VzW70Vw==",
  513. "cpu": [
  514. "arm64"
  515. ],
  516. "dev": true,
  517. "license": "MIT",
  518. "optional": true,
  519. "os": [
  520. "openharmony"
  521. ],
  522. "engines": {
  523. "node": "^20.19.0 || >=22.12.0"
  524. }
  525. },
  526. "node_modules/@rolldown/binding-wasm32-wasi": {
  527. "version": "1.1.5",
  528. "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.1.5.tgz",
  529. "integrity": "sha512-VbQGPX2b4r48TAMIM2cjgluIM1HYutm4pcTEJsle7iEP7sB1dFqtPLBVbdLAZCxy1txCcPxf4QFf4v8uvltPqA==",
  530. "cpu": [
  531. "wasm32"
  532. ],
  533. "dev": true,
  534. "license": "MIT",
  535. "optional": true,
  536. "dependencies": {
  537. "@emnapi/core": "1.11.1",
  538. "@emnapi/runtime": "1.11.1",
  539. "@napi-rs/wasm-runtime": "^1.1.6"
  540. },
  541. "engines": {
  542. "node": "^20.19.0 || >=22.12.0"
  543. }
  544. },
  545. "node_modules/@rolldown/binding-win32-arm64-msvc": {
  546. "version": "1.1.5",
  547. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.1.5.tgz",
  548. "integrity": "sha512-gHv82k63z4qpV5+Q1y/12KrK0ltWBukVDI8nZcbT7Tt/ZlOIVwppazneq0F93oDxTo3IgAMEDIoQh3E2n6mVsw==",
  549. "cpu": [
  550. "arm64"
  551. ],
  552. "dev": true,
  553. "license": "MIT",
  554. "optional": true,
  555. "os": [
  556. "win32"
  557. ],
  558. "engines": {
  559. "node": "^20.19.0 || >=22.12.0"
  560. }
  561. },
  562. "node_modules/@rolldown/binding-win32-x64-msvc": {
  563. "version": "1.1.5",
  564. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.1.5.tgz",
  565. "integrity": "sha512-tTZuDBPw85tEN5PQi1pnEBzDy0Z49HtScLAbD5t6hyeU92A95pRWaSMw1GZZi/RwgSgUIl0xrSlXIT/9QzvYSA==",
  566. "cpu": [
  567. "x64"
  568. ],
  569. "dev": true,
  570. "license": "MIT",
  571. "optional": true,
  572. "os": [
  573. "win32"
  574. ],
  575. "engines": {
  576. "node": "^20.19.0 || >=22.12.0"
  577. }
  578. },
  579. "node_modules/@rolldown/pluginutils": {
  580. "version": "1.0.1",
  581. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
  582. "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
  583. "devOptional": true,
  584. "license": "MIT"
  585. },
  586. "node_modules/@simonwep/pickr": {
  587. "version": "1.8.2",
  588. "resolved": "https://registry.npmjs.org/@simonwep/pickr/-/pickr-1.8.2.tgz",
  589. "integrity": "sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==",
  590. "license": "MIT",
  591. "dependencies": {
  592. "core-js": "^3.15.1",
  593. "nanopop": "^2.1.0"
  594. }
  595. },
  596. "node_modules/@tybys/wasm-util": {
  597. "version": "0.10.3",
  598. "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz",
  599. "integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==",
  600. "dev": true,
  601. "license": "MIT",
  602. "optional": true,
  603. "dependencies": {
  604. "tslib": "^2.4.0"
  605. }
  606. },
  607. "node_modules/@types/dompurify": {
  608. "version": "3.0.5",
  609. "resolved": "https://registry.npmjs.org/@types/dompurify/-/dompurify-3.0.5.tgz",
  610. "integrity": "sha512-1Wg0g3BtQF7sSb27fJQAKck1HECM6zV1EB66j8JH9i3LCjYabJa0FSdiSgsD5K/RbrsR0SiraKacLB+T8ZVYAg==",
  611. "license": "MIT",
  612. "dependencies": {
  613. "@types/trusted-types": "*"
  614. }
  615. },
  616. "node_modules/@types/jsesc": {
  617. "version": "2.5.1",
  618. "resolved": "https://registry.npmjs.org/@types/jsesc/-/jsesc-2.5.1.tgz",
  619. "integrity": "sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==",
  620. "license": "MIT"
  621. },
  622. "node_modules/@types/trusted-types": {
  623. "version": "2.0.7",
  624. "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
  625. "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
  626. "license": "MIT"
  627. },
  628. "node_modules/@types/web-bluetooth": {
  629. "version": "0.0.20",
  630. "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz",
  631. "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==",
  632. "license": "MIT"
  633. },
  634. "node_modules/@vitejs/plugin-vue": {
  635. "version": "6.0.7",
  636. "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-6.0.7.tgz",
  637. "integrity": "sha512-km+p+XdSz9Sxm5rqUbqcSfZYaAniKxWBj1KURl+Jr7UaPvvX7BmaWMdP69I5rrFDeQGyxAG7NXdc57vz+snhWg==",
  638. "dev": true,
  639. "license": "MIT",
  640. "dependencies": {
  641. "@rolldown/pluginutils": "^1.0.1"
  642. },
  643. "engines": {
  644. "node": "^20.19.0 || >=22.12.0"
  645. },
  646. "peerDependencies": {
  647. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
  648. "vue": "^3.2.25"
  649. }
  650. },
  651. "node_modules/@vue-flow/background": {
  652. "version": "1.3.2",
  653. "resolved": "https://registry.npmjs.org/@vue-flow/background/-/background-1.3.2.tgz",
  654. "integrity": "sha512-eJPhDcLj1wEo45bBoqTXw1uhl0yK2RaQGnEINqvvBsAFKh/camHJd5NPmOdS1w+M9lggc9igUewxaEd3iCQX2w==",
  655. "license": "MIT",
  656. "peerDependencies": {
  657. "@vue-flow/core": "^1.23.0",
  658. "vue": "^3.3.0"
  659. }
  660. },
  661. "node_modules/@vue-flow/controls": {
  662. "version": "1.1.3",
  663. "resolved": "https://registry.npmjs.org/@vue-flow/controls/-/controls-1.1.3.tgz",
  664. "integrity": "sha512-XCf+G+jCvaWURdFlZmOjifZGw3XMhN5hHlfMGkWh9xot+9nH9gdTZtn+ldIJKtarg3B21iyHU8JjKDhYcB6JMw==",
  665. "license": "MIT",
  666. "peerDependencies": {
  667. "@vue-flow/core": "^1.23.0",
  668. "vue": "^3.3.0"
  669. }
  670. },
  671. "node_modules/@vue-flow/core": {
  672. "version": "1.48.2",
  673. "resolved": "https://registry.npmjs.org/@vue-flow/core/-/core-1.48.2.tgz",
  674. "integrity": "sha512-raxhgKWE+G/mcEvXJjGFUDYW9rAI3GOtiHR3ZkNpwBWuIaCC1EYiBmKGwJOoNzVFgwO7COgErnK7i08i287AFA==",
  675. "license": "MIT",
  676. "dependencies": {
  677. "@vueuse/core": "^10.5.0",
  678. "d3-drag": "^3.0.0",
  679. "d3-interpolate": "^3.0.1",
  680. "d3-selection": "^3.0.0",
  681. "d3-zoom": "^3.0.0"
  682. },
  683. "peerDependencies": {
  684. "vue": "^3.3.0"
  685. }
  686. },
  687. "node_modules/@vue-macros/common": {
  688. "version": "3.1.3",
  689. "resolved": "https://registry.npmjs.org/@vue-macros/common/-/common-3.1.3.tgz",
  690. "integrity": "sha512-pphnexn8CDKugcA4TYSKlg1XanBYPbILST+eZK9ZGqG8sVbNR5L0kXEpRqs8+iSznosHt/Jo2k1FGl0tnWIpyg==",
  691. "license": "MIT",
  692. "dependencies": {
  693. "@vue/compiler-sfc": "^3.5.22",
  694. "ast-kit": "^2.1.2",
  695. "local-pkg": "^1.1.2",
  696. "magic-string-ast": "^1.0.2",
  697. "unplugin-utils": "^0.3.0"
  698. },
  699. "engines": {
  700. "node": ">=20.19.0"
  701. },
  702. "funding": {
  703. "url": "https://github.com/sponsors/vue-macros"
  704. },
  705. "peerDependencies": {
  706. "vue": "^2.7.0 || ^3.2.25"
  707. },
  708. "peerDependenciesMeta": {
  709. "vue": {
  710. "optional": true
  711. }
  712. }
  713. },
  714. "node_modules/@vue/compiler-core": {
  715. "version": "3.5.39",
  716. "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.39.tgz",
  717. "integrity": "sha512-16KBTEXAJCpDr0mwlw+AZyhu8iyC7R3S2vBwsI7QnWJU6X3WKc9VKeNEZpiMdZ569qWhz9574L3vV55qRL0Vtw==",
  718. "license": "MIT",
  719. "dependencies": {
  720. "@babel/parser": "^7.29.7",
  721. "@vue/shared": "3.5.39",
  722. "entities": "^7.0.1",
  723. "estree-walker": "^2.0.2",
  724. "source-map-js": "^1.2.1"
  725. }
  726. },
  727. "node_modules/@vue/compiler-dom": {
  728. "version": "3.5.39",
  729. "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.39.tgz",
  730. "integrity": "sha512-oQPigALqYbNxTNPvNgSOe+czwVExfbVF02lz8jP0S3AXJiu3jxYDygNUiqSep4ezzW8XgnubqH63My2A7JR/vg==",
  731. "license": "MIT",
  732. "dependencies": {
  733. "@vue/compiler-core": "3.5.39",
  734. "@vue/shared": "3.5.39"
  735. }
  736. },
  737. "node_modules/@vue/compiler-sfc": {
  738. "version": "3.5.39",
  739. "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.39.tgz",
  740. "integrity": "sha512-d0ki86iOyN8LoZPBmk5SJWNwHP19CnDDCfuo//+2WJa2g5Ke0Jay983PIBIcSSzldC68I8DrD5GrHV3OSDfodg==",
  741. "license": "MIT",
  742. "dependencies": {
  743. "@babel/parser": "^7.29.7",
  744. "@vue/compiler-core": "3.5.39",
  745. "@vue/compiler-dom": "3.5.39",
  746. "@vue/compiler-ssr": "3.5.39",
  747. "@vue/shared": "3.5.39",
  748. "estree-walker": "^2.0.2",
  749. "magic-string": "^0.30.21",
  750. "postcss": "^8.5.15",
  751. "source-map-js": "^1.2.1"
  752. }
  753. },
  754. "node_modules/@vue/compiler-ssr": {
  755. "version": "3.5.39",
  756. "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.39.tgz",
  757. "integrity": "sha512-Ce7/wvwMHai74bdszfXExdazFigYnlF9zgCmEQUcM1j0fOymlouZ7XilTYNo8oUjhlnjYOZbGrcYKuqjz89Ucw==",
  758. "license": "MIT",
  759. "dependencies": {
  760. "@vue/compiler-dom": "3.5.39",
  761. "@vue/shared": "3.5.39"
  762. }
  763. },
  764. "node_modules/@vue/devtools-api": {
  765. "version": "8.1.5",
  766. "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-8.1.5.tgz",
  767. "integrity": "sha512-YJipMVAKe5wT5CWf5kTYCaNV7NMNjFVxJkIkJaJ4W/nCxEBzlZzrOsYKeCymdCrFZmBS/+wTWFoUs3Jf/Q6XSQ==",
  768. "license": "MIT",
  769. "dependencies": {
  770. "@vue/devtools-kit": "^8.1.5"
  771. }
  772. },
  773. "node_modules/@vue/devtools-kit": {
  774. "version": "8.1.5",
  775. "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-8.1.5.tgz",
  776. "integrity": "sha512-FcSAxsi4eWuXLCB7Rv9lj0aIVHHPNVQ2BazGf4RJTc2JCqb4BQg0hk87ZFhminCfl+mD5OUI0rX2cgyu4kJOGA==",
  777. "license": "MIT",
  778. "dependencies": {
  779. "@vue/devtools-shared": "^8.1.5",
  780. "birpc": "^2.6.1",
  781. "hookable": "^5.5.3",
  782. "perfect-debounce": "^2.0.0"
  783. }
  784. },
  785. "node_modules/@vue/devtools-shared": {
  786. "version": "8.1.5",
  787. "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-8.1.5.tgz",
  788. "integrity": "sha512-mhT4zcPFhF+Xk1O4BfhhrbXzpmfqY03fS6xGpcllbQG7lDjhQf8pQHcTIhqQIYx1hfwtHmk/6jM96ele0UxPqQ==",
  789. "license": "MIT"
  790. },
  791. "node_modules/@vue/reactivity": {
  792. "version": "3.5.39",
  793. "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.39.tgz",
  794. "integrity": "sha512-TpsuBJ9gGlZa5d23XcM2y8EXanz9dZeVDQBXRwzy46ItgvM+rWpzs+UVM0wcRLxGvcav0HE5jz2gNL53xlRAog==",
  795. "license": "MIT",
  796. "peer": true,
  797. "dependencies": {
  798. "@vue/shared": "3.5.39"
  799. }
  800. },
  801. "node_modules/@vue/runtime-core": {
  802. "version": "3.5.39",
  803. "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.39.tgz",
  804. "integrity": "sha512-9GLtNyRvPAUMbX+7ono0RC2j0guo2LXVi8LvcmAooImACUKm0oFf0jjwbX8/H0AE/t1nxhAkn8RSl9PMCzzxZw==",
  805. "license": "MIT",
  806. "peer": true,
  807. "dependencies": {
  808. "@vue/reactivity": "3.5.39",
  809. "@vue/shared": "3.5.39"
  810. }
  811. },
  812. "node_modules/@vue/runtime-dom": {
  813. "version": "3.5.39",
  814. "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.39.tgz",
  815. "integrity": "sha512-7Y6aAGboKcXAZ3ECuUy7RrS5yy2r47dhTp2SKaJmYxjopImaVFaNa5Ne66NwGovsrxVAl5S5rwc7m22UG7Lmww==",
  816. "license": "MIT",
  817. "peer": true,
  818. "dependencies": {
  819. "@vue/reactivity": "3.5.39",
  820. "@vue/runtime-core": "3.5.39",
  821. "@vue/shared": "3.5.39",
  822. "csstype": "^3.2.3"
  823. }
  824. },
  825. "node_modules/@vue/server-renderer": {
  826. "version": "3.5.39",
  827. "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.39.tgz",
  828. "integrity": "sha512-yZSakiAGw85rZfG7UM8akMnIF+FmeiNk47uvHf2nVBBSe+dIKUhZuZq9+XgJhbV3nS5Z4ALH23/MpXofW+mbcw==",
  829. "license": "MIT",
  830. "peer": true,
  831. "dependencies": {
  832. "@vue/compiler-ssr": "3.5.39",
  833. "@vue/shared": "3.5.39"
  834. },
  835. "peerDependencies": {
  836. "vue": "3.5.39"
  837. }
  838. },
  839. "node_modules/@vue/shared": {
  840. "version": "3.5.39",
  841. "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.39.tgz",
  842. "integrity": "sha512-l1rrBtBfTnmxvtsvdQDXltUUy8S1Y+ZaqdfUzmAnJkTd8Z8rv5v/ytW+TKiqEOWyHPoqtPlNFSs0lhRmYVSHVA==",
  843. "license": "MIT"
  844. },
  845. "node_modules/@vueuse/core": {
  846. "version": "10.11.1",
  847. "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.11.1.tgz",
  848. "integrity": "sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==",
  849. "license": "MIT",
  850. "dependencies": {
  851. "@types/web-bluetooth": "^0.0.20",
  852. "@vueuse/metadata": "10.11.1",
  853. "@vueuse/shared": "10.11.1",
  854. "vue-demi": ">=0.14.8"
  855. },
  856. "funding": {
  857. "url": "https://github.com/sponsors/antfu"
  858. }
  859. },
  860. "node_modules/@vueuse/core/node_modules/vue-demi": {
  861. "version": "0.14.10",
  862. "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz",
  863. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  864. "hasInstallScript": true,
  865. "license": "MIT",
  866. "bin": {
  867. "vue-demi-fix": "bin/vue-demi-fix.js",
  868. "vue-demi-switch": "bin/vue-demi-switch.js"
  869. },
  870. "engines": {
  871. "node": ">=12"
  872. },
  873. "funding": {
  874. "url": "https://github.com/sponsors/antfu"
  875. },
  876. "peerDependencies": {
  877. "@vue/composition-api": "^1.0.0-rc.1",
  878. "vue": "^3.0.0-0 || ^2.6.0"
  879. },
  880. "peerDependenciesMeta": {
  881. "@vue/composition-api": {
  882. "optional": true
  883. }
  884. }
  885. },
  886. "node_modules/@vueuse/metadata": {
  887. "version": "10.11.1",
  888. "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.11.1.tgz",
  889. "integrity": "sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==",
  890. "license": "MIT",
  891. "funding": {
  892. "url": "https://github.com/sponsors/antfu"
  893. }
  894. },
  895. "node_modules/@vueuse/shared": {
  896. "version": "10.11.1",
  897. "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.11.1.tgz",
  898. "integrity": "sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==",
  899. "license": "MIT",
  900. "dependencies": {
  901. "vue-demi": ">=0.14.8"
  902. },
  903. "funding": {
  904. "url": "https://github.com/sponsors/antfu"
  905. }
  906. },
  907. "node_modules/@vueuse/shared/node_modules/vue-demi": {
  908. "version": "0.14.10",
  909. "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz",
  910. "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==",
  911. "hasInstallScript": true,
  912. "license": "MIT",
  913. "bin": {
  914. "vue-demi-fix": "bin/vue-demi-fix.js",
  915. "vue-demi-switch": "bin/vue-demi-switch.js"
  916. },
  917. "engines": {
  918. "node": ">=12"
  919. },
  920. "funding": {
  921. "url": "https://github.com/sponsors/antfu"
  922. },
  923. "peerDependencies": {
  924. "@vue/composition-api": "^1.0.0-rc.1",
  925. "vue": "^3.0.0-0 || ^2.6.0"
  926. },
  927. "peerDependenciesMeta": {
  928. "@vue/composition-api": {
  929. "optional": true
  930. }
  931. }
  932. },
  933. "node_modules/acorn": {
  934. "version": "8.17.0",
  935. "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz",
  936. "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==",
  937. "license": "MIT",
  938. "bin": {
  939. "acorn": "bin/acorn"
  940. },
  941. "engines": {
  942. "node": ">=0.4.0"
  943. }
  944. },
  945. "node_modules/agent-base": {
  946. "version": "6.0.2",
  947. "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
  948. "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
  949. "license": "MIT",
  950. "dependencies": {
  951. "debug": "4"
  952. },
  953. "engines": {
  954. "node": ">= 6.0.0"
  955. }
  956. },
  957. "node_modules/ant-design-vue": {
  958. "version": "4.2.6",
  959. "resolved": "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-4.2.6.tgz",
  960. "integrity": "sha512-t7eX13Yj3i9+i5g9lqFyYneoIb3OzTvQjq9Tts1i+eiOd3Eva/6GagxBSXM1fOCjqemIu0FYVE1ByZ/38epR3Q==",
  961. "license": "MIT",
  962. "dependencies": {
  963. "@ant-design/colors": "^6.0.0",
  964. "@ant-design/icons-vue": "^7.0.0",
  965. "@babel/runtime": "^7.10.5",
  966. "@ctrl/tinycolor": "^3.5.0",
  967. "@emotion/hash": "^0.9.0",
  968. "@emotion/unitless": "^0.8.0",
  969. "@simonwep/pickr": "~1.8.0",
  970. "array-tree-filter": "^2.1.0",
  971. "async-validator": "^4.0.0",
  972. "csstype": "^3.1.1",
  973. "dayjs": "^1.10.5",
  974. "dom-align": "^1.12.1",
  975. "dom-scroll-into-view": "^2.0.0",
  976. "lodash": "^4.17.21",
  977. "lodash-es": "^4.17.15",
  978. "resize-observer-polyfill": "^1.5.1",
  979. "scroll-into-view-if-needed": "^2.2.25",
  980. "shallow-equal": "^1.0.0",
  981. "stylis": "^4.1.3",
  982. "throttle-debounce": "^5.0.0",
  983. "vue-types": "^3.0.0",
  984. "warning": "^4.0.0"
  985. },
  986. "engines": {
  987. "node": ">=12.22.0"
  988. },
  989. "funding": {
  990. "type": "opencollective",
  991. "url": "https://opencollective.com/ant-design-vue"
  992. },
  993. "peerDependencies": {
  994. "vue": ">=3.2.0"
  995. }
  996. },
  997. "node_modules/array-tree-filter": {
  998. "version": "2.1.0",
  999. "resolved": "https://registry.npmjs.org/array-tree-filter/-/array-tree-filter-2.1.0.tgz",
  1000. "integrity": "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==",
  1001. "license": "MIT"
  1002. },
  1003. "node_modules/ast-kit": {
  1004. "version": "2.2.0",
  1005. "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-2.2.0.tgz",
  1006. "integrity": "sha512-m1Q/RaVOnTp9JxPX+F+Zn7IcLYMzM8kZofDImfsKZd8MbR+ikdOzTeztStWqfrqIxZnYWryyI9ePm3NGjnZgGw==",
  1007. "license": "MIT",
  1008. "dependencies": {
  1009. "@babel/parser": "^7.28.5",
  1010. "pathe": "^2.0.3"
  1011. },
  1012. "engines": {
  1013. "node": ">=20.19.0"
  1014. },
  1015. "funding": {
  1016. "url": "https://github.com/sponsors/sxzz"
  1017. }
  1018. },
  1019. "node_modules/ast-walker-scope": {
  1020. "version": "0.9.0",
  1021. "resolved": "https://registry.npmjs.org/ast-walker-scope/-/ast-walker-scope-0.9.0.tgz",
  1022. "integrity": "sha512-IJdzo2vLiElBxKzwS36VsCue/62d6IdWjnPB2v3nuPKeWGynp6FF/CYoLa5i/3jXH/z97ZDdsXz6abpgM6w07A==",
  1023. "license": "MIT",
  1024. "dependencies": {
  1025. "@babel/parser": "^7.29.2",
  1026. "@babel/types": "^7.29.0",
  1027. "ast-kit": "^2.2.0"
  1028. },
  1029. "engines": {
  1030. "node": ">=20.19.0"
  1031. },
  1032. "funding": {
  1033. "url": "https://github.com/sponsors/sxzz"
  1034. }
  1035. },
  1036. "node_modules/async-validator": {
  1037. "version": "4.2.5",
  1038. "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-4.2.5.tgz",
  1039. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  1040. "license": "MIT"
  1041. },
  1042. "node_modules/asynckit": {
  1043. "version": "0.4.0",
  1044. "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
  1045. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  1046. "license": "MIT"
  1047. },
  1048. "node_modules/axios": {
  1049. "version": "1.18.1",
  1050. "resolved": "https://registry.npmjs.org/axios/-/axios-1.18.1.tgz",
  1051. "integrity": "sha512-3nTvFlvpn9Zu/RkHUqtc7/+al4UpRW5az71ap5zccp6e8RAYEzhMTecX8Dz1wWDYrPpUoB1HAQEGEAEvUr7S9g==",
  1052. "license": "MIT",
  1053. "dependencies": {
  1054. "follow-redirects": "^1.16.0",
  1055. "form-data": "^4.0.5",
  1056. "https-proxy-agent": "^5.0.1",
  1057. "proxy-from-env": "^2.1.0"
  1058. }
  1059. },
  1060. "node_modules/birpc": {
  1061. "version": "2.9.0",
  1062. "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.9.0.tgz",
  1063. "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
  1064. "license": "MIT",
  1065. "funding": {
  1066. "url": "https://github.com/sponsors/antfu"
  1067. }
  1068. },
  1069. "node_modules/call-bind-apply-helpers": {
  1070. "version": "1.0.2",
  1071. "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1072. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1073. "license": "MIT",
  1074. "dependencies": {
  1075. "es-errors": "^1.3.0",
  1076. "function-bind": "^1.1.2"
  1077. },
  1078. "engines": {
  1079. "node": ">= 0.4"
  1080. }
  1081. },
  1082. "node_modules/chart.js": {
  1083. "version": "4.5.1",
  1084. "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.5.1.tgz",
  1085. "integrity": "sha512-GIjfiT9dbmHRiYi6Nl2yFCq7kkwdkp1W/lp2J99rX0yo9tgJGn3lKQATztIjb5tVtevcBtIdICNWqlq5+E8/Pw==",
  1086. "license": "MIT",
  1087. "dependencies": {
  1088. "@kurkle/color": "^0.3.0"
  1089. },
  1090. "engines": {
  1091. "pnpm": ">=8"
  1092. }
  1093. },
  1094. "node_modules/chokidar": {
  1095. "version": "5.0.0",
  1096. "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-5.0.0.tgz",
  1097. "integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==",
  1098. "license": "MIT",
  1099. "dependencies": {
  1100. "readdirp": "^5.0.0"
  1101. },
  1102. "engines": {
  1103. "node": ">= 20.19.0"
  1104. },
  1105. "funding": {
  1106. "url": "https://paulmillr.com/funding/"
  1107. }
  1108. },
  1109. "node_modules/combined-stream": {
  1110. "version": "1.0.8",
  1111. "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
  1112. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  1113. "license": "MIT",
  1114. "dependencies": {
  1115. "delayed-stream": "~1.0.0"
  1116. },
  1117. "engines": {
  1118. "node": ">= 0.8"
  1119. }
  1120. },
  1121. "node_modules/compute-scroll-into-view": {
  1122. "version": "1.0.20",
  1123. "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz",
  1124. "integrity": "sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==",
  1125. "license": "MIT"
  1126. },
  1127. "node_modules/confbox": {
  1128. "version": "0.2.4",
  1129. "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.2.4.tgz",
  1130. "integrity": "sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==",
  1131. "license": "MIT"
  1132. },
  1133. "node_modules/copy-anything": {
  1134. "version": "4.0.5",
  1135. "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-4.0.5.tgz",
  1136. "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
  1137. "license": "MIT",
  1138. "dependencies": {
  1139. "is-what": "^5.2.0"
  1140. },
  1141. "engines": {
  1142. "node": ">=18"
  1143. },
  1144. "funding": {
  1145. "url": "https://github.com/sponsors/mesqueeb"
  1146. }
  1147. },
  1148. "node_modules/core-js": {
  1149. "version": "3.49.0",
  1150. "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.49.0.tgz",
  1151. "integrity": "sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==",
  1152. "hasInstallScript": true,
  1153. "license": "MIT",
  1154. "funding": {
  1155. "type": "opencollective",
  1156. "url": "https://opencollective.com/core-js"
  1157. }
  1158. },
  1159. "node_modules/csstype": {
  1160. "version": "3.2.3",
  1161. "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
  1162. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1163. "license": "MIT"
  1164. },
  1165. "node_modules/d3-color": {
  1166. "version": "3.1.0",
  1167. "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
  1168. "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
  1169. "license": "ISC",
  1170. "engines": {
  1171. "node": ">=12"
  1172. }
  1173. },
  1174. "node_modules/d3-dispatch": {
  1175. "version": "3.0.1",
  1176. "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
  1177. "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
  1178. "license": "ISC",
  1179. "engines": {
  1180. "node": ">=12"
  1181. }
  1182. },
  1183. "node_modules/d3-drag": {
  1184. "version": "3.0.0",
  1185. "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz",
  1186. "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==",
  1187. "license": "ISC",
  1188. "dependencies": {
  1189. "d3-dispatch": "1 - 3",
  1190. "d3-selection": "3"
  1191. },
  1192. "engines": {
  1193. "node": ">=12"
  1194. }
  1195. },
  1196. "node_modules/d3-ease": {
  1197. "version": "3.0.1",
  1198. "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
  1199. "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
  1200. "license": "BSD-3-Clause",
  1201. "engines": {
  1202. "node": ">=12"
  1203. }
  1204. },
  1205. "node_modules/d3-interpolate": {
  1206. "version": "3.0.1",
  1207. "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
  1208. "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
  1209. "license": "ISC",
  1210. "dependencies": {
  1211. "d3-color": "1 - 3"
  1212. },
  1213. "engines": {
  1214. "node": ">=12"
  1215. }
  1216. },
  1217. "node_modules/d3-selection": {
  1218. "version": "3.0.0",
  1219. "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz",
  1220. "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==",
  1221. "license": "ISC",
  1222. "engines": {
  1223. "node": ">=12"
  1224. }
  1225. },
  1226. "node_modules/d3-timer": {
  1227. "version": "3.0.1",
  1228. "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
  1229. "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
  1230. "license": "ISC",
  1231. "engines": {
  1232. "node": ">=12"
  1233. }
  1234. },
  1235. "node_modules/d3-transition": {
  1236. "version": "3.0.1",
  1237. "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz",
  1238. "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==",
  1239. "license": "ISC",
  1240. "dependencies": {
  1241. "d3-color": "1 - 3",
  1242. "d3-dispatch": "1 - 3",
  1243. "d3-ease": "1 - 3",
  1244. "d3-interpolate": "1 - 3",
  1245. "d3-timer": "1 - 3"
  1246. },
  1247. "engines": {
  1248. "node": ">=12"
  1249. },
  1250. "peerDependencies": {
  1251. "d3-selection": "2 - 3"
  1252. }
  1253. },
  1254. "node_modules/d3-zoom": {
  1255. "version": "3.0.0",
  1256. "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz",
  1257. "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==",
  1258. "license": "ISC",
  1259. "dependencies": {
  1260. "d3-dispatch": "1 - 3",
  1261. "d3-drag": "2 - 3",
  1262. "d3-interpolate": "1 - 3",
  1263. "d3-selection": "2 - 3",
  1264. "d3-transition": "2 - 3"
  1265. },
  1266. "engines": {
  1267. "node": ">=12"
  1268. }
  1269. },
  1270. "node_modules/dayjs": {
  1271. "version": "1.11.21",
  1272. "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.21.tgz",
  1273. "integrity": "sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==",
  1274. "license": "MIT"
  1275. },
  1276. "node_modules/debug": {
  1277. "version": "4.4.3",
  1278. "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
  1279. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  1280. "license": "MIT",
  1281. "dependencies": {
  1282. "ms": "^2.1.3"
  1283. },
  1284. "engines": {
  1285. "node": ">=6.0"
  1286. },
  1287. "peerDependenciesMeta": {
  1288. "supports-color": {
  1289. "optional": true
  1290. }
  1291. }
  1292. },
  1293. "node_modules/delayed-stream": {
  1294. "version": "1.0.0",
  1295. "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
  1296. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  1297. "license": "MIT",
  1298. "engines": {
  1299. "node": ">=0.4.0"
  1300. }
  1301. },
  1302. "node_modules/detect-libc": {
  1303. "version": "2.1.2",
  1304. "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
  1305. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  1306. "devOptional": true,
  1307. "license": "Apache-2.0",
  1308. "engines": {
  1309. "node": ">=8"
  1310. }
  1311. },
  1312. "node_modules/dom-align": {
  1313. "version": "1.12.4",
  1314. "resolved": "https://registry.npmjs.org/dom-align/-/dom-align-1.12.4.tgz",
  1315. "integrity": "sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw==",
  1316. "license": "MIT"
  1317. },
  1318. "node_modules/dom-scroll-into-view": {
  1319. "version": "2.0.1",
  1320. "resolved": "https://registry.npmjs.org/dom-scroll-into-view/-/dom-scroll-into-view-2.0.1.tgz",
  1321. "integrity": "sha512-bvVTQe1lfaUr1oFzZX80ce9KLDlZ3iU+XGNE/bz9HnGdklTieqsbmsLHe+rT2XWqopvL0PckkYqN7ksmm5pe3w==",
  1322. "license": "MIT"
  1323. },
  1324. "node_modules/dompurify": {
  1325. "version": "3.4.12",
  1326. "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.12.tgz",
  1327. "integrity": "sha512-zQvGet8Z2sWbQhCmfFz/T5QWH2oBmjnqK3qvOjaqaNLrLEF912WamU+ohnTp0TCep/MFVHpdJuCZEdFOdTnEFg==",
  1328. "license": "(MPL-2.0 OR Apache-2.0)",
  1329. "optionalDependencies": {
  1330. "@types/trusted-types": "^2.0.7"
  1331. }
  1332. },
  1333. "node_modules/dunder-proto": {
  1334. "version": "1.0.1",
  1335. "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
  1336. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  1337. "license": "MIT",
  1338. "dependencies": {
  1339. "call-bind-apply-helpers": "^1.0.1",
  1340. "es-errors": "^1.3.0",
  1341. "gopd": "^1.2.0"
  1342. },
  1343. "engines": {
  1344. "node": ">= 0.4"
  1345. }
  1346. },
  1347. "node_modules/entities": {
  1348. "version": "7.0.1",
  1349. "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz",
  1350. "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
  1351. "license": "BSD-2-Clause",
  1352. "engines": {
  1353. "node": ">=0.12"
  1354. },
  1355. "funding": {
  1356. "url": "https://github.com/fb55/entities?sponsor=1"
  1357. }
  1358. },
  1359. "node_modules/es-define-property": {
  1360. "version": "1.0.1",
  1361. "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
  1362. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  1363. "license": "MIT",
  1364. "engines": {
  1365. "node": ">= 0.4"
  1366. }
  1367. },
  1368. "node_modules/es-errors": {
  1369. "version": "1.3.0",
  1370. "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
  1371. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  1372. "license": "MIT",
  1373. "engines": {
  1374. "node": ">= 0.4"
  1375. }
  1376. },
  1377. "node_modules/es-object-atoms": {
  1378. "version": "1.1.2",
  1379. "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
  1380. "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
  1381. "license": "MIT",
  1382. "dependencies": {
  1383. "es-errors": "^1.3.0"
  1384. },
  1385. "engines": {
  1386. "node": ">= 0.4"
  1387. }
  1388. },
  1389. "node_modules/es-set-tostringtag": {
  1390. "version": "2.1.0",
  1391. "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  1392. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  1393. "license": "MIT",
  1394. "dependencies": {
  1395. "es-errors": "^1.3.0",
  1396. "get-intrinsic": "^1.2.6",
  1397. "has-tostringtag": "^1.0.2",
  1398. "hasown": "^2.0.2"
  1399. },
  1400. "engines": {
  1401. "node": ">= 0.4"
  1402. }
  1403. },
  1404. "node_modules/estree-walker": {
  1405. "version": "2.0.2",
  1406. "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
  1407. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  1408. "license": "MIT"
  1409. },
  1410. "node_modules/exsolve": {
  1411. "version": "1.1.0",
  1412. "resolved": "https://registry.npmjs.org/exsolve/-/exsolve-1.1.0.tgz",
  1413. "integrity": "sha512-D+42+T12DdIlJM3uepa55qGiL3sYdLBOxIl2ifQCzCHz4c7eiolaHsi3BIqEr7JxBzxv2pYZQX9kw16ziMcEmw==",
  1414. "license": "MIT"
  1415. },
  1416. "node_modules/fdir": {
  1417. "version": "6.5.0",
  1418. "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
  1419. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1420. "license": "MIT",
  1421. "engines": {
  1422. "node": ">=12.0.0"
  1423. },
  1424. "peerDependencies": {
  1425. "picomatch": "^3 || ^4"
  1426. },
  1427. "peerDependenciesMeta": {
  1428. "picomatch": {
  1429. "optional": true
  1430. }
  1431. }
  1432. },
  1433. "node_modules/follow-redirects": {
  1434. "version": "1.16.0",
  1435. "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz",
  1436. "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
  1437. "funding": [
  1438. {
  1439. "type": "individual",
  1440. "url": "https://github.com/sponsors/RubenVerborgh"
  1441. }
  1442. ],
  1443. "license": "MIT",
  1444. "engines": {
  1445. "node": ">=4.0"
  1446. },
  1447. "peerDependenciesMeta": {
  1448. "debug": {
  1449. "optional": true
  1450. }
  1451. }
  1452. },
  1453. "node_modules/form-data": {
  1454. "version": "4.0.6",
  1455. "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.6.tgz",
  1456. "integrity": "sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==",
  1457. "license": "MIT",
  1458. "dependencies": {
  1459. "asynckit": "^0.4.0",
  1460. "combined-stream": "^1.0.8",
  1461. "es-set-tostringtag": "^2.1.0",
  1462. "hasown": "^2.0.4",
  1463. "mime-types": "^2.1.35"
  1464. },
  1465. "engines": {
  1466. "node": ">= 6"
  1467. }
  1468. },
  1469. "node_modules/fsevents": {
  1470. "version": "2.3.3",
  1471. "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  1472. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1473. "dev": true,
  1474. "hasInstallScript": true,
  1475. "license": "MIT",
  1476. "optional": true,
  1477. "os": [
  1478. "darwin"
  1479. ],
  1480. "engines": {
  1481. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1482. }
  1483. },
  1484. "node_modules/function-bind": {
  1485. "version": "1.1.2",
  1486. "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
  1487. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1488. "license": "MIT",
  1489. "funding": {
  1490. "url": "https://github.com/sponsors/ljharb"
  1491. }
  1492. },
  1493. "node_modules/get-intrinsic": {
  1494. "version": "1.3.0",
  1495. "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1496. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1497. "license": "MIT",
  1498. "dependencies": {
  1499. "call-bind-apply-helpers": "^1.0.2",
  1500. "es-define-property": "^1.0.1",
  1501. "es-errors": "^1.3.0",
  1502. "es-object-atoms": "^1.1.1",
  1503. "function-bind": "^1.1.2",
  1504. "get-proto": "^1.0.1",
  1505. "gopd": "^1.2.0",
  1506. "has-symbols": "^1.1.0",
  1507. "hasown": "^2.0.2",
  1508. "math-intrinsics": "^1.1.0"
  1509. },
  1510. "engines": {
  1511. "node": ">= 0.4"
  1512. },
  1513. "funding": {
  1514. "url": "https://github.com/sponsors/ljharb"
  1515. }
  1516. },
  1517. "node_modules/get-proto": {
  1518. "version": "1.0.1",
  1519. "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
  1520. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1521. "license": "MIT",
  1522. "dependencies": {
  1523. "dunder-proto": "^1.0.1",
  1524. "es-object-atoms": "^1.0.0"
  1525. },
  1526. "engines": {
  1527. "node": ">= 0.4"
  1528. }
  1529. },
  1530. "node_modules/gopd": {
  1531. "version": "1.2.0",
  1532. "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
  1533. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1534. "license": "MIT",
  1535. "engines": {
  1536. "node": ">= 0.4"
  1537. },
  1538. "funding": {
  1539. "url": "https://github.com/sponsors/ljharb"
  1540. }
  1541. },
  1542. "node_modules/has-symbols": {
  1543. "version": "1.1.0",
  1544. "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
  1545. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1546. "license": "MIT",
  1547. "engines": {
  1548. "node": ">= 0.4"
  1549. },
  1550. "funding": {
  1551. "url": "https://github.com/sponsors/ljharb"
  1552. }
  1553. },
  1554. "node_modules/has-tostringtag": {
  1555. "version": "1.0.2",
  1556. "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  1557. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  1558. "license": "MIT",
  1559. "dependencies": {
  1560. "has-symbols": "^1.0.3"
  1561. },
  1562. "engines": {
  1563. "node": ">= 0.4"
  1564. },
  1565. "funding": {
  1566. "url": "https://github.com/sponsors/ljharb"
  1567. }
  1568. },
  1569. "node_modules/hasown": {
  1570. "version": "2.0.4",
  1571. "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
  1572. "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
  1573. "license": "MIT",
  1574. "dependencies": {
  1575. "function-bind": "^1.1.2"
  1576. },
  1577. "engines": {
  1578. "node": ">= 0.4"
  1579. }
  1580. },
  1581. "node_modules/highlight.js": {
  1582. "version": "11.11.1",
  1583. "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.11.1.tgz",
  1584. "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==",
  1585. "license": "BSD-3-Clause",
  1586. "engines": {
  1587. "node": ">=12.0.0"
  1588. }
  1589. },
  1590. "node_modules/hookable": {
  1591. "version": "5.5.3",
  1592. "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz",
  1593. "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
  1594. "license": "MIT"
  1595. },
  1596. "node_modules/https-proxy-agent": {
  1597. "version": "5.0.1",
  1598. "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
  1599. "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
  1600. "license": "MIT",
  1601. "dependencies": {
  1602. "agent-base": "6",
  1603. "debug": "4"
  1604. },
  1605. "engines": {
  1606. "node": ">= 6"
  1607. }
  1608. },
  1609. "node_modules/is-plain-object": {
  1610. "version": "3.0.1",
  1611. "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.1.tgz",
  1612. "integrity": "sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==",
  1613. "license": "MIT",
  1614. "engines": {
  1615. "node": ">=0.10.0"
  1616. }
  1617. },
  1618. "node_modules/is-what": {
  1619. "version": "5.5.0",
  1620. "resolved": "https://registry.npmjs.org/is-what/-/is-what-5.5.0.tgz",
  1621. "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
  1622. "license": "MIT",
  1623. "engines": {
  1624. "node": ">=18"
  1625. },
  1626. "funding": {
  1627. "url": "https://github.com/sponsors/mesqueeb"
  1628. }
  1629. },
  1630. "node_modules/js-tokens": {
  1631. "version": "4.0.0",
  1632. "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
  1633. "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
  1634. "license": "MIT"
  1635. },
  1636. "node_modules/jsesc": {
  1637. "version": "3.1.0",
  1638. "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
  1639. "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
  1640. "license": "MIT",
  1641. "bin": {
  1642. "jsesc": "bin/jsesc"
  1643. },
  1644. "engines": {
  1645. "node": ">=6"
  1646. }
  1647. },
  1648. "node_modules/json5": {
  1649. "version": "2.2.3",
  1650. "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
  1651. "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
  1652. "license": "MIT",
  1653. "bin": {
  1654. "json5": "lib/cli.js"
  1655. },
  1656. "engines": {
  1657. "node": ">=6"
  1658. }
  1659. },
  1660. "node_modules/lightningcss": {
  1661. "version": "1.32.0",
  1662. "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
  1663. "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
  1664. "devOptional": true,
  1665. "license": "MPL-2.0",
  1666. "dependencies": {
  1667. "detect-libc": "^2.0.3"
  1668. },
  1669. "engines": {
  1670. "node": ">= 12.0.0"
  1671. },
  1672. "funding": {
  1673. "type": "opencollective",
  1674. "url": "https://opencollective.com/parcel"
  1675. },
  1676. "optionalDependencies": {
  1677. "lightningcss-android-arm64": "1.32.0",
  1678. "lightningcss-darwin-arm64": "1.32.0",
  1679. "lightningcss-darwin-x64": "1.32.0",
  1680. "lightningcss-freebsd-x64": "1.32.0",
  1681. "lightningcss-linux-arm-gnueabihf": "1.32.0",
  1682. "lightningcss-linux-arm64-gnu": "1.32.0",
  1683. "lightningcss-linux-arm64-musl": "1.32.0",
  1684. "lightningcss-linux-x64-gnu": "1.32.0",
  1685. "lightningcss-linux-x64-musl": "1.32.0",
  1686. "lightningcss-win32-arm64-msvc": "1.32.0",
  1687. "lightningcss-win32-x64-msvc": "1.32.0"
  1688. }
  1689. },
  1690. "node_modules/lightningcss-android-arm64": {
  1691. "version": "1.32.0",
  1692. "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
  1693. "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
  1694. "cpu": [
  1695. "arm64"
  1696. ],
  1697. "dev": true,
  1698. "license": "MPL-2.0",
  1699. "optional": true,
  1700. "os": [
  1701. "android"
  1702. ],
  1703. "engines": {
  1704. "node": ">= 12.0.0"
  1705. },
  1706. "funding": {
  1707. "type": "opencollective",
  1708. "url": "https://opencollective.com/parcel"
  1709. }
  1710. },
  1711. "node_modules/lightningcss-darwin-arm64": {
  1712. "version": "1.32.0",
  1713. "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
  1714. "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
  1715. "cpu": [
  1716. "arm64"
  1717. ],
  1718. "dev": true,
  1719. "license": "MPL-2.0",
  1720. "optional": true,
  1721. "os": [
  1722. "darwin"
  1723. ],
  1724. "engines": {
  1725. "node": ">= 12.0.0"
  1726. },
  1727. "funding": {
  1728. "type": "opencollective",
  1729. "url": "https://opencollective.com/parcel"
  1730. }
  1731. },
  1732. "node_modules/lightningcss-darwin-x64": {
  1733. "version": "1.32.0",
  1734. "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
  1735. "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
  1736. "cpu": [
  1737. "x64"
  1738. ],
  1739. "dev": true,
  1740. "license": "MPL-2.0",
  1741. "optional": true,
  1742. "os": [
  1743. "darwin"
  1744. ],
  1745. "engines": {
  1746. "node": ">= 12.0.0"
  1747. },
  1748. "funding": {
  1749. "type": "opencollective",
  1750. "url": "https://opencollective.com/parcel"
  1751. }
  1752. },
  1753. "node_modules/lightningcss-freebsd-x64": {
  1754. "version": "1.32.0",
  1755. "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
  1756. "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
  1757. "cpu": [
  1758. "x64"
  1759. ],
  1760. "dev": true,
  1761. "license": "MPL-2.0",
  1762. "optional": true,
  1763. "os": [
  1764. "freebsd"
  1765. ],
  1766. "engines": {
  1767. "node": ">= 12.0.0"
  1768. },
  1769. "funding": {
  1770. "type": "opencollective",
  1771. "url": "https://opencollective.com/parcel"
  1772. }
  1773. },
  1774. "node_modules/lightningcss-linux-arm-gnueabihf": {
  1775. "version": "1.32.0",
  1776. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
  1777. "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
  1778. "cpu": [
  1779. "arm"
  1780. ],
  1781. "dev": true,
  1782. "license": "MPL-2.0",
  1783. "optional": true,
  1784. "os": [
  1785. "linux"
  1786. ],
  1787. "engines": {
  1788. "node": ">= 12.0.0"
  1789. },
  1790. "funding": {
  1791. "type": "opencollective",
  1792. "url": "https://opencollective.com/parcel"
  1793. }
  1794. },
  1795. "node_modules/lightningcss-linux-arm64-gnu": {
  1796. "version": "1.32.0",
  1797. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
  1798. "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
  1799. "cpu": [
  1800. "arm64"
  1801. ],
  1802. "dev": true,
  1803. "license": "MPL-2.0",
  1804. "optional": true,
  1805. "os": [
  1806. "linux"
  1807. ],
  1808. "engines": {
  1809. "node": ">= 12.0.0"
  1810. },
  1811. "funding": {
  1812. "type": "opencollective",
  1813. "url": "https://opencollective.com/parcel"
  1814. }
  1815. },
  1816. "node_modules/lightningcss-linux-arm64-musl": {
  1817. "version": "1.32.0",
  1818. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
  1819. "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
  1820. "cpu": [
  1821. "arm64"
  1822. ],
  1823. "dev": true,
  1824. "license": "MPL-2.0",
  1825. "optional": true,
  1826. "os": [
  1827. "linux"
  1828. ],
  1829. "engines": {
  1830. "node": ">= 12.0.0"
  1831. },
  1832. "funding": {
  1833. "type": "opencollective",
  1834. "url": "https://opencollective.com/parcel"
  1835. }
  1836. },
  1837. "node_modules/lightningcss-linux-x64-gnu": {
  1838. "version": "1.32.0",
  1839. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
  1840. "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
  1841. "cpu": [
  1842. "x64"
  1843. ],
  1844. "dev": true,
  1845. "license": "MPL-2.0",
  1846. "optional": true,
  1847. "os": [
  1848. "linux"
  1849. ],
  1850. "engines": {
  1851. "node": ">= 12.0.0"
  1852. },
  1853. "funding": {
  1854. "type": "opencollective",
  1855. "url": "https://opencollective.com/parcel"
  1856. }
  1857. },
  1858. "node_modules/lightningcss-linux-x64-musl": {
  1859. "version": "1.32.0",
  1860. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
  1861. "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
  1862. "cpu": [
  1863. "x64"
  1864. ],
  1865. "dev": true,
  1866. "license": "MPL-2.0",
  1867. "optional": true,
  1868. "os": [
  1869. "linux"
  1870. ],
  1871. "engines": {
  1872. "node": ">= 12.0.0"
  1873. },
  1874. "funding": {
  1875. "type": "opencollective",
  1876. "url": "https://opencollective.com/parcel"
  1877. }
  1878. },
  1879. "node_modules/lightningcss-win32-arm64-msvc": {
  1880. "version": "1.32.0",
  1881. "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
  1882. "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
  1883. "cpu": [
  1884. "arm64"
  1885. ],
  1886. "dev": true,
  1887. "license": "MPL-2.0",
  1888. "optional": true,
  1889. "os": [
  1890. "win32"
  1891. ],
  1892. "engines": {
  1893. "node": ">= 12.0.0"
  1894. },
  1895. "funding": {
  1896. "type": "opencollective",
  1897. "url": "https://opencollective.com/parcel"
  1898. }
  1899. },
  1900. "node_modules/lightningcss-win32-x64-msvc": {
  1901. "version": "1.32.0",
  1902. "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
  1903. "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
  1904. "cpu": [
  1905. "x64"
  1906. ],
  1907. "dev": true,
  1908. "license": "MPL-2.0",
  1909. "optional": true,
  1910. "os": [
  1911. "win32"
  1912. ],
  1913. "engines": {
  1914. "node": ">= 12.0.0"
  1915. },
  1916. "funding": {
  1917. "type": "opencollective",
  1918. "url": "https://opencollective.com/parcel"
  1919. }
  1920. },
  1921. "node_modules/local-pkg": {
  1922. "version": "1.2.1",
  1923. "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-1.2.1.tgz",
  1924. "integrity": "sha512-++gUqRDEvcnN6Zhqrr+y/CkVEHhlrR96vZn3nZZPYzMcBUyBtTKzB9NadClFIsIVSsu+3i9tfk/erqy9kAmt7Q==",
  1925. "license": "MIT",
  1926. "dependencies": {
  1927. "mlly": "^1.7.4",
  1928. "pkg-types": "^2.3.0",
  1929. "quansync": "^0.2.11"
  1930. },
  1931. "engines": {
  1932. "node": ">=14"
  1933. },
  1934. "funding": {
  1935. "url": "https://github.com/sponsors/antfu"
  1936. }
  1937. },
  1938. "node_modules/lodash": {
  1939. "version": "4.18.1",
  1940. "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz",
  1941. "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
  1942. "license": "MIT"
  1943. },
  1944. "node_modules/lodash-es": {
  1945. "version": "4.18.1",
  1946. "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.18.1.tgz",
  1947. "integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
  1948. "license": "MIT"
  1949. },
  1950. "node_modules/loose-envify": {
  1951. "version": "1.4.0",
  1952. "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
  1953. "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
  1954. "license": "MIT",
  1955. "dependencies": {
  1956. "js-tokens": "^3.0.0 || ^4.0.0"
  1957. },
  1958. "bin": {
  1959. "loose-envify": "cli.js"
  1960. }
  1961. },
  1962. "node_modules/magic-string": {
  1963. "version": "0.30.21",
  1964. "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
  1965. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  1966. "license": "MIT",
  1967. "dependencies": {
  1968. "@jridgewell/sourcemap-codec": "^1.5.5"
  1969. }
  1970. },
  1971. "node_modules/magic-string-ast": {
  1972. "version": "1.0.3",
  1973. "resolved": "https://registry.npmjs.org/magic-string-ast/-/magic-string-ast-1.0.3.tgz",
  1974. "integrity": "sha512-CvkkH1i81zl7mmb94DsRiFeG9V2fR2JeuK8yDgS8oiZSFa++wWLEgZ5ufEOyLHbvSbD1gTRKv9NdX69Rnvr9JA==",
  1975. "license": "MIT",
  1976. "dependencies": {
  1977. "magic-string": "^0.30.19"
  1978. },
  1979. "engines": {
  1980. "node": ">=20.19.0"
  1981. },
  1982. "funding": {
  1983. "url": "https://github.com/sponsors/sxzz"
  1984. }
  1985. },
  1986. "node_modules/marked": {
  1987. "version": "18.0.6",
  1988. "resolved": "https://registry.npmjs.org/marked/-/marked-18.0.6.tgz",
  1989. "integrity": "sha512-MrV5puXBfuiy6wl6DLaq3BtIJQAJToAd5zt/ZKhRfGRAuFPALE7/4Y7jnxRQoEgK/pBgurGqLyAuRgZ2xOjr6w==",
  1990. "license": "MIT",
  1991. "bin": {
  1992. "marked": "bin/marked.js"
  1993. },
  1994. "engines": {
  1995. "node": ">= 20"
  1996. }
  1997. },
  1998. "node_modules/math-intrinsics": {
  1999. "version": "1.1.0",
  2000. "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  2001. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  2002. "license": "MIT",
  2003. "engines": {
  2004. "node": ">= 0.4"
  2005. }
  2006. },
  2007. "node_modules/mime-db": {
  2008. "version": "1.52.0",
  2009. "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
  2010. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  2011. "license": "MIT",
  2012. "engines": {
  2013. "node": ">= 0.6"
  2014. }
  2015. },
  2016. "node_modules/mime-types": {
  2017. "version": "2.1.35",
  2018. "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
  2019. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  2020. "license": "MIT",
  2021. "dependencies": {
  2022. "mime-db": "1.52.0"
  2023. },
  2024. "engines": {
  2025. "node": ">= 0.6"
  2026. }
  2027. },
  2028. "node_modules/mitt": {
  2029. "version": "3.0.1",
  2030. "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz",
  2031. "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
  2032. "license": "MIT"
  2033. },
  2034. "node_modules/mlly": {
  2035. "version": "1.8.2",
  2036. "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.8.2.tgz",
  2037. "integrity": "sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==",
  2038. "license": "MIT",
  2039. "dependencies": {
  2040. "acorn": "^8.16.0",
  2041. "pathe": "^2.0.3",
  2042. "pkg-types": "^1.3.1",
  2043. "ufo": "^1.6.3"
  2044. }
  2045. },
  2046. "node_modules/mlly/node_modules/confbox": {
  2047. "version": "0.1.8",
  2048. "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz",
  2049. "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==",
  2050. "license": "MIT"
  2051. },
  2052. "node_modules/mlly/node_modules/pkg-types": {
  2053. "version": "1.3.1",
  2054. "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz",
  2055. "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
  2056. "license": "MIT",
  2057. "dependencies": {
  2058. "confbox": "^0.1.8",
  2059. "mlly": "^1.7.4",
  2060. "pathe": "^2.0.1"
  2061. }
  2062. },
  2063. "node_modules/ms": {
  2064. "version": "2.1.3",
  2065. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
  2066. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  2067. "license": "MIT"
  2068. },
  2069. "node_modules/muggle-string": {
  2070. "version": "0.4.1",
  2071. "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.4.1.tgz",
  2072. "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
  2073. "license": "MIT"
  2074. },
  2075. "node_modules/nanoid": {
  2076. "version": "3.3.16",
  2077. "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
  2078. "integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
  2079. "funding": [
  2080. {
  2081. "type": "github",
  2082. "url": "https://github.com/sponsors/ai"
  2083. }
  2084. ],
  2085. "license": "MIT",
  2086. "bin": {
  2087. "nanoid": "bin/nanoid.cjs"
  2088. },
  2089. "engines": {
  2090. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2091. }
  2092. },
  2093. "node_modules/nanopop": {
  2094. "version": "2.4.2",
  2095. "resolved": "https://registry.npmjs.org/nanopop/-/nanopop-2.4.2.tgz",
  2096. "integrity": "sha512-NzOgmMQ+elxxHeIha+OG/Pv3Oc3p4RU2aBhwWwAqDpXrdTbtRylbRLQztLy8dMMwfl6pclznBdfUhccEn9ZIzw==",
  2097. "license": "MIT"
  2098. },
  2099. "node_modules/pathe": {
  2100. "version": "2.0.3",
  2101. "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
  2102. "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
  2103. "license": "MIT"
  2104. },
  2105. "node_modules/perfect-debounce": {
  2106. "version": "2.1.0",
  2107. "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-2.1.0.tgz",
  2108. "integrity": "sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==",
  2109. "license": "MIT"
  2110. },
  2111. "node_modules/picocolors": {
  2112. "version": "1.1.1",
  2113. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  2114. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2115. "license": "ISC"
  2116. },
  2117. "node_modules/picomatch": {
  2118. "version": "4.0.5",
  2119. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
  2120. "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
  2121. "license": "MIT",
  2122. "engines": {
  2123. "node": ">=12"
  2124. },
  2125. "funding": {
  2126. "url": "https://github.com/sponsors/jonschlinkert"
  2127. }
  2128. },
  2129. "node_modules/pinia": {
  2130. "version": "3.0.4",
  2131. "resolved": "https://registry.npmjs.org/pinia/-/pinia-3.0.4.tgz",
  2132. "integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
  2133. "license": "MIT",
  2134. "dependencies": {
  2135. "@vue/devtools-api": "^7.7.7"
  2136. },
  2137. "funding": {
  2138. "url": "https://github.com/sponsors/posva"
  2139. },
  2140. "peerDependencies": {
  2141. "typescript": ">=4.5.0",
  2142. "vue": "^3.5.11"
  2143. },
  2144. "peerDependenciesMeta": {
  2145. "typescript": {
  2146. "optional": true
  2147. }
  2148. }
  2149. },
  2150. "node_modules/pinia/node_modules/@vue/devtools-api": {
  2151. "version": "7.7.10",
  2152. "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.10.tgz",
  2153. "integrity": "sha512-KxtEpUOOpFz/qOGRrAwA36QF7DqIA+FXgCYit9mk9wjbaZt0sXOFz81ElOZtKA4HbWHUdwNjZHBFsFFyp5BZiA==",
  2154. "license": "MIT",
  2155. "dependencies": {
  2156. "@vue/devtools-kit": "^7.7.10"
  2157. }
  2158. },
  2159. "node_modules/pinia/node_modules/@vue/devtools-kit": {
  2160. "version": "7.7.10",
  2161. "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.10.tgz",
  2162. "integrity": "sha512-3WNi2Kq4tbpVbmhml7RiphmAt0279oh3fKNeWMQIrltfX8Q91b4i5PL8DtyNKdwmcsGrV4fg+erwWOmD05CLIw==",
  2163. "license": "MIT",
  2164. "dependencies": {
  2165. "@vue/devtools-shared": "^7.7.10",
  2166. "birpc": "^2.3.0",
  2167. "hookable": "^5.5.3",
  2168. "mitt": "^3.0.1",
  2169. "perfect-debounce": "^1.0.0",
  2170. "speakingurl": "^14.0.1",
  2171. "superjson": "^2.2.2"
  2172. }
  2173. },
  2174. "node_modules/pinia/node_modules/@vue/devtools-shared": {
  2175. "version": "7.7.10",
  2176. "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.10.tgz",
  2177. "integrity": "sha512-wOPslzB8vTvpxwdaOcR2qAbwmuSP0L+rhpoC6Cf56V3Jip+HWb7PQQXOUPgBNQARpXsbQX/+mvi8kKucmBGRwQ==",
  2178. "license": "MIT",
  2179. "dependencies": {
  2180. "rfdc": "^1.4.1"
  2181. }
  2182. },
  2183. "node_modules/pinia/node_modules/perfect-debounce": {
  2184. "version": "1.0.0",
  2185. "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
  2186. "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
  2187. "license": "MIT"
  2188. },
  2189. "node_modules/pkg-types": {
  2190. "version": "2.3.1",
  2191. "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-2.3.1.tgz",
  2192. "integrity": "sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg==",
  2193. "license": "MIT",
  2194. "dependencies": {
  2195. "confbox": "^0.2.4",
  2196. "exsolve": "^1.0.8",
  2197. "pathe": "^2.0.3"
  2198. }
  2199. },
  2200. "node_modules/postcss": {
  2201. "version": "8.5.19",
  2202. "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.19.tgz",
  2203. "integrity": "sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==",
  2204. "funding": [
  2205. {
  2206. "type": "opencollective",
  2207. "url": "https://opencollective.com/postcss/"
  2208. },
  2209. {
  2210. "type": "tidelift",
  2211. "url": "https://tidelift.com/funding/github/npm/postcss"
  2212. },
  2213. {
  2214. "type": "github",
  2215. "url": "https://github.com/sponsors/ai"
  2216. }
  2217. ],
  2218. "license": "MIT",
  2219. "dependencies": {
  2220. "nanoid": "^3.3.12",
  2221. "picocolors": "^1.1.1",
  2222. "source-map-js": "^1.2.1"
  2223. },
  2224. "engines": {
  2225. "node": "^10 || ^12 || >=14"
  2226. }
  2227. },
  2228. "node_modules/proxy-from-env": {
  2229. "version": "2.1.0",
  2230. "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
  2231. "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
  2232. "license": "MIT",
  2233. "engines": {
  2234. "node": ">=10"
  2235. }
  2236. },
  2237. "node_modules/quansync": {
  2238. "version": "0.2.11",
  2239. "resolved": "https://registry.npmjs.org/quansync/-/quansync-0.2.11.tgz",
  2240. "integrity": "sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==",
  2241. "funding": [
  2242. {
  2243. "type": "individual",
  2244. "url": "https://github.com/sponsors/antfu"
  2245. },
  2246. {
  2247. "type": "individual",
  2248. "url": "https://github.com/sponsors/sxzz"
  2249. }
  2250. ],
  2251. "license": "MIT"
  2252. },
  2253. "node_modules/readdirp": {
  2254. "version": "5.0.0",
  2255. "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-5.0.0.tgz",
  2256. "integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==",
  2257. "license": "MIT",
  2258. "engines": {
  2259. "node": ">= 20.19.0"
  2260. },
  2261. "funding": {
  2262. "type": "individual",
  2263. "url": "https://paulmillr.com/funding/"
  2264. }
  2265. },
  2266. "node_modules/resize-observer-polyfill": {
  2267. "version": "1.5.1",
  2268. "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz",
  2269. "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==",
  2270. "license": "MIT"
  2271. },
  2272. "node_modules/rfdc": {
  2273. "version": "1.4.1",
  2274. "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
  2275. "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
  2276. "license": "MIT"
  2277. },
  2278. "node_modules/rolldown": {
  2279. "version": "1.1.5",
  2280. "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.1.5.tgz",
  2281. "integrity": "sha512-t9z29cJjXf/vxQ8dyhCSpt6H6aSwHTk8cT5I3iy6SMXuFpk5mB6PL6XfC8PCwrPTx93udwKUm9HRteAlTGBLiA==",
  2282. "devOptional": true,
  2283. "license": "MIT",
  2284. "dependencies": {
  2285. "@oxc-project/types": "=0.139.0",
  2286. "@rolldown/pluginutils": "^1.0.0"
  2287. },
  2288. "bin": {
  2289. "rolldown": "bin/cli.mjs"
  2290. },
  2291. "engines": {
  2292. "node": "^20.19.0 || >=22.12.0"
  2293. },
  2294. "optionalDependencies": {
  2295. "@rolldown/binding-android-arm64": "1.1.5",
  2296. "@rolldown/binding-darwin-arm64": "1.1.5",
  2297. "@rolldown/binding-darwin-x64": "1.1.5",
  2298. "@rolldown/binding-freebsd-x64": "1.1.5",
  2299. "@rolldown/binding-linux-arm-gnueabihf": "1.1.5",
  2300. "@rolldown/binding-linux-arm64-gnu": "1.1.5",
  2301. "@rolldown/binding-linux-arm64-musl": "1.1.5",
  2302. "@rolldown/binding-linux-ppc64-gnu": "1.1.5",
  2303. "@rolldown/binding-linux-s390x-gnu": "1.1.5",
  2304. "@rolldown/binding-linux-x64-gnu": "1.1.5",
  2305. "@rolldown/binding-linux-x64-musl": "1.1.5",
  2306. "@rolldown/binding-openharmony-arm64": "1.1.5",
  2307. "@rolldown/binding-wasm32-wasi": "1.1.5",
  2308. "@rolldown/binding-win32-arm64-msvc": "1.1.5",
  2309. "@rolldown/binding-win32-x64-msvc": "1.1.5"
  2310. }
  2311. },
  2312. "node_modules/scroll-into-view-if-needed": {
  2313. "version": "2.2.31",
  2314. "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.31.tgz",
  2315. "integrity": "sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==",
  2316. "license": "MIT",
  2317. "dependencies": {
  2318. "compute-scroll-into-view": "^1.0.20"
  2319. }
  2320. },
  2321. "node_modules/scule": {
  2322. "version": "1.3.0",
  2323. "resolved": "https://registry.npmjs.org/scule/-/scule-1.3.0.tgz",
  2324. "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==",
  2325. "license": "MIT"
  2326. },
  2327. "node_modules/shallow-equal": {
  2328. "version": "1.2.1",
  2329. "resolved": "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz",
  2330. "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==",
  2331. "license": "MIT"
  2332. },
  2333. "node_modules/source-map-js": {
  2334. "version": "1.2.1",
  2335. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  2336. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2337. "license": "BSD-3-Clause",
  2338. "engines": {
  2339. "node": ">=0.10.0"
  2340. }
  2341. },
  2342. "node_modules/speakingurl": {
  2343. "version": "14.0.1",
  2344. "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz",
  2345. "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
  2346. "license": "BSD-3-Clause",
  2347. "engines": {
  2348. "node": ">=0.10.0"
  2349. }
  2350. },
  2351. "node_modules/state-local": {
  2352. "version": "1.0.7",
  2353. "resolved": "https://registry.npmjs.org/state-local/-/state-local-1.0.7.tgz",
  2354. "integrity": "sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==",
  2355. "license": "MIT"
  2356. },
  2357. "node_modules/stylis": {
  2358. "version": "4.4.0",
  2359. "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.4.0.tgz",
  2360. "integrity": "sha512-5Z9ZpRzfuH6l/UAvCPAPUo3665Nk2wLaZU3x+TLHKVzIz33+sbJqbtrYoC3KD4/uVOr2Zp+L0LySezP9OHV9yA==",
  2361. "license": "MIT"
  2362. },
  2363. "node_modules/superjson": {
  2364. "version": "2.2.6",
  2365. "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.6.tgz",
  2366. "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
  2367. "license": "MIT",
  2368. "dependencies": {
  2369. "copy-anything": "^4"
  2370. },
  2371. "engines": {
  2372. "node": ">=16"
  2373. }
  2374. },
  2375. "node_modules/throttle-debounce": {
  2376. "version": "5.0.2",
  2377. "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-5.0.2.tgz",
  2378. "integrity": "sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==",
  2379. "license": "MIT",
  2380. "engines": {
  2381. "node": ">=12.22"
  2382. }
  2383. },
  2384. "node_modules/tinyglobby": {
  2385. "version": "0.2.17",
  2386. "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
  2387. "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
  2388. "license": "MIT",
  2389. "dependencies": {
  2390. "fdir": "^6.5.0",
  2391. "picomatch": "^4.0.4"
  2392. },
  2393. "engines": {
  2394. "node": ">=12.0.0"
  2395. },
  2396. "funding": {
  2397. "url": "https://github.com/sponsors/SuperchupuDev"
  2398. }
  2399. },
  2400. "node_modules/tslib": {
  2401. "version": "2.8.1",
  2402. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
  2403. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  2404. "dev": true,
  2405. "license": "0BSD",
  2406. "optional": true
  2407. },
  2408. "node_modules/typescript": {
  2409. "version": "6.0.3",
  2410. "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
  2411. "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
  2412. "devOptional": true,
  2413. "license": "Apache-2.0",
  2414. "bin": {
  2415. "tsc": "bin/tsc",
  2416. "tsserver": "bin/tsserver"
  2417. },
  2418. "engines": {
  2419. "node": ">=14.17"
  2420. }
  2421. },
  2422. "node_modules/ufo": {
  2423. "version": "1.6.4",
  2424. "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.6.4.tgz",
  2425. "integrity": "sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==",
  2426. "license": "MIT"
  2427. },
  2428. "node_modules/unplugin": {
  2429. "version": "3.3.0",
  2430. "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-3.3.0.tgz",
  2431. "integrity": "sha512-qa66K+crbfyE6JK10GjvbJeRrOsuC/JpbnHctfyp/i4oBTxWOzJfRZyDiOk1PtErMFRu8JhsU/wPvOdBNWe5Rg==",
  2432. "license": "MIT",
  2433. "dependencies": {
  2434. "@jridgewell/remapping": "^2.3.5",
  2435. "picomatch": "^4.0.4",
  2436. "webpack-virtual-modules": "^0.6.2"
  2437. },
  2438. "engines": {
  2439. "node": "^20.19.0 || >=22.12.0"
  2440. },
  2441. "peerDependencies": {
  2442. "@farmfe/core": "*",
  2443. "@rspack/core": "*",
  2444. "bun-types-no-globals": "*",
  2445. "esbuild": "*",
  2446. "rolldown": "*",
  2447. "rollup": "*",
  2448. "unloader": "*",
  2449. "vite": "*",
  2450. "webpack": "*"
  2451. },
  2452. "peerDependenciesMeta": {
  2453. "@farmfe/core": {
  2454. "optional": true
  2455. },
  2456. "@rspack/core": {
  2457. "optional": true
  2458. },
  2459. "bun-types-no-globals": {
  2460. "optional": true
  2461. },
  2462. "esbuild": {
  2463. "optional": true
  2464. },
  2465. "rolldown": {
  2466. "optional": true
  2467. },
  2468. "rollup": {
  2469. "optional": true
  2470. },
  2471. "unloader": {
  2472. "optional": true
  2473. },
  2474. "vite": {
  2475. "optional": true
  2476. },
  2477. "webpack": {
  2478. "optional": true
  2479. }
  2480. }
  2481. },
  2482. "node_modules/unplugin-utils": {
  2483. "version": "0.3.2",
  2484. "resolved": "https://registry.npmjs.org/unplugin-utils/-/unplugin-utils-0.3.2.tgz",
  2485. "integrity": "sha512-xVToRh2CTmLk2HnEG7ac4rl1MJTT3RFkpS8B++/SnB0kXvuaavD+n3m/vrzyWQOdJNSZQACnbz01pnppbwV5BA==",
  2486. "license": "MIT",
  2487. "dependencies": {
  2488. "pathe": "^2.0.3",
  2489. "picomatch": "^4.0.4"
  2490. },
  2491. "engines": {
  2492. "node": ">=20.19.0"
  2493. },
  2494. "funding": {
  2495. "url": "https://github.com/sponsors/sxzz"
  2496. }
  2497. },
  2498. "node_modules/vite": {
  2499. "version": "8.1.4",
  2500. "resolved": "https://registry.npmjs.org/vite/-/vite-8.1.4.tgz",
  2501. "integrity": "sha512-bTT9PsdWO+MQMNG9ZXIP/qM9wGh37DFxTV/sPq9cFpHr3w4jkgef032PkAL9jAqhk3Nz8NQw3O8n6/xFkqO4QQ==",
  2502. "devOptional": true,
  2503. "license": "MIT",
  2504. "dependencies": {
  2505. "lightningcss": "^1.32.0",
  2506. "picomatch": "^4.0.5",
  2507. "postcss": "^8.5.16",
  2508. "rolldown": "~1.1.4",
  2509. "tinyglobby": "^0.2.17"
  2510. },
  2511. "bin": {
  2512. "vite": "bin/vite.js"
  2513. },
  2514. "engines": {
  2515. "node": "^20.19.0 || >=22.12.0"
  2516. },
  2517. "funding": {
  2518. "url": "https://github.com/vitejs/vite?sponsor=1"
  2519. },
  2520. "optionalDependencies": {
  2521. "fsevents": "~2.3.3"
  2522. },
  2523. "peerDependencies": {
  2524. "@types/node": "^20.19.0 || >=22.12.0",
  2525. "@vitejs/devtools": "^0.3.0",
  2526. "esbuild": "^0.27.0 || ^0.28.0",
  2527. "jiti": ">=1.21.0",
  2528. "less": "^4.0.0",
  2529. "sass": "^1.70.0",
  2530. "sass-embedded": "^1.70.0",
  2531. "stylus": ">=0.54.8",
  2532. "sugarss": "^5.0.0",
  2533. "terser": "^5.16.0",
  2534. "tsx": "^4.8.1",
  2535. "yaml": "^2.4.2"
  2536. },
  2537. "peerDependenciesMeta": {
  2538. "@types/node": {
  2539. "optional": true
  2540. },
  2541. "@vitejs/devtools": {
  2542. "optional": true
  2543. },
  2544. "esbuild": {
  2545. "optional": true
  2546. },
  2547. "jiti": {
  2548. "optional": true
  2549. },
  2550. "less": {
  2551. "optional": true
  2552. },
  2553. "sass": {
  2554. "optional": true
  2555. },
  2556. "sass-embedded": {
  2557. "optional": true
  2558. },
  2559. "stylus": {
  2560. "optional": true
  2561. },
  2562. "sugarss": {
  2563. "optional": true
  2564. },
  2565. "terser": {
  2566. "optional": true
  2567. },
  2568. "tsx": {
  2569. "optional": true
  2570. },
  2571. "yaml": {
  2572. "optional": true
  2573. }
  2574. }
  2575. },
  2576. "node_modules/vue": {
  2577. "version": "3.5.39",
  2578. "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.39.tgz",
  2579. "integrity": "sha512-xmZCYabFGcirU8r0fTuvl/LICc1OU620rnqepaJDL/a141ZigkG7AyaxQLdqJ02ZRYzWe6YPaDHeQx7MfknQfA==",
  2580. "license": "MIT",
  2581. "peer": true,
  2582. "dependencies": {
  2583. "@vue/compiler-dom": "3.5.39",
  2584. "@vue/compiler-sfc": "3.5.39",
  2585. "@vue/runtime-dom": "3.5.39",
  2586. "@vue/server-renderer": "3.5.39",
  2587. "@vue/shared": "3.5.39"
  2588. },
  2589. "peerDependencies": {
  2590. "typescript": "*"
  2591. },
  2592. "peerDependenciesMeta": {
  2593. "typescript": {
  2594. "optional": true
  2595. }
  2596. }
  2597. },
  2598. "node_modules/vue-chartjs": {
  2599. "version": "5.3.4",
  2600. "resolved": "https://registry.npmjs.org/vue-chartjs/-/vue-chartjs-5.3.4.tgz",
  2601. "integrity": "sha512-x3Fqob8RQvrTdssfi9ecsCzEkFOd8JPmNwSkSQzdfKj/uBsRJs/Y88cZcZIEcPsTVfMGwMo4MOoihoDG2DoE/g==",
  2602. "license": "MIT",
  2603. "peerDependencies": {
  2604. "chart.js": "^4.1.1",
  2605. "vue": "^3.0.0-0 || ^2.7.0"
  2606. }
  2607. },
  2608. "node_modules/vue-router": {
  2609. "version": "5.1.0",
  2610. "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-5.1.0.tgz",
  2611. "integrity": "sha512-HAbiLzLEHQwxPgvsbOJDAwtavszEgLwri6XfyrsPECIFez8+59xc9LofWVdc/HEaSRT822lJ8H9Ns38VVond5g==",
  2612. "license": "MIT",
  2613. "dependencies": {
  2614. "@babel/generator": "^8.0.0-rc.4",
  2615. "@vue-macros/common": "^3.1.1",
  2616. "@vue/devtools-api": "^8.1.2",
  2617. "ast-walker-scope": "^0.9.0",
  2618. "chokidar": "^5.0.0",
  2619. "json5": "^2.2.3",
  2620. "local-pkg": "^1.1.2",
  2621. "magic-string": "^0.30.21",
  2622. "mlly": "^1.8.2",
  2623. "muggle-string": "^0.4.1",
  2624. "pathe": "^2.0.3",
  2625. "picomatch": "^4.0.3",
  2626. "scule": "^1.3.0",
  2627. "tinyglobby": "^0.2.16",
  2628. "unplugin": "^3.0.0",
  2629. "unplugin-utils": "^0.3.1",
  2630. "yaml": "^2.9.0"
  2631. },
  2632. "funding": {
  2633. "url": "https://github.com/sponsors/posva"
  2634. },
  2635. "peerDependencies": {
  2636. "@pinia/colada": ">=0.21.2",
  2637. "@vue/compiler-sfc": "^3.5.34",
  2638. "pinia": "^3.0.4",
  2639. "vite": "^7.0.0 || ^8.0.0",
  2640. "vue": "^3.5.34"
  2641. },
  2642. "peerDependenciesMeta": {
  2643. "@pinia/colada": {
  2644. "optional": true
  2645. },
  2646. "@vue/compiler-sfc": {
  2647. "optional": true
  2648. },
  2649. "pinia": {
  2650. "optional": true
  2651. },
  2652. "vite": {
  2653. "optional": true
  2654. }
  2655. }
  2656. },
  2657. "node_modules/vue-types": {
  2658. "version": "3.0.2",
  2659. "resolved": "https://registry.npmjs.org/vue-types/-/vue-types-3.0.2.tgz",
  2660. "integrity": "sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==",
  2661. "license": "MIT",
  2662. "dependencies": {
  2663. "is-plain-object": "3.0.1"
  2664. },
  2665. "engines": {
  2666. "node": ">=10.15.0"
  2667. },
  2668. "peerDependencies": {
  2669. "vue": "^3.0.0"
  2670. }
  2671. },
  2672. "node_modules/warning": {
  2673. "version": "4.0.3",
  2674. "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
  2675. "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
  2676. "license": "MIT",
  2677. "dependencies": {
  2678. "loose-envify": "^1.0.0"
  2679. }
  2680. },
  2681. "node_modules/webpack-virtual-modules": {
  2682. "version": "0.6.2",
  2683. "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
  2684. "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
  2685. "license": "MIT"
  2686. },
  2687. "node_modules/yaml": {
  2688. "version": "2.9.0",
  2689. "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.9.0.tgz",
  2690. "integrity": "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==",
  2691. "license": "ISC",
  2692. "bin": {
  2693. "yaml": "bin.mjs"
  2694. },
  2695. "engines": {
  2696. "node": ">= 14.6"
  2697. },
  2698. "funding": {
  2699. "url": "https://github.com/sponsors/eemeli"
  2700. }
  2701. }
  2702. }
  2703. }