package-lock.json 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432
  1. {
  2. "name": "admindata",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "admindata",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "@element-plus/icons-vue": "^2.3.1",
  12. "@tsparticles/slim": "^3.9.1",
  13. "@tsparticles/vue3": "^3.0.1",
  14. "@vueuse/core": "^14.3.0",
  15. "axios": "^1.9.0",
  16. "dom-to-image": "^2.6.0",
  17. "echarts": "^6.1.0",
  18. "element-plus": "^2.9.11",
  19. "jsencrypt": "^3.5.4",
  20. "jspdf": "^4.2.1",
  21. "lodash-es": "^4.18.1",
  22. "pinia": "^3.0.4",
  23. "vue": "^3.5.13",
  24. "vue-router": "^4.5.1",
  25. "vuex": "^4.1.0"
  26. },
  27. "devDependencies": {
  28. "@tsconfig/node20": "^20.1.9",
  29. "@types/dom-to-image": "^2.6.7",
  30. "@types/node": "^22.15.26",
  31. "@vitejs/plugin-vue": "^5.2.3",
  32. "@vue/tsconfig": "^0.7.0",
  33. "sass": "^1.89.0",
  34. "sass-loader": "^16.0.5",
  35. "typescript": "~5.8.3",
  36. "vite": "^6.3.5",
  37. "vue-tsc": "^2.2.8"
  38. }
  39. },
  40. "node_modules/@babel/helper-string-parser": {
  41. "version": "7.27.1",
  42. "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  43. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  44. "license": "MIT",
  45. "engines": {
  46. "node": ">=6.9.0"
  47. }
  48. },
  49. "node_modules/@babel/helper-validator-identifier": {
  50. "version": "7.28.5",
  51. "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  52. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  53. "license": "MIT",
  54. "engines": {
  55. "node": ">=6.9.0"
  56. }
  57. },
  58. "node_modules/@babel/parser": {
  59. "version": "7.29.3",
  60. "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.3.tgz",
  61. "integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==",
  62. "license": "MIT",
  63. "dependencies": {
  64. "@babel/types": "^7.29.0"
  65. },
  66. "bin": {
  67. "parser": "bin/babel-parser.js"
  68. },
  69. "engines": {
  70. "node": ">=6.0.0"
  71. }
  72. },
  73. "node_modules/@babel/runtime": {
  74. "version": "7.29.7",
  75. "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
  76. "integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
  77. "engines": {
  78. "node": ">=6.9.0"
  79. }
  80. },
  81. "node_modules/@babel/types": {
  82. "version": "7.29.0",
  83. "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.0.tgz",
  84. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  85. "license": "MIT",
  86. "dependencies": {
  87. "@babel/helper-string-parser": "^7.27.1",
  88. "@babel/helper-validator-identifier": "^7.28.5"
  89. },
  90. "engines": {
  91. "node": ">=6.9.0"
  92. }
  93. },
  94. "node_modules/@ctrl/tinycolor": {
  95. "version": "4.2.0",
  96. "resolved": "https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-4.2.0.tgz",
  97. "integrity": "sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==",
  98. "license": "MIT",
  99. "engines": {
  100. "node": ">=14"
  101. }
  102. },
  103. "node_modules/@element-plus/icons-vue": {
  104. "version": "2.3.2",
  105. "resolved": "https://registry.npmmirror.com/@element-plus/icons-vue/-/icons-vue-2.3.2.tgz",
  106. "integrity": "sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==",
  107. "license": "MIT",
  108. "peerDependencies": {
  109. "vue": "^3.2.0"
  110. }
  111. },
  112. "node_modules/@esbuild/aix-ppc64": {
  113. "version": "0.25.12",
  114. "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
  115. "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
  116. "cpu": [
  117. "ppc64"
  118. ],
  119. "dev": true,
  120. "license": "MIT",
  121. "optional": true,
  122. "os": [
  123. "aix"
  124. ],
  125. "engines": {
  126. "node": ">=18"
  127. }
  128. },
  129. "node_modules/@esbuild/android-arm": {
  130. "version": "0.25.12",
  131. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
  132. "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
  133. "cpu": [
  134. "arm"
  135. ],
  136. "dev": true,
  137. "license": "MIT",
  138. "optional": true,
  139. "os": [
  140. "android"
  141. ],
  142. "engines": {
  143. "node": ">=18"
  144. }
  145. },
  146. "node_modules/@esbuild/android-arm64": {
  147. "version": "0.25.12",
  148. "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
  149. "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
  150. "cpu": [
  151. "arm64"
  152. ],
  153. "dev": true,
  154. "license": "MIT",
  155. "optional": true,
  156. "os": [
  157. "android"
  158. ],
  159. "engines": {
  160. "node": ">=18"
  161. }
  162. },
  163. "node_modules/@esbuild/android-x64": {
  164. "version": "0.25.12",
  165. "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
  166. "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
  167. "cpu": [
  168. "x64"
  169. ],
  170. "dev": true,
  171. "license": "MIT",
  172. "optional": true,
  173. "os": [
  174. "android"
  175. ],
  176. "engines": {
  177. "node": ">=18"
  178. }
  179. },
  180. "node_modules/@esbuild/darwin-arm64": {
  181. "version": "0.25.12",
  182. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
  183. "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
  184. "cpu": [
  185. "arm64"
  186. ],
  187. "dev": true,
  188. "license": "MIT",
  189. "optional": true,
  190. "os": [
  191. "darwin"
  192. ],
  193. "engines": {
  194. "node": ">=18"
  195. }
  196. },
  197. "node_modules/@esbuild/darwin-x64": {
  198. "version": "0.25.12",
  199. "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
  200. "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
  201. "cpu": [
  202. "x64"
  203. ],
  204. "dev": true,
  205. "license": "MIT",
  206. "optional": true,
  207. "os": [
  208. "darwin"
  209. ],
  210. "engines": {
  211. "node": ">=18"
  212. }
  213. },
  214. "node_modules/@esbuild/freebsd-arm64": {
  215. "version": "0.25.12",
  216. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
  217. "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
  218. "cpu": [
  219. "arm64"
  220. ],
  221. "dev": true,
  222. "license": "MIT",
  223. "optional": true,
  224. "os": [
  225. "freebsd"
  226. ],
  227. "engines": {
  228. "node": ">=18"
  229. }
  230. },
  231. "node_modules/@esbuild/freebsd-x64": {
  232. "version": "0.25.12",
  233. "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
  234. "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
  235. "cpu": [
  236. "x64"
  237. ],
  238. "dev": true,
  239. "license": "MIT",
  240. "optional": true,
  241. "os": [
  242. "freebsd"
  243. ],
  244. "engines": {
  245. "node": ">=18"
  246. }
  247. },
  248. "node_modules/@esbuild/linux-arm": {
  249. "version": "0.25.12",
  250. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
  251. "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
  252. "cpu": [
  253. "arm"
  254. ],
  255. "dev": true,
  256. "license": "MIT",
  257. "optional": true,
  258. "os": [
  259. "linux"
  260. ],
  261. "engines": {
  262. "node": ">=18"
  263. }
  264. },
  265. "node_modules/@esbuild/linux-arm64": {
  266. "version": "0.25.12",
  267. "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
  268. "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
  269. "cpu": [
  270. "arm64"
  271. ],
  272. "dev": true,
  273. "license": "MIT",
  274. "optional": true,
  275. "os": [
  276. "linux"
  277. ],
  278. "engines": {
  279. "node": ">=18"
  280. }
  281. },
  282. "node_modules/@esbuild/linux-ia32": {
  283. "version": "0.25.12",
  284. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
  285. "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
  286. "cpu": [
  287. "ia32"
  288. ],
  289. "dev": true,
  290. "license": "MIT",
  291. "optional": true,
  292. "os": [
  293. "linux"
  294. ],
  295. "engines": {
  296. "node": ">=18"
  297. }
  298. },
  299. "node_modules/@esbuild/linux-loong64": {
  300. "version": "0.25.12",
  301. "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
  302. "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
  303. "cpu": [
  304. "loong64"
  305. ],
  306. "dev": true,
  307. "license": "MIT",
  308. "optional": true,
  309. "os": [
  310. "linux"
  311. ],
  312. "engines": {
  313. "node": ">=18"
  314. }
  315. },
  316. "node_modules/@esbuild/linux-mips64el": {
  317. "version": "0.25.12",
  318. "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
  319. "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
  320. "cpu": [
  321. "mips64el"
  322. ],
  323. "dev": true,
  324. "license": "MIT",
  325. "optional": true,
  326. "os": [
  327. "linux"
  328. ],
  329. "engines": {
  330. "node": ">=18"
  331. }
  332. },
  333. "node_modules/@esbuild/linux-ppc64": {
  334. "version": "0.25.12",
  335. "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
  336. "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
  337. "cpu": [
  338. "ppc64"
  339. ],
  340. "dev": true,
  341. "license": "MIT",
  342. "optional": true,
  343. "os": [
  344. "linux"
  345. ],
  346. "engines": {
  347. "node": ">=18"
  348. }
  349. },
  350. "node_modules/@esbuild/linux-riscv64": {
  351. "version": "0.25.12",
  352. "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
  353. "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
  354. "cpu": [
  355. "riscv64"
  356. ],
  357. "dev": true,
  358. "license": "MIT",
  359. "optional": true,
  360. "os": [
  361. "linux"
  362. ],
  363. "engines": {
  364. "node": ">=18"
  365. }
  366. },
  367. "node_modules/@esbuild/linux-s390x": {
  368. "version": "0.25.12",
  369. "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
  370. "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
  371. "cpu": [
  372. "s390x"
  373. ],
  374. "dev": true,
  375. "license": "MIT",
  376. "optional": true,
  377. "os": [
  378. "linux"
  379. ],
  380. "engines": {
  381. "node": ">=18"
  382. }
  383. },
  384. "node_modules/@esbuild/linux-x64": {
  385. "version": "0.25.12",
  386. "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
  387. "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
  388. "cpu": [
  389. "x64"
  390. ],
  391. "dev": true,
  392. "license": "MIT",
  393. "optional": true,
  394. "os": [
  395. "linux"
  396. ],
  397. "engines": {
  398. "node": ">=18"
  399. }
  400. },
  401. "node_modules/@esbuild/netbsd-arm64": {
  402. "version": "0.25.12",
  403. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
  404. "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
  405. "cpu": [
  406. "arm64"
  407. ],
  408. "dev": true,
  409. "license": "MIT",
  410. "optional": true,
  411. "os": [
  412. "netbsd"
  413. ],
  414. "engines": {
  415. "node": ">=18"
  416. }
  417. },
  418. "node_modules/@esbuild/netbsd-x64": {
  419. "version": "0.25.12",
  420. "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
  421. "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
  422. "cpu": [
  423. "x64"
  424. ],
  425. "dev": true,
  426. "license": "MIT",
  427. "optional": true,
  428. "os": [
  429. "netbsd"
  430. ],
  431. "engines": {
  432. "node": ">=18"
  433. }
  434. },
  435. "node_modules/@esbuild/openbsd-arm64": {
  436. "version": "0.25.12",
  437. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
  438. "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
  439. "cpu": [
  440. "arm64"
  441. ],
  442. "dev": true,
  443. "license": "MIT",
  444. "optional": true,
  445. "os": [
  446. "openbsd"
  447. ],
  448. "engines": {
  449. "node": ">=18"
  450. }
  451. },
  452. "node_modules/@esbuild/openbsd-x64": {
  453. "version": "0.25.12",
  454. "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
  455. "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
  456. "cpu": [
  457. "x64"
  458. ],
  459. "dev": true,
  460. "license": "MIT",
  461. "optional": true,
  462. "os": [
  463. "openbsd"
  464. ],
  465. "engines": {
  466. "node": ">=18"
  467. }
  468. },
  469. "node_modules/@esbuild/openharmony-arm64": {
  470. "version": "0.25.12",
  471. "resolved": "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
  472. "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
  473. "cpu": [
  474. "arm64"
  475. ],
  476. "dev": true,
  477. "license": "MIT",
  478. "optional": true,
  479. "os": [
  480. "openharmony"
  481. ],
  482. "engines": {
  483. "node": ">=18"
  484. }
  485. },
  486. "node_modules/@esbuild/sunos-x64": {
  487. "version": "0.25.12",
  488. "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
  489. "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
  490. "cpu": [
  491. "x64"
  492. ],
  493. "dev": true,
  494. "license": "MIT",
  495. "optional": true,
  496. "os": [
  497. "sunos"
  498. ],
  499. "engines": {
  500. "node": ">=18"
  501. }
  502. },
  503. "node_modules/@esbuild/win32-arm64": {
  504. "version": "0.25.12",
  505. "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
  506. "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
  507. "cpu": [
  508. "arm64"
  509. ],
  510. "dev": true,
  511. "license": "MIT",
  512. "optional": true,
  513. "os": [
  514. "win32"
  515. ],
  516. "engines": {
  517. "node": ">=18"
  518. }
  519. },
  520. "node_modules/@esbuild/win32-ia32": {
  521. "version": "0.25.12",
  522. "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
  523. "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
  524. "cpu": [
  525. "ia32"
  526. ],
  527. "dev": true,
  528. "license": "MIT",
  529. "optional": true,
  530. "os": [
  531. "win32"
  532. ],
  533. "engines": {
  534. "node": ">=18"
  535. }
  536. },
  537. "node_modules/@esbuild/win32-x64": {
  538. "version": "0.25.12",
  539. "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
  540. "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
  541. "cpu": [
  542. "x64"
  543. ],
  544. "dev": true,
  545. "license": "MIT",
  546. "optional": true,
  547. "os": [
  548. "win32"
  549. ],
  550. "engines": {
  551. "node": ">=18"
  552. }
  553. },
  554. "node_modules/@floating-ui/core": {
  555. "version": "1.7.5",
  556. "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.7.5.tgz",
  557. "integrity": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==",
  558. "license": "MIT",
  559. "dependencies": {
  560. "@floating-ui/utils": "^0.2.11"
  561. }
  562. },
  563. "node_modules/@floating-ui/dom": {
  564. "version": "1.7.6",
  565. "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.7.6.tgz",
  566. "integrity": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==",
  567. "license": "MIT",
  568. "dependencies": {
  569. "@floating-ui/core": "^1.7.5",
  570. "@floating-ui/utils": "^0.2.11"
  571. }
  572. },
  573. "node_modules/@floating-ui/utils": {
  574. "version": "0.2.11",
  575. "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.11.tgz",
  576. "integrity": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==",
  577. "license": "MIT"
  578. },
  579. "node_modules/@jridgewell/sourcemap-codec": {
  580. "version": "1.5.5",
  581. "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  582. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  583. "license": "MIT"
  584. },
  585. "node_modules/@parcel/watcher": {
  586. "version": "2.5.6",
  587. "resolved": "https://registry.npmmirror.com/@parcel/watcher/-/watcher-2.5.6.tgz",
  588. "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==",
  589. "dev": true,
  590. "hasInstallScript": true,
  591. "license": "MIT",
  592. "optional": true,
  593. "dependencies": {
  594. "detect-libc": "^2.0.3",
  595. "is-glob": "^4.0.3",
  596. "node-addon-api": "^7.0.0",
  597. "picomatch": "^4.0.3"
  598. },
  599. "engines": {
  600. "node": ">= 10.0.0"
  601. },
  602. "funding": {
  603. "type": "opencollective",
  604. "url": "https://opencollective.com/parcel"
  605. },
  606. "optionalDependencies": {
  607. "@parcel/watcher-android-arm64": "2.5.6",
  608. "@parcel/watcher-darwin-arm64": "2.5.6",
  609. "@parcel/watcher-darwin-x64": "2.5.6",
  610. "@parcel/watcher-freebsd-x64": "2.5.6",
  611. "@parcel/watcher-linux-arm-glibc": "2.5.6",
  612. "@parcel/watcher-linux-arm-musl": "2.5.6",
  613. "@parcel/watcher-linux-arm64-glibc": "2.5.6",
  614. "@parcel/watcher-linux-arm64-musl": "2.5.6",
  615. "@parcel/watcher-linux-x64-glibc": "2.5.6",
  616. "@parcel/watcher-linux-x64-musl": "2.5.6",
  617. "@parcel/watcher-win32-arm64": "2.5.6",
  618. "@parcel/watcher-win32-ia32": "2.5.6",
  619. "@parcel/watcher-win32-x64": "2.5.6"
  620. }
  621. },
  622. "node_modules/@parcel/watcher-android-arm64": {
  623. "version": "2.5.6",
  624. "resolved": "https://registry.npmmirror.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz",
  625. "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==",
  626. "cpu": [
  627. "arm64"
  628. ],
  629. "dev": true,
  630. "license": "MIT",
  631. "optional": true,
  632. "os": [
  633. "android"
  634. ],
  635. "engines": {
  636. "node": ">= 10.0.0"
  637. },
  638. "funding": {
  639. "type": "opencollective",
  640. "url": "https://opencollective.com/parcel"
  641. }
  642. },
  643. "node_modules/@parcel/watcher-darwin-arm64": {
  644. "version": "2.5.6",
  645. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz",
  646. "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==",
  647. "cpu": [
  648. "arm64"
  649. ],
  650. "dev": true,
  651. "license": "MIT",
  652. "optional": true,
  653. "os": [
  654. "darwin"
  655. ],
  656. "engines": {
  657. "node": ">= 10.0.0"
  658. },
  659. "funding": {
  660. "type": "opencollective",
  661. "url": "https://opencollective.com/parcel"
  662. }
  663. },
  664. "node_modules/@parcel/watcher-darwin-x64": {
  665. "version": "2.5.6",
  666. "resolved": "https://registry.npmmirror.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz",
  667. "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==",
  668. "cpu": [
  669. "x64"
  670. ],
  671. "dev": true,
  672. "license": "MIT",
  673. "optional": true,
  674. "os": [
  675. "darwin"
  676. ],
  677. "engines": {
  678. "node": ">= 10.0.0"
  679. },
  680. "funding": {
  681. "type": "opencollective",
  682. "url": "https://opencollective.com/parcel"
  683. }
  684. },
  685. "node_modules/@parcel/watcher-freebsd-x64": {
  686. "version": "2.5.6",
  687. "resolved": "https://registry.npmmirror.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz",
  688. "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==",
  689. "cpu": [
  690. "x64"
  691. ],
  692. "dev": true,
  693. "license": "MIT",
  694. "optional": true,
  695. "os": [
  696. "freebsd"
  697. ],
  698. "engines": {
  699. "node": ">= 10.0.0"
  700. },
  701. "funding": {
  702. "type": "opencollective",
  703. "url": "https://opencollective.com/parcel"
  704. }
  705. },
  706. "node_modules/@parcel/watcher-linux-arm-glibc": {
  707. "version": "2.5.6",
  708. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz",
  709. "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==",
  710. "cpu": [
  711. "arm"
  712. ],
  713. "dev": true,
  714. "license": "MIT",
  715. "optional": true,
  716. "os": [
  717. "linux"
  718. ],
  719. "engines": {
  720. "node": ">= 10.0.0"
  721. },
  722. "funding": {
  723. "type": "opencollective",
  724. "url": "https://opencollective.com/parcel"
  725. }
  726. },
  727. "node_modules/@parcel/watcher-linux-arm-musl": {
  728. "version": "2.5.6",
  729. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz",
  730. "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==",
  731. "cpu": [
  732. "arm"
  733. ],
  734. "dev": true,
  735. "license": "MIT",
  736. "optional": true,
  737. "os": [
  738. "linux"
  739. ],
  740. "engines": {
  741. "node": ">= 10.0.0"
  742. },
  743. "funding": {
  744. "type": "opencollective",
  745. "url": "https://opencollective.com/parcel"
  746. }
  747. },
  748. "node_modules/@parcel/watcher-linux-arm64-glibc": {
  749. "version": "2.5.6",
  750. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz",
  751. "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==",
  752. "cpu": [
  753. "arm64"
  754. ],
  755. "dev": true,
  756. "license": "MIT",
  757. "optional": true,
  758. "os": [
  759. "linux"
  760. ],
  761. "engines": {
  762. "node": ">= 10.0.0"
  763. },
  764. "funding": {
  765. "type": "opencollective",
  766. "url": "https://opencollective.com/parcel"
  767. }
  768. },
  769. "node_modules/@parcel/watcher-linux-arm64-musl": {
  770. "version": "2.5.6",
  771. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz",
  772. "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==",
  773. "cpu": [
  774. "arm64"
  775. ],
  776. "dev": true,
  777. "license": "MIT",
  778. "optional": true,
  779. "os": [
  780. "linux"
  781. ],
  782. "engines": {
  783. "node": ">= 10.0.0"
  784. },
  785. "funding": {
  786. "type": "opencollective",
  787. "url": "https://opencollective.com/parcel"
  788. }
  789. },
  790. "node_modules/@parcel/watcher-linux-x64-glibc": {
  791. "version": "2.5.6",
  792. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz",
  793. "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==",
  794. "cpu": [
  795. "x64"
  796. ],
  797. "dev": true,
  798. "license": "MIT",
  799. "optional": true,
  800. "os": [
  801. "linux"
  802. ],
  803. "engines": {
  804. "node": ">= 10.0.0"
  805. },
  806. "funding": {
  807. "type": "opencollective",
  808. "url": "https://opencollective.com/parcel"
  809. }
  810. },
  811. "node_modules/@parcel/watcher-linux-x64-musl": {
  812. "version": "2.5.6",
  813. "resolved": "https://registry.npmmirror.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz",
  814. "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==",
  815. "cpu": [
  816. "x64"
  817. ],
  818. "dev": true,
  819. "license": "MIT",
  820. "optional": true,
  821. "os": [
  822. "linux"
  823. ],
  824. "engines": {
  825. "node": ">= 10.0.0"
  826. },
  827. "funding": {
  828. "type": "opencollective",
  829. "url": "https://opencollective.com/parcel"
  830. }
  831. },
  832. "node_modules/@parcel/watcher-win32-arm64": {
  833. "version": "2.5.6",
  834. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz",
  835. "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==",
  836. "cpu": [
  837. "arm64"
  838. ],
  839. "dev": true,
  840. "license": "MIT",
  841. "optional": true,
  842. "os": [
  843. "win32"
  844. ],
  845. "engines": {
  846. "node": ">= 10.0.0"
  847. },
  848. "funding": {
  849. "type": "opencollective",
  850. "url": "https://opencollective.com/parcel"
  851. }
  852. },
  853. "node_modules/@parcel/watcher-win32-ia32": {
  854. "version": "2.5.6",
  855. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz",
  856. "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==",
  857. "cpu": [
  858. "ia32"
  859. ],
  860. "dev": true,
  861. "license": "MIT",
  862. "optional": true,
  863. "os": [
  864. "win32"
  865. ],
  866. "engines": {
  867. "node": ">= 10.0.0"
  868. },
  869. "funding": {
  870. "type": "opencollective",
  871. "url": "https://opencollective.com/parcel"
  872. }
  873. },
  874. "node_modules/@parcel/watcher-win32-x64": {
  875. "version": "2.5.6",
  876. "resolved": "https://registry.npmmirror.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz",
  877. "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==",
  878. "cpu": [
  879. "x64"
  880. ],
  881. "dev": true,
  882. "license": "MIT",
  883. "optional": true,
  884. "os": [
  885. "win32"
  886. ],
  887. "engines": {
  888. "node": ">= 10.0.0"
  889. },
  890. "funding": {
  891. "type": "opencollective",
  892. "url": "https://opencollective.com/parcel"
  893. }
  894. },
  895. "node_modules/@popperjs/core": {
  896. "name": "@sxzz/popperjs-es",
  897. "version": "2.11.8",
  898. "resolved": "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.8.tgz",
  899. "integrity": "sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==",
  900. "license": "MIT",
  901. "funding": {
  902. "type": "opencollective",
  903. "url": "https://opencollective.com/popperjs"
  904. }
  905. },
  906. "node_modules/@rollup/rollup-android-arm-eabi": {
  907. "version": "4.60.4",
  908. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.4.tgz",
  909. "integrity": "sha512-F5QXMSiFebS9hKZj02XhWLLnRpJ3B3AROP0tWbFBSj+6kCbg5m9j5JoHKd4mmSVy5mS/IMQloYgYxCuJC0fxEQ==",
  910. "cpu": [
  911. "arm"
  912. ],
  913. "dev": true,
  914. "license": "MIT",
  915. "optional": true,
  916. "os": [
  917. "android"
  918. ]
  919. },
  920. "node_modules/@rollup/rollup-android-arm64": {
  921. "version": "4.60.4",
  922. "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.4.tgz",
  923. "integrity": "sha512-GxxTKApUpzRhof7poWvCJHRF51C67u1R7D6DiluBE8wKU1u5GWE8t+v81JvJYtbawoBFX1hLv5Ei4eVjkWokaw==",
  924. "cpu": [
  925. "arm64"
  926. ],
  927. "dev": true,
  928. "license": "MIT",
  929. "optional": true,
  930. "os": [
  931. "android"
  932. ]
  933. },
  934. "node_modules/@rollup/rollup-darwin-arm64": {
  935. "version": "4.60.4",
  936. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.4.tgz",
  937. "integrity": "sha512-tua0TaJxMOB1R0V0RS1jFZ/RpURFDJIOR2A6jWwQeawuFyS4gBW+rntLRaQd0EQ4bd6Vp44Z2rXW+YYDBsj6IA==",
  938. "cpu": [
  939. "arm64"
  940. ],
  941. "dev": true,
  942. "license": "MIT",
  943. "optional": true,
  944. "os": [
  945. "darwin"
  946. ]
  947. },
  948. "node_modules/@rollup/rollup-darwin-x64": {
  949. "version": "4.60.4",
  950. "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.4.tgz",
  951. "integrity": "sha512-CSKq7MsP+5PFIcydhAiR1K0UhEI1A2jWXVKHPCBZ151yOutENwvnPocgVHkivu2kviURtCEB6zUQw0vs8RrhMg==",
  952. "cpu": [
  953. "x64"
  954. ],
  955. "dev": true,
  956. "license": "MIT",
  957. "optional": true,
  958. "os": [
  959. "darwin"
  960. ]
  961. },
  962. "node_modules/@rollup/rollup-freebsd-arm64": {
  963. "version": "4.60.4",
  964. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.4.tgz",
  965. "integrity": "sha512-+O8OkVdyvXMtJEciu2wS/pzm1IxntEEQx3z5TAVy4l32G0etZn+RsA48ARRrFm6Ri8fvqPQfgrvNxSjKAbnd3g==",
  966. "cpu": [
  967. "arm64"
  968. ],
  969. "dev": true,
  970. "license": "MIT",
  971. "optional": true,
  972. "os": [
  973. "freebsd"
  974. ]
  975. },
  976. "node_modules/@rollup/rollup-freebsd-x64": {
  977. "version": "4.60.4",
  978. "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.4.tgz",
  979. "integrity": "sha512-Iw3oMskH3AfNuhU0MSN7vNbdi4me/NiYo2azqPz/Le16zHSa+3RRmliCMWWQmh4lcndccU40xcJuTYJZxNo/lw==",
  980. "cpu": [
  981. "x64"
  982. ],
  983. "dev": true,
  984. "license": "MIT",
  985. "optional": true,
  986. "os": [
  987. "freebsd"
  988. ]
  989. },
  990. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  991. "version": "4.60.4",
  992. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.4.tgz",
  993. "integrity": "sha512-EIPRXTVQpHyF8WOo219AD2yEltPehLTcTMz2fn6JsatLYSzQf00hj3rulF+yauOlF9/FtM2WpkT/hJh/KJFGhA==",
  994. "cpu": [
  995. "arm"
  996. ],
  997. "dev": true,
  998. "license": "MIT",
  999. "optional": true,
  1000. "os": [
  1001. "linux"
  1002. ]
  1003. },
  1004. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  1005. "version": "4.60.4",
  1006. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.4.tgz",
  1007. "integrity": "sha512-J3Yh9PzzF1Ovah2At+lHiGQdsYgArxBbXv/zHfSyaiFQEqvNv7DcW98pCrmdjCZBrqBiKrKKe2V+aaSGWuBe/w==",
  1008. "cpu": [
  1009. "arm"
  1010. ],
  1011. "dev": true,
  1012. "license": "MIT",
  1013. "optional": true,
  1014. "os": [
  1015. "linux"
  1016. ]
  1017. },
  1018. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  1019. "version": "4.60.4",
  1020. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.4.tgz",
  1021. "integrity": "sha512-BFDEZMYfUvLn37ONE1yMBojPxnMlTFsdyNoqncT0qFq1mAfllL+ATMMJd8TeuVMiX84s1KbcxcZbXInmcO2mRg==",
  1022. "cpu": [
  1023. "arm64"
  1024. ],
  1025. "dev": true,
  1026. "license": "MIT",
  1027. "optional": true,
  1028. "os": [
  1029. "linux"
  1030. ]
  1031. },
  1032. "node_modules/@rollup/rollup-linux-arm64-musl": {
  1033. "version": "4.60.4",
  1034. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.4.tgz",
  1035. "integrity": "sha512-pc9EYOSlOgdQ2uPl1o9PF6/kLSgaUosia7gOuS8mB69IxJvlclko1MECXysjs5ryez1/5zjYqx3+xYU0TU6R1A==",
  1036. "cpu": [
  1037. "arm64"
  1038. ],
  1039. "dev": true,
  1040. "license": "MIT",
  1041. "optional": true,
  1042. "os": [
  1043. "linux"
  1044. ]
  1045. },
  1046. "node_modules/@rollup/rollup-linux-loong64-gnu": {
  1047. "version": "4.60.4",
  1048. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.4.tgz",
  1049. "integrity": "sha512-NxnomyxYerDh5n4iLrNa+sH+Z+U4BMEE46V2PgQ/hoB909i8gV1M5wPojWg9fk1jWpO3IQnOs20K4wyZuFLEFQ==",
  1050. "cpu": [
  1051. "loong64"
  1052. ],
  1053. "dev": true,
  1054. "license": "MIT",
  1055. "optional": true,
  1056. "os": [
  1057. "linux"
  1058. ]
  1059. },
  1060. "node_modules/@rollup/rollup-linux-loong64-musl": {
  1061. "version": "4.60.4",
  1062. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.4.tgz",
  1063. "integrity": "sha512-nbJnQ8a3z1mtmrwImCYhc6BGpThAyYVRQxw9uKSKG4wR6aAYno9sVjJ0zaZcW9BPJX1GbrDPf+SvdWjgTuDmnw==",
  1064. "cpu": [
  1065. "loong64"
  1066. ],
  1067. "dev": true,
  1068. "license": "MIT",
  1069. "optional": true,
  1070. "os": [
  1071. "linux"
  1072. ]
  1073. },
  1074. "node_modules/@rollup/rollup-linux-ppc64-gnu": {
  1075. "version": "4.60.4",
  1076. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.4.tgz",
  1077. "integrity": "sha512-2EU6acNrQLd8tYvo/LXW535wupT3m6fo7HKo6lr7ktQoItxTyOL1ZCR/GfGCuXl2vR+zmfI6eRXkSemafv+iVg==",
  1078. "cpu": [
  1079. "ppc64"
  1080. ],
  1081. "dev": true,
  1082. "license": "MIT",
  1083. "optional": true,
  1084. "os": [
  1085. "linux"
  1086. ]
  1087. },
  1088. "node_modules/@rollup/rollup-linux-ppc64-musl": {
  1089. "version": "4.60.4",
  1090. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.4.tgz",
  1091. "integrity": "sha512-WeBtoMuaMxiiIrO2IYP3xs6GMWkJP2C0EoT8beTLkUPmzV1i/UcOSVw1d5r9KBODtHKilG5yFxsGRnBbK3wJ4A==",
  1092. "cpu": [
  1093. "ppc64"
  1094. ],
  1095. "dev": true,
  1096. "license": "MIT",
  1097. "optional": true,
  1098. "os": [
  1099. "linux"
  1100. ]
  1101. },
  1102. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  1103. "version": "4.60.4",
  1104. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.4.tgz",
  1105. "integrity": "sha512-FJHFfqpKUI3A10WrWKiFbBZ7yVbGT4q4B5o1qKFFojqpaYoh9LrQgqWCmmcxQzVSXYtyB5bzkXrYzlHTs21MYA==",
  1106. "cpu": [
  1107. "riscv64"
  1108. ],
  1109. "dev": true,
  1110. "license": "MIT",
  1111. "optional": true,
  1112. "os": [
  1113. "linux"
  1114. ]
  1115. },
  1116. "node_modules/@rollup/rollup-linux-riscv64-musl": {
  1117. "version": "4.60.4",
  1118. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.4.tgz",
  1119. "integrity": "sha512-mcEl6CUT5IAUmQf1m9FYSmVqCJlpQ8r8eyftFUHG8i9OhY7BkBXSUdnLH5DOf0wCOjcP9v/QO93zpmF1SptCCw==",
  1120. "cpu": [
  1121. "riscv64"
  1122. ],
  1123. "dev": true,
  1124. "license": "MIT",
  1125. "optional": true,
  1126. "os": [
  1127. "linux"
  1128. ]
  1129. },
  1130. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  1131. "version": "4.60.4",
  1132. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.4.tgz",
  1133. "integrity": "sha512-ynt3JxVd2w2buzoKDWIyiV1pJW93xlQic1THVLXilz429oijRpSHivZAgp65KBu+cMcgf1eVVjdnTLvPxgCuoQ==",
  1134. "cpu": [
  1135. "s390x"
  1136. ],
  1137. "dev": true,
  1138. "license": "MIT",
  1139. "optional": true,
  1140. "os": [
  1141. "linux"
  1142. ]
  1143. },
  1144. "node_modules/@rollup/rollup-linux-x64-gnu": {
  1145. "version": "4.60.4",
  1146. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.4.tgz",
  1147. "integrity": "sha512-Boiz5+MsaROEWDf+GGEwF8VMHGhlUoQMtIPjOgA5fv4osupqTVnJteQNKJwUcnUog2G55jYXH7KZFFiJe0TEzQ==",
  1148. "cpu": [
  1149. "x64"
  1150. ],
  1151. "dev": true,
  1152. "license": "MIT",
  1153. "optional": true,
  1154. "os": [
  1155. "linux"
  1156. ]
  1157. },
  1158. "node_modules/@rollup/rollup-linux-x64-musl": {
  1159. "version": "4.60.4",
  1160. "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.4.tgz",
  1161. "integrity": "sha512-+qfSY27qIrFfI/Hom04KYFw3GKZSGU4lXus51wsb5EuySfFlWRwjkKWoE9emgRw/ukoT4Udsj4W/+xxG8VbPKg==",
  1162. "cpu": [
  1163. "x64"
  1164. ],
  1165. "dev": true,
  1166. "license": "MIT",
  1167. "optional": true,
  1168. "os": [
  1169. "linux"
  1170. ]
  1171. },
  1172. "node_modules/@rollup/rollup-openbsd-x64": {
  1173. "version": "4.60.4",
  1174. "resolved": "https://registry.npmmirror.com/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.4.tgz",
  1175. "integrity": "sha512-VpTfOPHgVXEBeeR8hZ2O0F3aSso+JDWqTWmTmzcQKted54IAdUVbxE+j/MVxUsKa8L20HJhv3vUezVPoquqWjA==",
  1176. "cpu": [
  1177. "x64"
  1178. ],
  1179. "dev": true,
  1180. "license": "MIT",
  1181. "optional": true,
  1182. "os": [
  1183. "openbsd"
  1184. ]
  1185. },
  1186. "node_modules/@rollup/rollup-openharmony-arm64": {
  1187. "version": "4.60.4",
  1188. "resolved": "https://registry.npmmirror.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.4.tgz",
  1189. "integrity": "sha512-IPOsh5aRYuLv/nkU51X10Bf75Bsf6+gZdx1X+QP5QM6lIJFHHqbHLG0uJn/hWthzo13UAc2umiUorqZy3axoZg==",
  1190. "cpu": [
  1191. "arm64"
  1192. ],
  1193. "dev": true,
  1194. "license": "MIT",
  1195. "optional": true,
  1196. "os": [
  1197. "openharmony"
  1198. ]
  1199. },
  1200. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  1201. "version": "4.60.4",
  1202. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.4.tgz",
  1203. "integrity": "sha512-4QzE9E81OohJ/HKzHhsqU+zcYYojVOXlFMs1DdyMT6qXl/niOH7AVElmmEdUNHHS/oRkc++d5k6Vy85zFs0DEw==",
  1204. "cpu": [
  1205. "arm64"
  1206. ],
  1207. "dev": true,
  1208. "license": "MIT",
  1209. "optional": true,
  1210. "os": [
  1211. "win32"
  1212. ]
  1213. },
  1214. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  1215. "version": "4.60.4",
  1216. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.4.tgz",
  1217. "integrity": "sha512-zTPgT1YuHHcd+Tmx7h8aml0FWFVelV5N54oHow9SLj+GfoDy/huQ+UV396N/C7KpMDMiPspRktzM1/0r1usYEA==",
  1218. "cpu": [
  1219. "ia32"
  1220. ],
  1221. "dev": true,
  1222. "license": "MIT",
  1223. "optional": true,
  1224. "os": [
  1225. "win32"
  1226. ]
  1227. },
  1228. "node_modules/@rollup/rollup-win32-x64-gnu": {
  1229. "version": "4.60.4",
  1230. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.4.tgz",
  1231. "integrity": "sha512-DRS4G7mi9lJxqEDezIkKCaUIKCrLUUDCUaCsTPCi/rtqaC6D/jjwslMQyiDU50Ka0JKpeXeRBFBAXwArY52vBw==",
  1232. "cpu": [
  1233. "x64"
  1234. ],
  1235. "dev": true,
  1236. "license": "MIT",
  1237. "optional": true,
  1238. "os": [
  1239. "win32"
  1240. ]
  1241. },
  1242. "node_modules/@rollup/rollup-win32-x64-msvc": {
  1243. "version": "4.60.4",
  1244. "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.4.tgz",
  1245. "integrity": "sha512-QVTUovf40zgTqlFVrKA1uXMVvU2QWEFWfAH8Wdc48IxLvrJMQVMBRjuQyUpzZCDkakImib9eVazbWlC6ksWtJw==",
  1246. "cpu": [
  1247. "x64"
  1248. ],
  1249. "dev": true,
  1250. "license": "MIT",
  1251. "optional": true,
  1252. "os": [
  1253. "win32"
  1254. ]
  1255. },
  1256. "node_modules/@tsconfig/node20": {
  1257. "version": "20.1.9",
  1258. "resolved": "https://registry.npmmirror.com/@tsconfig/node20/-/node20-20.1.9.tgz",
  1259. "integrity": "sha512-IjlTv1RsvnPtUcjTqtVsZExKVq+KQx4g5pCP5tI7rAs6Xesl2qFwSz/tPDBC4JajkL/MlezBu3gPUwqRHl+RIg==",
  1260. "dev": true,
  1261. "license": "MIT"
  1262. },
  1263. "node_modules/@tsparticles/basic": {
  1264. "version": "3.9.1",
  1265. "resolved": "https://registry.npmmirror.com/@tsparticles/basic/-/basic-3.9.1.tgz",
  1266. "integrity": "sha512-ijr2dHMx0IQHqhKW3qA8tfwrR2XYbbWYdaJMQuBo2CkwBVIhZ76U+H20Y492j/NXpd1FUnt2aC0l4CEVGVGdeQ==",
  1267. "funding": [
  1268. {
  1269. "type": "github",
  1270. "url": "https://github.com/sponsors/matteobruni"
  1271. },
  1272. {
  1273. "type": "github",
  1274. "url": "https://github.com/sponsors/tsparticles"
  1275. },
  1276. {
  1277. "type": "buymeacoffee",
  1278. "url": "https://www.buymeacoffee.com/matteobruni"
  1279. }
  1280. ],
  1281. "license": "MIT",
  1282. "dependencies": {
  1283. "@tsparticles/engine": "3.9.1",
  1284. "@tsparticles/move-base": "3.9.1",
  1285. "@tsparticles/plugin-hex-color": "3.9.1",
  1286. "@tsparticles/plugin-hsl-color": "3.9.1",
  1287. "@tsparticles/plugin-rgb-color": "3.9.1",
  1288. "@tsparticles/shape-circle": "3.9.1",
  1289. "@tsparticles/updater-color": "3.9.1",
  1290. "@tsparticles/updater-opacity": "3.9.1",
  1291. "@tsparticles/updater-out-modes": "3.9.1",
  1292. "@tsparticles/updater-size": "3.9.1"
  1293. }
  1294. },
  1295. "node_modules/@tsparticles/engine": {
  1296. "version": "3.9.1",
  1297. "resolved": "https://registry.npmmirror.com/@tsparticles/engine/-/engine-3.9.1.tgz",
  1298. "integrity": "sha512-DpdgAhWMZ3Eh2gyxik8FXS6BKZ8vyea+Eu5BC4epsahqTGY9V3JGGJcXC6lRJx6cPMAx1A0FaQAojPF3v6rkmQ==",
  1299. "funding": [
  1300. {
  1301. "type": "github",
  1302. "url": "https://github.com/sponsors/matteobruni"
  1303. },
  1304. {
  1305. "type": "github",
  1306. "url": "https://github.com/sponsors/tsparticles"
  1307. },
  1308. {
  1309. "type": "buymeacoffee",
  1310. "url": "https://www.buymeacoffee.com/matteobruni"
  1311. }
  1312. ],
  1313. "hasInstallScript": true,
  1314. "license": "MIT"
  1315. },
  1316. "node_modules/@tsparticles/interaction-external-attract": {
  1317. "version": "3.9.1",
  1318. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-external-attract/-/interaction-external-attract-3.9.1.tgz",
  1319. "integrity": "sha512-5AJGmhzM9o4AVFV24WH5vSqMBzOXEOzIdGLIr+QJf4fRh9ZK62snsusv/ozKgs2KteRYQx+L7c5V3TqcDy2upg==",
  1320. "license": "MIT",
  1321. "dependencies": {
  1322. "@tsparticles/engine": "3.9.1"
  1323. }
  1324. },
  1325. "node_modules/@tsparticles/interaction-external-bounce": {
  1326. "version": "3.9.1",
  1327. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-external-bounce/-/interaction-external-bounce-3.9.1.tgz",
  1328. "integrity": "sha512-bv05+h70UIHOTWeTsTI1AeAmX6R3s8nnY74Ea6p6AbQjERzPYIa0XY19nq/hA7+Nrg+EissP5zgoYYeSphr85A==",
  1329. "license": "MIT",
  1330. "dependencies": {
  1331. "@tsparticles/engine": "3.9.1"
  1332. }
  1333. },
  1334. "node_modules/@tsparticles/interaction-external-bubble": {
  1335. "version": "3.9.1",
  1336. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-external-bubble/-/interaction-external-bubble-3.9.1.tgz",
  1337. "integrity": "sha512-tbd8ox/1GPl+zr+KyHQVV1bW88GE7OM6i4zql801YIlCDrl9wgTDdDFGIy9X7/cwTvTrCePhrfvdkUamXIribQ==",
  1338. "license": "MIT",
  1339. "dependencies": {
  1340. "@tsparticles/engine": "3.9.1"
  1341. }
  1342. },
  1343. "node_modules/@tsparticles/interaction-external-connect": {
  1344. "version": "3.9.1",
  1345. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-external-connect/-/interaction-external-connect-3.9.1.tgz",
  1346. "integrity": "sha512-sq8YfUNsIORjXHzzW7/AJQtfi/qDqLnYG2qOSE1WOsog39MD30RzmiOloejOkfNeUdcGUcfsDgpUuL3UhzFUOA==",
  1347. "license": "MIT",
  1348. "dependencies": {
  1349. "@tsparticles/engine": "3.9.1"
  1350. }
  1351. },
  1352. "node_modules/@tsparticles/interaction-external-grab": {
  1353. "version": "3.9.1",
  1354. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-external-grab/-/interaction-external-grab-3.9.1.tgz",
  1355. "integrity": "sha512-QwXza+sMMWDaMiFxd8y2tJwUK6c+nNw554+/9+tEZeTTk2fCbB0IJ7p/TH6ZGWDL0vo2muK54Njv2fEey191ow==",
  1356. "license": "MIT",
  1357. "dependencies": {
  1358. "@tsparticles/engine": "3.9.1"
  1359. }
  1360. },
  1361. "node_modules/@tsparticles/interaction-external-pause": {
  1362. "version": "3.9.1",
  1363. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-external-pause/-/interaction-external-pause-3.9.1.tgz",
  1364. "integrity": "sha512-Gzv4/FeNir0U/tVM9zQCqV1k+IAgaFjDU3T30M1AeAsNGh/rCITV2wnT7TOGFkbcla27m4Yxa+Fuab8+8pzm+g==",
  1365. "license": "MIT",
  1366. "dependencies": {
  1367. "@tsparticles/engine": "3.9.1"
  1368. }
  1369. },
  1370. "node_modules/@tsparticles/interaction-external-push": {
  1371. "version": "3.9.1",
  1372. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-external-push/-/interaction-external-push-3.9.1.tgz",
  1373. "integrity": "sha512-GvnWF9Qy4YkZdx+WJL2iy9IcgLvzOIu3K7aLYJFsQPaxT8d9TF8WlpoMlWKnJID6H5q4JqQuMRKRyWH8aAKyQw==",
  1374. "license": "MIT",
  1375. "dependencies": {
  1376. "@tsparticles/engine": "3.9.1"
  1377. }
  1378. },
  1379. "node_modules/@tsparticles/interaction-external-remove": {
  1380. "version": "3.9.1",
  1381. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-external-remove/-/interaction-external-remove-3.9.1.tgz",
  1382. "integrity": "sha512-yPThm4UDWejDOWW5Qc8KnnS2EfSo5VFcJUQDWc1+Wcj17xe7vdSoiwwOORM0PmNBzdDpSKQrte/gUnoqaUMwOA==",
  1383. "license": "MIT",
  1384. "dependencies": {
  1385. "@tsparticles/engine": "3.9.1"
  1386. }
  1387. },
  1388. "node_modules/@tsparticles/interaction-external-repulse": {
  1389. "version": "3.9.1",
  1390. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-external-repulse/-/interaction-external-repulse-3.9.1.tgz",
  1391. "integrity": "sha512-/LBppXkrMdvLHlEKWC7IykFhzrz+9nebT2fwSSFXK4plEBxDlIwnkDxd3FbVOAbnBvx4+L8+fbrEx+RvC8diAw==",
  1392. "license": "MIT",
  1393. "dependencies": {
  1394. "@tsparticles/engine": "3.9.1"
  1395. }
  1396. },
  1397. "node_modules/@tsparticles/interaction-external-slow": {
  1398. "version": "3.9.1",
  1399. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-external-slow/-/interaction-external-slow-3.9.1.tgz",
  1400. "integrity": "sha512-1ZYIR/udBwA9MdSCfgADsbDXKSFS0FMWuPWz7bm79g3sUxcYkihn+/hDhc6GXvNNR46V1ocJjrj0u6pAynS1KQ==",
  1401. "license": "MIT",
  1402. "dependencies": {
  1403. "@tsparticles/engine": "3.9.1"
  1404. }
  1405. },
  1406. "node_modules/@tsparticles/interaction-particles-attract": {
  1407. "version": "3.9.1",
  1408. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-particles-attract/-/interaction-particles-attract-3.9.1.tgz",
  1409. "integrity": "sha512-CYYYowJuGwRLUixQcSU/48PTKM8fCUYThe0hXwQ+yRMLAn053VHzL7NNZzKqEIeEyt5oJoy9KcvubjKWbzMBLQ==",
  1410. "license": "MIT",
  1411. "dependencies": {
  1412. "@tsparticles/engine": "3.9.1"
  1413. }
  1414. },
  1415. "node_modules/@tsparticles/interaction-particles-collisions": {
  1416. "version": "3.9.1",
  1417. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-particles-collisions/-/interaction-particles-collisions-3.9.1.tgz",
  1418. "integrity": "sha512-ggGyjW/3v1yxvYW1IF1EMT15M6w31y5zfNNUPkqd/IXRNPYvm0Z0ayhp+FKmz70M5p0UxxPIQHTvAv9Jqnuj8w==",
  1419. "license": "MIT",
  1420. "dependencies": {
  1421. "@tsparticles/engine": "3.9.1"
  1422. }
  1423. },
  1424. "node_modules/@tsparticles/interaction-particles-links": {
  1425. "version": "3.9.1",
  1426. "resolved": "https://registry.npmmirror.com/@tsparticles/interaction-particles-links/-/interaction-particles-links-3.9.1.tgz",
  1427. "integrity": "sha512-MsLbMjy1vY5M5/hu/oa5OSRZAUz49H3+9EBMTIOThiX+a+vpl3sxc9AqNd9gMsPbM4WJlub8T6VBZdyvzez1Vg==",
  1428. "license": "MIT",
  1429. "dependencies": {
  1430. "@tsparticles/engine": "3.9.1"
  1431. }
  1432. },
  1433. "node_modules/@tsparticles/move-base": {
  1434. "version": "3.9.1",
  1435. "resolved": "https://registry.npmmirror.com/@tsparticles/move-base/-/move-base-3.9.1.tgz",
  1436. "integrity": "sha512-X4huBS27d8srpxwOxliWPUt+NtCwY+8q/cx1DvQxyqmTA8VFCGpcHNwtqiN+9JicgzOvSuaORVqUgwlsc7h4pQ==",
  1437. "license": "MIT",
  1438. "dependencies": {
  1439. "@tsparticles/engine": "3.9.1"
  1440. }
  1441. },
  1442. "node_modules/@tsparticles/move-parallax": {
  1443. "version": "3.9.1",
  1444. "resolved": "https://registry.npmmirror.com/@tsparticles/move-parallax/-/move-parallax-3.9.1.tgz",
  1445. "integrity": "sha512-whlOR0bVeyh6J/hvxf/QM3DqvNnITMiAQ0kro6saqSDItAVqg4pYxBfEsSOKq7EhjxNvfhhqR+pFMhp06zoCVA==",
  1446. "license": "MIT",
  1447. "dependencies": {
  1448. "@tsparticles/engine": "3.9.1"
  1449. }
  1450. },
  1451. "node_modules/@tsparticles/plugin-easing-quad": {
  1452. "version": "3.9.1",
  1453. "resolved": "https://registry.npmmirror.com/@tsparticles/plugin-easing-quad/-/plugin-easing-quad-3.9.1.tgz",
  1454. "integrity": "sha512-C2UJOca5MTDXKUTBXj30Kiqr5UyID+xrY/LxicVWWZPczQW2bBxbIbfq9ULvzGDwBTxE2rdvIB8YFKmDYO45qw==",
  1455. "funding": [
  1456. {
  1457. "type": "github",
  1458. "url": "https://github.com/sponsors/matteobruni"
  1459. },
  1460. {
  1461. "type": "github",
  1462. "url": "https://github.com/sponsors/tsparticles"
  1463. },
  1464. {
  1465. "type": "buymeacoffee",
  1466. "url": "https://www.buymeacoffee.com/matteobruni"
  1467. }
  1468. ],
  1469. "license": "MIT",
  1470. "dependencies": {
  1471. "@tsparticles/engine": "3.9.1"
  1472. }
  1473. },
  1474. "node_modules/@tsparticles/plugin-hex-color": {
  1475. "version": "3.9.1",
  1476. "resolved": "https://registry.npmmirror.com/@tsparticles/plugin-hex-color/-/plugin-hex-color-3.9.1.tgz",
  1477. "integrity": "sha512-vZgZ12AjUicJvk7AX4K2eAmKEQX/D1VEjEPFhyjbgI7A65eX72M465vVKIgNA6QArLZ1DLs7Z787LOE6GOBWsg==",
  1478. "funding": [
  1479. {
  1480. "type": "github",
  1481. "url": "https://github.com/sponsors/matteobruni"
  1482. },
  1483. {
  1484. "type": "github",
  1485. "url": "https://github.com/sponsors/tsparticles"
  1486. },
  1487. {
  1488. "type": "buymeacoffee",
  1489. "url": "https://www.buymeacoffee.com/matteobruni"
  1490. }
  1491. ],
  1492. "license": "MIT",
  1493. "dependencies": {
  1494. "@tsparticles/engine": "3.9.1"
  1495. }
  1496. },
  1497. "node_modules/@tsparticles/plugin-hsl-color": {
  1498. "version": "3.9.1",
  1499. "resolved": "https://registry.npmmirror.com/@tsparticles/plugin-hsl-color/-/plugin-hsl-color-3.9.1.tgz",
  1500. "integrity": "sha512-jJd1iGgRwX6eeNjc1zUXiJivaqC5UE+SC2A3/NtHwwoQrkfxGWmRHOsVyLnOBRcCPgBp/FpdDe6DIDjCMO715w==",
  1501. "funding": [
  1502. {
  1503. "type": "github",
  1504. "url": "https://github.com/sponsors/matteobruni"
  1505. },
  1506. {
  1507. "type": "github",
  1508. "url": "https://github.com/sponsors/tsparticles"
  1509. },
  1510. {
  1511. "type": "buymeacoffee",
  1512. "url": "https://www.buymeacoffee.com/matteobruni"
  1513. }
  1514. ],
  1515. "license": "MIT",
  1516. "dependencies": {
  1517. "@tsparticles/engine": "3.9.1"
  1518. }
  1519. },
  1520. "node_modules/@tsparticles/plugin-rgb-color": {
  1521. "version": "3.9.1",
  1522. "resolved": "https://registry.npmmirror.com/@tsparticles/plugin-rgb-color/-/plugin-rgb-color-3.9.1.tgz",
  1523. "integrity": "sha512-SBxk7f1KBfXeTnnklbE2Hx4jBgh6I6HOtxb+Os1gTp0oaghZOkWcCD2dP4QbUu7fVNCMOcApPoMNC8RTFcy9wQ==",
  1524. "funding": [
  1525. {
  1526. "type": "github",
  1527. "url": "https://github.com/sponsors/matteobruni"
  1528. },
  1529. {
  1530. "type": "github",
  1531. "url": "https://github.com/sponsors/tsparticles"
  1532. },
  1533. {
  1534. "type": "buymeacoffee",
  1535. "url": "https://www.buymeacoffee.com/matteobruni"
  1536. }
  1537. ],
  1538. "license": "MIT",
  1539. "dependencies": {
  1540. "@tsparticles/engine": "3.9.1"
  1541. }
  1542. },
  1543. "node_modules/@tsparticles/shape-circle": {
  1544. "version": "3.9.1",
  1545. "resolved": "https://registry.npmmirror.com/@tsparticles/shape-circle/-/shape-circle-3.9.1.tgz",
  1546. "integrity": "sha512-DqZFLjbuhVn99WJ+A9ajz9YON72RtCcvubzq6qfjFmtwAK7frvQeb6iDTp6Ze9FUipluxVZWVRG4vWTxi2B+/g==",
  1547. "license": "MIT",
  1548. "dependencies": {
  1549. "@tsparticles/engine": "3.9.1"
  1550. }
  1551. },
  1552. "node_modules/@tsparticles/shape-emoji": {
  1553. "version": "3.9.1",
  1554. "resolved": "https://registry.npmmirror.com/@tsparticles/shape-emoji/-/shape-emoji-3.9.1.tgz",
  1555. "integrity": "sha512-ifvY63usuT+hipgVHb8gelBHSeF6ryPnMxAAEC1RGHhhXfpSRWMtE6ybr+pSsYU52M3G9+TF84v91pSwNrb9ZQ==",
  1556. "license": "MIT",
  1557. "dependencies": {
  1558. "@tsparticles/engine": "3.9.1"
  1559. }
  1560. },
  1561. "node_modules/@tsparticles/shape-image": {
  1562. "version": "3.9.1",
  1563. "resolved": "https://registry.npmmirror.com/@tsparticles/shape-image/-/shape-image-3.9.1.tgz",
  1564. "integrity": "sha512-fCA5eme8VF3oX8yNVUA0l2SLDKuiZObkijb0z3Ky0qj1HUEVlAuEMhhNDNB9E2iELTrWEix9z7BFMePp2CC7AA==",
  1565. "license": "MIT",
  1566. "dependencies": {
  1567. "@tsparticles/engine": "3.9.1"
  1568. }
  1569. },
  1570. "node_modules/@tsparticles/shape-line": {
  1571. "version": "3.9.1",
  1572. "resolved": "https://registry.npmmirror.com/@tsparticles/shape-line/-/shape-line-3.9.1.tgz",
  1573. "integrity": "sha512-wT8NSp0N9HURyV05f371cHKcNTNqr0/cwUu6WhBzbshkYGy1KZUP9CpRIh5FCrBpTev34mEQfOXDycgfG0KiLQ==",
  1574. "license": "MIT",
  1575. "dependencies": {
  1576. "@tsparticles/engine": "3.9.1"
  1577. }
  1578. },
  1579. "node_modules/@tsparticles/shape-polygon": {
  1580. "version": "3.9.1",
  1581. "resolved": "https://registry.npmmirror.com/@tsparticles/shape-polygon/-/shape-polygon-3.9.1.tgz",
  1582. "integrity": "sha512-dA77PgZdoLwxnliH6XQM/zF0r4jhT01pw5y7XTeTqws++hg4rTLV9255k6R6eUqKq0FPSW1/WBsBIl7q/MmrqQ==",
  1583. "license": "MIT",
  1584. "dependencies": {
  1585. "@tsparticles/engine": "3.9.1"
  1586. }
  1587. },
  1588. "node_modules/@tsparticles/shape-square": {
  1589. "version": "3.9.1",
  1590. "resolved": "https://registry.npmmirror.com/@tsparticles/shape-square/-/shape-square-3.9.1.tgz",
  1591. "integrity": "sha512-DKGkDnRyZrAm7T2ipqNezJahSWs6xd9O5LQLe5vjrYm1qGwrFxJiQaAdlb00UNrexz1/SA7bEoIg4XKaFa7qhQ==",
  1592. "license": "MIT",
  1593. "dependencies": {
  1594. "@tsparticles/engine": "3.9.1"
  1595. }
  1596. },
  1597. "node_modules/@tsparticles/shape-star": {
  1598. "version": "3.9.1",
  1599. "resolved": "https://registry.npmmirror.com/@tsparticles/shape-star/-/shape-star-3.9.1.tgz",
  1600. "integrity": "sha512-kdMJpi8cdeb6vGrZVSxTG0JIjCwIenggqk0EYeKAwtOGZFBgL7eHhF2F6uu1oq8cJAbXPujEoabnLsz6mW8XaA==",
  1601. "license": "MIT",
  1602. "dependencies": {
  1603. "@tsparticles/engine": "3.9.1"
  1604. }
  1605. },
  1606. "node_modules/@tsparticles/slim": {
  1607. "version": "3.9.1",
  1608. "resolved": "https://registry.npmmirror.com/@tsparticles/slim/-/slim-3.9.1.tgz",
  1609. "integrity": "sha512-CL5cDmADU7sDjRli0So+hY61VMbdroqbArmR9Av+c1Fisa5ytr6QD7Jv62iwU2S6rvgicEe9OyRmSy5GIefwZw==",
  1610. "funding": [
  1611. {
  1612. "type": "github",
  1613. "url": "https://github.com/sponsors/matteobruni"
  1614. },
  1615. {
  1616. "type": "github",
  1617. "url": "https://github.com/sponsors/tsparticles"
  1618. },
  1619. {
  1620. "type": "buymeacoffee",
  1621. "url": "https://www.buymeacoffee.com/matteobruni"
  1622. }
  1623. ],
  1624. "license": "MIT",
  1625. "dependencies": {
  1626. "@tsparticles/basic": "3.9.1",
  1627. "@tsparticles/engine": "3.9.1",
  1628. "@tsparticles/interaction-external-attract": "3.9.1",
  1629. "@tsparticles/interaction-external-bounce": "3.9.1",
  1630. "@tsparticles/interaction-external-bubble": "3.9.1",
  1631. "@tsparticles/interaction-external-connect": "3.9.1",
  1632. "@tsparticles/interaction-external-grab": "3.9.1",
  1633. "@tsparticles/interaction-external-pause": "3.9.1",
  1634. "@tsparticles/interaction-external-push": "3.9.1",
  1635. "@tsparticles/interaction-external-remove": "3.9.1",
  1636. "@tsparticles/interaction-external-repulse": "3.9.1",
  1637. "@tsparticles/interaction-external-slow": "3.9.1",
  1638. "@tsparticles/interaction-particles-attract": "3.9.1",
  1639. "@tsparticles/interaction-particles-collisions": "3.9.1",
  1640. "@tsparticles/interaction-particles-links": "3.9.1",
  1641. "@tsparticles/move-parallax": "3.9.1",
  1642. "@tsparticles/plugin-easing-quad": "3.9.1",
  1643. "@tsparticles/shape-emoji": "3.9.1",
  1644. "@tsparticles/shape-image": "3.9.1",
  1645. "@tsparticles/shape-line": "3.9.1",
  1646. "@tsparticles/shape-polygon": "3.9.1",
  1647. "@tsparticles/shape-square": "3.9.1",
  1648. "@tsparticles/shape-star": "3.9.1",
  1649. "@tsparticles/updater-life": "3.9.1",
  1650. "@tsparticles/updater-rotate": "3.9.1",
  1651. "@tsparticles/updater-stroke-color": "3.9.1"
  1652. }
  1653. },
  1654. "node_modules/@tsparticles/updater-color": {
  1655. "version": "3.9.1",
  1656. "resolved": "https://registry.npmmirror.com/@tsparticles/updater-color/-/updater-color-3.9.1.tgz",
  1657. "integrity": "sha512-XGWdscrgEMA8L5E7exsE0f8/2zHKIqnTrZymcyuFBw2DCB6BIV+5z6qaNStpxrhq3DbIxxhqqcybqeOo7+Alpg==",
  1658. "license": "MIT",
  1659. "dependencies": {
  1660. "@tsparticles/engine": "3.9.1"
  1661. }
  1662. },
  1663. "node_modules/@tsparticles/updater-life": {
  1664. "version": "3.9.1",
  1665. "resolved": "https://registry.npmmirror.com/@tsparticles/updater-life/-/updater-life-3.9.1.tgz",
  1666. "integrity": "sha512-Oi8aF2RIwMMsjssUkCB6t3PRpENHjdZf6cX92WNfAuqXtQphr3OMAkYFJFWkvyPFK22AVy3p/cFt6KE5zXxwAA==",
  1667. "license": "MIT",
  1668. "dependencies": {
  1669. "@tsparticles/engine": "3.9.1"
  1670. }
  1671. },
  1672. "node_modules/@tsparticles/updater-opacity": {
  1673. "version": "3.9.1",
  1674. "resolved": "https://registry.npmmirror.com/@tsparticles/updater-opacity/-/updater-opacity-3.9.1.tgz",
  1675. "integrity": "sha512-w778LQuRZJ+IoWzeRdrGykPYSSaTeWfBvLZ2XwYEkh/Ss961InOxZKIpcS6i5Kp/Zfw0fS1ZAuqeHwuj///Osw==",
  1676. "license": "MIT",
  1677. "dependencies": {
  1678. "@tsparticles/engine": "3.9.1"
  1679. }
  1680. },
  1681. "node_modules/@tsparticles/updater-out-modes": {
  1682. "version": "3.9.1",
  1683. "resolved": "https://registry.npmmirror.com/@tsparticles/updater-out-modes/-/updater-out-modes-3.9.1.tgz",
  1684. "integrity": "sha512-cKQEkAwbru+hhKF+GTsfbOvuBbx2DSB25CxOdhtW2wRvDBoCnngNdLw91rs+0Cex4tgEeibkebrIKFDDE6kELg==",
  1685. "license": "MIT",
  1686. "dependencies": {
  1687. "@tsparticles/engine": "3.9.1"
  1688. }
  1689. },
  1690. "node_modules/@tsparticles/updater-rotate": {
  1691. "version": "3.9.1",
  1692. "resolved": "https://registry.npmmirror.com/@tsparticles/updater-rotate/-/updater-rotate-3.9.1.tgz",
  1693. "integrity": "sha512-9BfKaGfp28JN82MF2qs6Ae/lJr9EColMfMTHqSKljblwbpVDHte4umuwKl3VjbRt87WD9MGtla66NTUYl+WxuQ==",
  1694. "license": "MIT",
  1695. "dependencies": {
  1696. "@tsparticles/engine": "3.9.1"
  1697. }
  1698. },
  1699. "node_modules/@tsparticles/updater-size": {
  1700. "version": "3.9.1",
  1701. "resolved": "https://registry.npmmirror.com/@tsparticles/updater-size/-/updater-size-3.9.1.tgz",
  1702. "integrity": "sha512-3NSVs0O2ApNKZXfd+y/zNhTXSFeG1Pw4peI8e6z/q5+XLbmue9oiEwoPy/tQLaark3oNj3JU7Q903ZijPyXSzw==",
  1703. "license": "MIT",
  1704. "dependencies": {
  1705. "@tsparticles/engine": "3.9.1"
  1706. }
  1707. },
  1708. "node_modules/@tsparticles/updater-stroke-color": {
  1709. "version": "3.9.1",
  1710. "resolved": "https://registry.npmmirror.com/@tsparticles/updater-stroke-color/-/updater-stroke-color-3.9.1.tgz",
  1711. "integrity": "sha512-3x14+C2is9pZYTg9T2TiA/aM1YMq4wLdYaZDcHm3qO30DZu5oeQq0rm/6w+QOGKYY1Z3Htg9rlSUZkhTHn7eDA==",
  1712. "license": "MIT",
  1713. "dependencies": {
  1714. "@tsparticles/engine": "3.9.1"
  1715. }
  1716. },
  1717. "node_modules/@tsparticles/vue3": {
  1718. "version": "3.0.1",
  1719. "resolved": "https://registry.npmmirror.com/@tsparticles/vue3/-/vue3-3.0.1.tgz",
  1720. "integrity": "sha512-BxaSZ0wtxq33SDsrqLkLWoV88Jd5BnBoYjyVhKSNzOLOesCiG8Z5WQC1QZGTez79l/gBe0xaCDF0ng1e2iKJvA==",
  1721. "funding": [
  1722. {
  1723. "type": "github",
  1724. "url": "https://github.com/sponsors/matteobruni"
  1725. },
  1726. {
  1727. "type": "github",
  1728. "url": "https://github.com/sponsors/tsparticles"
  1729. },
  1730. {
  1731. "type": "buymeacoffee",
  1732. "url": "https://www.buymeacoffee.com/matteobruni"
  1733. }
  1734. ],
  1735. "license": "MIT",
  1736. "dependencies": {
  1737. "@tsparticles/engine": "^3.0.3",
  1738. "vue": "^3.3.13"
  1739. }
  1740. },
  1741. "node_modules/@types/dom-to-image": {
  1742. "version": "2.6.7",
  1743. "resolved": "https://registry.npmjs.org/@types/dom-to-image/-/dom-to-image-2.6.7.tgz",
  1744. "integrity": "sha512-me5VbCv+fcXozblWwG13krNBvuEOm6kA5xoa4RrjDJCNFOZSWR3/QLtOXimBHk1Fisq69Gx3JtOoXtg1N1tijg==",
  1745. "dev": true
  1746. },
  1747. "node_modules/@types/estree": {
  1748. "version": "1.0.8",
  1749. "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz",
  1750. "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
  1751. "dev": true,
  1752. "license": "MIT"
  1753. },
  1754. "node_modules/@types/lodash": {
  1755. "version": "4.17.24",
  1756. "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.24.tgz",
  1757. "integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
  1758. "license": "MIT"
  1759. },
  1760. "node_modules/@types/lodash-es": {
  1761. "version": "4.17.12",
  1762. "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz",
  1763. "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
  1764. "license": "MIT",
  1765. "dependencies": {
  1766. "@types/lodash": "*"
  1767. }
  1768. },
  1769. "node_modules/@types/node": {
  1770. "version": "22.19.19",
  1771. "resolved": "https://registry.npmmirror.com/@types/node/-/node-22.19.19.tgz",
  1772. "integrity": "sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==",
  1773. "dev": true,
  1774. "license": "MIT",
  1775. "dependencies": {
  1776. "undici-types": "~6.21.0"
  1777. }
  1778. },
  1779. "node_modules/@types/pako": {
  1780. "version": "2.0.4",
  1781. "resolved": "https://registry.npmjs.org/@types/pako/-/pako-2.0.4.tgz",
  1782. "integrity": "sha512-VWDCbrLeVXJM9fihYodcLiIv0ku+AlOa/TQ1SvYOaBuyrSKgEcro95LJyIsJ4vSo6BXIxOKxiJAat04CmST9Fw=="
  1783. },
  1784. "node_modules/@types/raf": {
  1785. "version": "3.4.3",
  1786. "resolved": "https://registry.npmjs.org/@types/raf/-/raf-3.4.3.tgz",
  1787. "integrity": "sha512-c4YAvMedbPZ5tEyxzQdMoOhhJ4RD3rngZIdwC2/qDN3d7JpEhB6fiBRKVY1lg5B7Wk+uPBjn5f39j1/2MY1oOw==",
  1788. "optional": true
  1789. },
  1790. "node_modules/@types/trusted-types": {
  1791. "version": "2.0.7",
  1792. "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
  1793. "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
  1794. "optional": true
  1795. },
  1796. "node_modules/@types/web-bluetooth": {
  1797. "version": "0.0.21",
  1798. "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz",
  1799. "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==",
  1800. "license": "MIT"
  1801. },
  1802. "node_modules/@vitejs/plugin-vue": {
  1803. "version": "5.2.4",
  1804. "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz",
  1805. "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==",
  1806. "dev": true,
  1807. "license": "MIT",
  1808. "engines": {
  1809. "node": "^18.0.0 || >=20.0.0"
  1810. },
  1811. "peerDependencies": {
  1812. "vite": "^5.0.0 || ^6.0.0",
  1813. "vue": "^3.2.25"
  1814. }
  1815. },
  1816. "node_modules/@volar/language-core": {
  1817. "version": "2.4.15",
  1818. "resolved": "https://registry.npmmirror.com/@volar/language-core/-/language-core-2.4.15.tgz",
  1819. "integrity": "sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==",
  1820. "dev": true,
  1821. "license": "MIT",
  1822. "dependencies": {
  1823. "@volar/source-map": "2.4.15"
  1824. }
  1825. },
  1826. "node_modules/@volar/source-map": {
  1827. "version": "2.4.15",
  1828. "resolved": "https://registry.npmmirror.com/@volar/source-map/-/source-map-2.4.15.tgz",
  1829. "integrity": "sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==",
  1830. "dev": true,
  1831. "license": "MIT"
  1832. },
  1833. "node_modules/@volar/typescript": {
  1834. "version": "2.4.15",
  1835. "resolved": "https://registry.npmmirror.com/@volar/typescript/-/typescript-2.4.15.tgz",
  1836. "integrity": "sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==",
  1837. "dev": true,
  1838. "license": "MIT",
  1839. "dependencies": {
  1840. "@volar/language-core": "2.4.15",
  1841. "path-browserify": "^1.0.1",
  1842. "vscode-uri": "^3.0.8"
  1843. }
  1844. },
  1845. "node_modules/@vue/compiler-core": {
  1846. "version": "3.5.34",
  1847. "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.34.tgz",
  1848. "integrity": "sha512-s9cLyK5mLcvZ4Agva5QgRsQyLKvts9WbU9DB6NqiZkkGEdwmcEiylj5Jbwkp680drF/NNCV8OlAJSe+yMLxaJw==",
  1849. "license": "MIT",
  1850. "dependencies": {
  1851. "@babel/parser": "^7.29.3",
  1852. "@vue/shared": "3.5.34",
  1853. "entities": "^7.0.1",
  1854. "estree-walker": "^2.0.2",
  1855. "source-map-js": "^1.2.1"
  1856. }
  1857. },
  1858. "node_modules/@vue/compiler-dom": {
  1859. "version": "3.5.34",
  1860. "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.34.tgz",
  1861. "integrity": "sha512-EbF/T++k0e2MMZlJsBhzK8Sgwt0HcIPOhzn1CTB/lv6sQcyk+OWf8YeiLxZp3ro7MbbLcAfAJ6sEvjFWuNgUCw==",
  1862. "license": "MIT",
  1863. "dependencies": {
  1864. "@vue/compiler-core": "3.5.34",
  1865. "@vue/shared": "3.5.34"
  1866. }
  1867. },
  1868. "node_modules/@vue/compiler-sfc": {
  1869. "version": "3.5.34",
  1870. "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.34.tgz",
  1871. "integrity": "sha512-D/ihr6uZeIt6r+pVZf46RWT1fAsLFMbUP7k8G1VkiiWexriED9GrX3echHd4Abbt17zjlfiFJ8z7a3BxZOPNjg==",
  1872. "license": "MIT",
  1873. "dependencies": {
  1874. "@babel/parser": "^7.29.3",
  1875. "@vue/compiler-core": "3.5.34",
  1876. "@vue/compiler-dom": "3.5.34",
  1877. "@vue/compiler-ssr": "3.5.34",
  1878. "@vue/shared": "3.5.34",
  1879. "estree-walker": "^2.0.2",
  1880. "magic-string": "^0.30.21",
  1881. "postcss": "^8.5.14",
  1882. "source-map-js": "^1.2.1"
  1883. }
  1884. },
  1885. "node_modules/@vue/compiler-ssr": {
  1886. "version": "3.5.34",
  1887. "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.34.tgz",
  1888. "integrity": "sha512-cDtTHKibkThKGHH1SP+WdccquNRYQDFH6rRjQCqT9G2ltFAfoR5pUftpab/z+aM5mW9HLLVQW7hfKKQe/1GBeQ==",
  1889. "license": "MIT",
  1890. "dependencies": {
  1891. "@vue/compiler-dom": "3.5.34",
  1892. "@vue/shared": "3.5.34"
  1893. }
  1894. },
  1895. "node_modules/@vue/compiler-vue2": {
  1896. "version": "2.7.16",
  1897. "resolved": "https://registry.npmmirror.com/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz",
  1898. "integrity": "sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==",
  1899. "dev": true,
  1900. "license": "MIT",
  1901. "dependencies": {
  1902. "de-indent": "^1.0.2",
  1903. "he": "^1.2.0"
  1904. }
  1905. },
  1906. "node_modules/@vue/devtools-api": {
  1907. "version": "6.6.4",
  1908. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
  1909. "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
  1910. "license": "MIT"
  1911. },
  1912. "node_modules/@vue/devtools-kit": {
  1913. "version": "7.7.9",
  1914. "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz",
  1915. "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==",
  1916. "license": "MIT",
  1917. "dependencies": {
  1918. "@vue/devtools-shared": "^7.7.9",
  1919. "birpc": "^2.3.0",
  1920. "hookable": "^5.5.3",
  1921. "mitt": "^3.0.1",
  1922. "perfect-debounce": "^1.0.0",
  1923. "speakingurl": "^14.0.1",
  1924. "superjson": "^2.2.2"
  1925. }
  1926. },
  1927. "node_modules/@vue/devtools-shared": {
  1928. "version": "7.7.9",
  1929. "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz",
  1930. "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==",
  1931. "license": "MIT",
  1932. "dependencies": {
  1933. "rfdc": "^1.4.1"
  1934. }
  1935. },
  1936. "node_modules/@vue/language-core": {
  1937. "version": "2.2.12",
  1938. "resolved": "https://registry.npmmirror.com/@vue/language-core/-/language-core-2.2.12.tgz",
  1939. "integrity": "sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==",
  1940. "dev": true,
  1941. "license": "MIT",
  1942. "dependencies": {
  1943. "@volar/language-core": "2.4.15",
  1944. "@vue/compiler-dom": "^3.5.0",
  1945. "@vue/compiler-vue2": "^2.7.16",
  1946. "@vue/shared": "^3.5.0",
  1947. "alien-signals": "^1.0.3",
  1948. "minimatch": "^9.0.3",
  1949. "muggle-string": "^0.4.1",
  1950. "path-browserify": "^1.0.1"
  1951. },
  1952. "peerDependencies": {
  1953. "typescript": "*"
  1954. },
  1955. "peerDependenciesMeta": {
  1956. "typescript": {
  1957. "optional": true
  1958. }
  1959. }
  1960. },
  1961. "node_modules/@vue/reactivity": {
  1962. "version": "3.5.34",
  1963. "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.34.tgz",
  1964. "integrity": "sha512-y9XDjCEuBp+98k+UL5dbYkh57AHU4o6cxZedOPXw3bmrZZYLQsVHguGurq7hVrPCSrQtrnz1f9dssyFr+dMXfQ==",
  1965. "license": "MIT",
  1966. "dependencies": {
  1967. "@vue/shared": "3.5.34"
  1968. }
  1969. },
  1970. "node_modules/@vue/runtime-core": {
  1971. "version": "3.5.34",
  1972. "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.34.tgz",
  1973. "integrity": "sha512-mKeBYvu8tcMSLhypAHBmriUFfWXKTCF/23Z4jiCoYK3UtWepkliViNLuR90V9XOyD62mUxs9p1jsrpK3CCGIzw==",
  1974. "license": "MIT",
  1975. "dependencies": {
  1976. "@vue/reactivity": "3.5.34",
  1977. "@vue/shared": "3.5.34"
  1978. }
  1979. },
  1980. "node_modules/@vue/runtime-dom": {
  1981. "version": "3.5.34",
  1982. "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.34.tgz",
  1983. "integrity": "sha512-e8kZzERmCwUnBRVsgSQlAfrfU2rGoy0FFKPBXSlfEjc/O3KfA7QP0t1/2ZylrbchjmIKB4dPTd07A6WPr0eOrg==",
  1984. "license": "MIT",
  1985. "dependencies": {
  1986. "@vue/reactivity": "3.5.34",
  1987. "@vue/runtime-core": "3.5.34",
  1988. "@vue/shared": "3.5.34",
  1989. "csstype": "^3.2.3"
  1990. }
  1991. },
  1992. "node_modules/@vue/server-renderer": {
  1993. "version": "3.5.34",
  1994. "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.34.tgz",
  1995. "integrity": "sha512-nHxmJoTrKsmrkbILRhkC9gY1G3moZbJTqCzDd7DOOzG5KH9oeJ0Unqrff5f9v0pW//jES05ZkJcNtfE8JjOIew==",
  1996. "license": "MIT",
  1997. "dependencies": {
  1998. "@vue/compiler-ssr": "3.5.34",
  1999. "@vue/shared": "3.5.34"
  2000. },
  2001. "peerDependencies": {
  2002. "vue": "3.5.34"
  2003. }
  2004. },
  2005. "node_modules/@vue/shared": {
  2006. "version": "3.5.34",
  2007. "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.34.tgz",
  2008. "integrity": "sha512-24uqU4OIiX29ryC3MeWid/Xf2fa2EFRUVLb77nRhk+UrTVrh/XiGtFAFmJBAtBRbjwNdsPRP+jj/OL27Eg1NDA==",
  2009. "license": "MIT"
  2010. },
  2011. "node_modules/@vue/tsconfig": {
  2012. "version": "0.7.0",
  2013. "resolved": "https://registry.npmmirror.com/@vue/tsconfig/-/tsconfig-0.7.0.tgz",
  2014. "integrity": "sha512-ku2uNz5MaZ9IerPPUyOHzyjhXoX2kVJaVf7hL315DC17vS6IiZRmmCPfggNbU16QTvM80+uYYy3eYJB59WCtvg==",
  2015. "dev": true,
  2016. "license": "MIT",
  2017. "peerDependencies": {
  2018. "typescript": "5.x",
  2019. "vue": "^3.4.0"
  2020. },
  2021. "peerDependenciesMeta": {
  2022. "typescript": {
  2023. "optional": true
  2024. },
  2025. "vue": {
  2026. "optional": true
  2027. }
  2028. }
  2029. },
  2030. "node_modules/@vueuse/core": {
  2031. "version": "14.3.0",
  2032. "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-14.3.0.tgz",
  2033. "integrity": "sha512-aHfz47g0ZhMtTVHmIzMVpJy8ePhhOy68GY5bv110+5DVtZ+W7BsOx+m61UNQqfrWyPztIHIanWa3E2tib3NFIw==",
  2034. "license": "MIT",
  2035. "dependencies": {
  2036. "@types/web-bluetooth": "^0.0.21",
  2037. "@vueuse/metadata": "14.3.0",
  2038. "@vueuse/shared": "14.3.0"
  2039. },
  2040. "funding": {
  2041. "url": "https://github.com/sponsors/antfu"
  2042. },
  2043. "peerDependencies": {
  2044. "vue": "^3.5.0"
  2045. }
  2046. },
  2047. "node_modules/@vueuse/metadata": {
  2048. "version": "14.3.0",
  2049. "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-14.3.0.tgz",
  2050. "integrity": "sha512-BwxmbAzwAVF50+MW57GXOUEV61nFBGnlBvrTqj49PqWJu3uw7hdu72ztXeZ33RdZtDY6kO+bfCAE1PCn88Tktw==",
  2051. "license": "MIT",
  2052. "funding": {
  2053. "url": "https://github.com/sponsors/antfu"
  2054. }
  2055. },
  2056. "node_modules/@vueuse/shared": {
  2057. "version": "14.3.0",
  2058. "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-14.3.0.tgz",
  2059. "integrity": "sha512-bZpge9eSXwa4ToSiqJ7j6KRwhAsneMFoSz3LMWKQDkqimm3D/tbFlrklrs/IOqC8tEcYmXQZJ6N0UrjhBirVCg==",
  2060. "license": "MIT",
  2061. "funding": {
  2062. "url": "https://github.com/sponsors/antfu"
  2063. },
  2064. "peerDependencies": {
  2065. "vue": "^3.5.0"
  2066. }
  2067. },
  2068. "node_modules/agent-base": {
  2069. "version": "6.0.2",
  2070. "resolved": "https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz",
  2071. "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
  2072. "license": "MIT",
  2073. "dependencies": {
  2074. "debug": "4"
  2075. },
  2076. "engines": {
  2077. "node": ">= 6.0.0"
  2078. }
  2079. },
  2080. "node_modules/alien-signals": {
  2081. "version": "1.0.13",
  2082. "resolved": "https://registry.npmmirror.com/alien-signals/-/alien-signals-1.0.13.tgz",
  2083. "integrity": "sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==",
  2084. "dev": true,
  2085. "license": "MIT"
  2086. },
  2087. "node_modules/async-validator": {
  2088. "version": "4.2.5",
  2089. "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
  2090. "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
  2091. "license": "MIT"
  2092. },
  2093. "node_modules/asynckit": {
  2094. "version": "0.4.0",
  2095. "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz",
  2096. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  2097. "license": "MIT"
  2098. },
  2099. "node_modules/axios": {
  2100. "version": "1.16.1",
  2101. "resolved": "https://registry.npmmirror.com/axios/-/axios-1.16.1.tgz",
  2102. "integrity": "sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A==",
  2103. "license": "MIT",
  2104. "dependencies": {
  2105. "follow-redirects": "^1.16.0",
  2106. "form-data": "^4.0.5",
  2107. "https-proxy-agent": "^5.0.1",
  2108. "proxy-from-env": "^2.1.0"
  2109. }
  2110. },
  2111. "node_modules/balanced-match": {
  2112. "version": "1.0.2",
  2113. "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz",
  2114. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  2115. "dev": true,
  2116. "license": "MIT"
  2117. },
  2118. "node_modules/base64-arraybuffer": {
  2119. "version": "1.0.2",
  2120. "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz",
  2121. "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==",
  2122. "optional": true,
  2123. "engines": {
  2124. "node": ">= 0.6.0"
  2125. }
  2126. },
  2127. "node_modules/birpc": {
  2128. "version": "2.9.0",
  2129. "resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.9.0.tgz",
  2130. "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
  2131. "license": "MIT",
  2132. "funding": {
  2133. "url": "https://github.com/sponsors/antfu"
  2134. }
  2135. },
  2136. "node_modules/brace-expansion": {
  2137. "version": "2.1.0",
  2138. "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.1.0.tgz",
  2139. "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==",
  2140. "dev": true,
  2141. "license": "MIT",
  2142. "dependencies": {
  2143. "balanced-match": "^1.0.0"
  2144. }
  2145. },
  2146. "node_modules/call-bind-apply-helpers": {
  2147. "version": "1.0.2",
  2148. "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  2149. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  2150. "license": "MIT",
  2151. "dependencies": {
  2152. "es-errors": "^1.3.0",
  2153. "function-bind": "^1.1.2"
  2154. },
  2155. "engines": {
  2156. "node": ">= 0.4"
  2157. }
  2158. },
  2159. "node_modules/canvg": {
  2160. "version": "3.0.11",
  2161. "resolved": "https://registry.npmjs.org/canvg/-/canvg-3.0.11.tgz",
  2162. "integrity": "sha512-5ON+q7jCTgMp9cjpu4Jo6XbvfYwSB2Ow3kzHKfIyJfaCAOHLbdKPQqGKgfED/R5B+3TFFfe8pegYA+b423SRyA==",
  2163. "optional": true,
  2164. "dependencies": {
  2165. "@babel/runtime": "^7.12.5",
  2166. "@types/raf": "^3.4.0",
  2167. "core-js": "^3.8.3",
  2168. "raf": "^3.4.1",
  2169. "regenerator-runtime": "^0.13.7",
  2170. "rgbcolor": "^1.0.1",
  2171. "stackblur-canvas": "^2.0.0",
  2172. "svg-pathdata": "^6.0.3"
  2173. },
  2174. "engines": {
  2175. "node": ">=10.0.0"
  2176. }
  2177. },
  2178. "node_modules/chokidar": {
  2179. "version": "4.0.3",
  2180. "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz",
  2181. "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
  2182. "dev": true,
  2183. "license": "MIT",
  2184. "dependencies": {
  2185. "readdirp": "^4.0.1"
  2186. },
  2187. "engines": {
  2188. "node": ">= 14.16.0"
  2189. },
  2190. "funding": {
  2191. "url": "https://paulmillr.com/funding/"
  2192. }
  2193. },
  2194. "node_modules/combined-stream": {
  2195. "version": "1.0.8",
  2196. "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz",
  2197. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  2198. "license": "MIT",
  2199. "dependencies": {
  2200. "delayed-stream": "~1.0.0"
  2201. },
  2202. "engines": {
  2203. "node": ">= 0.8"
  2204. }
  2205. },
  2206. "node_modules/copy-anything": {
  2207. "version": "4.0.5",
  2208. "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-4.0.5.tgz",
  2209. "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==",
  2210. "license": "MIT",
  2211. "dependencies": {
  2212. "is-what": "^5.2.0"
  2213. },
  2214. "engines": {
  2215. "node": ">=18"
  2216. },
  2217. "funding": {
  2218. "url": "https://github.com/sponsors/mesqueeb"
  2219. }
  2220. },
  2221. "node_modules/core-js": {
  2222. "version": "3.49.0",
  2223. "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.49.0.tgz",
  2224. "integrity": "sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==",
  2225. "hasInstallScript": true,
  2226. "optional": true,
  2227. "funding": {
  2228. "type": "opencollective",
  2229. "url": "https://opencollective.com/core-js"
  2230. }
  2231. },
  2232. "node_modules/css-line-break": {
  2233. "version": "2.1.0",
  2234. "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz",
  2235. "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==",
  2236. "optional": true,
  2237. "dependencies": {
  2238. "utrie": "^1.0.2"
  2239. }
  2240. },
  2241. "node_modules/csstype": {
  2242. "version": "3.2.3",
  2243. "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
  2244. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  2245. "license": "MIT"
  2246. },
  2247. "node_modules/dayjs": {
  2248. "version": "1.11.20",
  2249. "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.20.tgz",
  2250. "integrity": "sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==",
  2251. "license": "MIT"
  2252. },
  2253. "node_modules/de-indent": {
  2254. "version": "1.0.2",
  2255. "resolved": "https://registry.npmmirror.com/de-indent/-/de-indent-1.0.2.tgz",
  2256. "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==",
  2257. "dev": true,
  2258. "license": "MIT"
  2259. },
  2260. "node_modules/debug": {
  2261. "version": "4.4.3",
  2262. "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
  2263. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  2264. "license": "MIT",
  2265. "dependencies": {
  2266. "ms": "^2.1.3"
  2267. },
  2268. "engines": {
  2269. "node": ">=6.0"
  2270. },
  2271. "peerDependenciesMeta": {
  2272. "supports-color": {
  2273. "optional": true
  2274. }
  2275. }
  2276. },
  2277. "node_modules/delayed-stream": {
  2278. "version": "1.0.0",
  2279. "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz",
  2280. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  2281. "license": "MIT",
  2282. "engines": {
  2283. "node": ">=0.4.0"
  2284. }
  2285. },
  2286. "node_modules/detect-libc": {
  2287. "version": "2.1.2",
  2288. "resolved": "https://registry.npmmirror.com/detect-libc/-/detect-libc-2.1.2.tgz",
  2289. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  2290. "dev": true,
  2291. "license": "Apache-2.0",
  2292. "optional": true,
  2293. "engines": {
  2294. "node": ">=8"
  2295. }
  2296. },
  2297. "node_modules/dom-to-image": {
  2298. "version": "2.6.0",
  2299. "resolved": "https://registry.npmjs.org/dom-to-image/-/dom-to-image-2.6.0.tgz",
  2300. "integrity": "sha512-Dt0QdaHmLpjURjU7Tnu3AgYSF2LuOmksSGsUcE6ItvJoCWTBEmiMXcqBdNSAm9+QbbwD7JMoVsuuKX6ZVQv1qA=="
  2301. },
  2302. "node_modules/dompurify": {
  2303. "version": "3.4.11",
  2304. "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.11.tgz",
  2305. "integrity": "sha512-zhlUV12GsaRzMsf9q5M254YhA4+VuF0fG+QFqu6aYpoGlKtz+w8//jBcGVYBgQkR5GHjUomejY84AV+/uPbWdw==",
  2306. "optional": true,
  2307. "optionalDependencies": {
  2308. "@types/trusted-types": "^2.0.7"
  2309. }
  2310. },
  2311. "node_modules/dunder-proto": {
  2312. "version": "1.0.1",
  2313. "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
  2314. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  2315. "license": "MIT",
  2316. "dependencies": {
  2317. "call-bind-apply-helpers": "^1.0.1",
  2318. "es-errors": "^1.3.0",
  2319. "gopd": "^1.2.0"
  2320. },
  2321. "engines": {
  2322. "node": ">= 0.4"
  2323. }
  2324. },
  2325. "node_modules/echarts": {
  2326. "version": "6.1.0",
  2327. "resolved": "https://registry.npmjs.org/echarts/-/echarts-6.1.0.tgz",
  2328. "integrity": "sha512-q0yaFPggC9FUdsWH4blavRWFmxdrIodbkoKNAjJudAI6CA9gNPxHtV2RcZNEepZVlk4yvBYkOkbk6HIVpIyHZA==",
  2329. "dependencies": {
  2330. "tslib": "2.3.0",
  2331. "zrender": "6.1.0"
  2332. }
  2333. },
  2334. "node_modules/element-plus": {
  2335. "version": "2.14.0",
  2336. "resolved": "https://registry.npmmirror.com/element-plus/-/element-plus-2.14.0.tgz",
  2337. "integrity": "sha512-POgH+TtoreaEKWqYYAVQyE6i8rQMEFqAEublyF29dBA5yASWPLKY6EzfeqBTr2Uv26mPss4vSrMrNPyaK7LX5w==",
  2338. "license": "MIT",
  2339. "dependencies": {
  2340. "@ctrl/tinycolor": "^4.2.0",
  2341. "@element-plus/icons-vue": "^2.3.2",
  2342. "@floating-ui/dom": "^1.0.1",
  2343. "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.8",
  2344. "@types/lodash": "^4.17.24",
  2345. "@types/lodash-es": "^4.17.12",
  2346. "@vueuse/core": "14.3.0",
  2347. "async-validator": "^4.2.5",
  2348. "dayjs": "^1.11.20",
  2349. "lodash": "^4.18.1",
  2350. "lodash-es": "^4.18.1",
  2351. "lodash-unified": "^1.0.3",
  2352. "memoize-one": "^6.0.0",
  2353. "normalize-wheel-es": "^1.2.0",
  2354. "vue-component-type-helpers": "^3.2.8"
  2355. },
  2356. "peerDependencies": {
  2357. "vue": "^3.3.7"
  2358. }
  2359. },
  2360. "node_modules/entities": {
  2361. "version": "7.0.1",
  2362. "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz",
  2363. "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
  2364. "license": "BSD-2-Clause",
  2365. "engines": {
  2366. "node": ">=0.12"
  2367. },
  2368. "funding": {
  2369. "url": "https://github.com/fb55/entities?sponsor=1"
  2370. }
  2371. },
  2372. "node_modules/es-define-property": {
  2373. "version": "1.0.1",
  2374. "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz",
  2375. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  2376. "license": "MIT",
  2377. "engines": {
  2378. "node": ">= 0.4"
  2379. }
  2380. },
  2381. "node_modules/es-errors": {
  2382. "version": "1.3.0",
  2383. "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz",
  2384. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  2385. "license": "MIT",
  2386. "engines": {
  2387. "node": ">= 0.4"
  2388. }
  2389. },
  2390. "node_modules/es-object-atoms": {
  2391. "version": "1.1.1",
  2392. "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  2393. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  2394. "license": "MIT",
  2395. "dependencies": {
  2396. "es-errors": "^1.3.0"
  2397. },
  2398. "engines": {
  2399. "node": ">= 0.4"
  2400. }
  2401. },
  2402. "node_modules/es-set-tostringtag": {
  2403. "version": "2.1.0",
  2404. "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  2405. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  2406. "license": "MIT",
  2407. "dependencies": {
  2408. "es-errors": "^1.3.0",
  2409. "get-intrinsic": "^1.2.6",
  2410. "has-tostringtag": "^1.0.2",
  2411. "hasown": "^2.0.2"
  2412. },
  2413. "engines": {
  2414. "node": ">= 0.4"
  2415. }
  2416. },
  2417. "node_modules/esbuild": {
  2418. "version": "0.25.12",
  2419. "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.25.12.tgz",
  2420. "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
  2421. "dev": true,
  2422. "hasInstallScript": true,
  2423. "license": "MIT",
  2424. "bin": {
  2425. "esbuild": "bin/esbuild"
  2426. },
  2427. "engines": {
  2428. "node": ">=18"
  2429. },
  2430. "optionalDependencies": {
  2431. "@esbuild/aix-ppc64": "0.25.12",
  2432. "@esbuild/android-arm": "0.25.12",
  2433. "@esbuild/android-arm64": "0.25.12",
  2434. "@esbuild/android-x64": "0.25.12",
  2435. "@esbuild/darwin-arm64": "0.25.12",
  2436. "@esbuild/darwin-x64": "0.25.12",
  2437. "@esbuild/freebsd-arm64": "0.25.12",
  2438. "@esbuild/freebsd-x64": "0.25.12",
  2439. "@esbuild/linux-arm": "0.25.12",
  2440. "@esbuild/linux-arm64": "0.25.12",
  2441. "@esbuild/linux-ia32": "0.25.12",
  2442. "@esbuild/linux-loong64": "0.25.12",
  2443. "@esbuild/linux-mips64el": "0.25.12",
  2444. "@esbuild/linux-ppc64": "0.25.12",
  2445. "@esbuild/linux-riscv64": "0.25.12",
  2446. "@esbuild/linux-s390x": "0.25.12",
  2447. "@esbuild/linux-x64": "0.25.12",
  2448. "@esbuild/netbsd-arm64": "0.25.12",
  2449. "@esbuild/netbsd-x64": "0.25.12",
  2450. "@esbuild/openbsd-arm64": "0.25.12",
  2451. "@esbuild/openbsd-x64": "0.25.12",
  2452. "@esbuild/openharmony-arm64": "0.25.12",
  2453. "@esbuild/sunos-x64": "0.25.12",
  2454. "@esbuild/win32-arm64": "0.25.12",
  2455. "@esbuild/win32-ia32": "0.25.12",
  2456. "@esbuild/win32-x64": "0.25.12"
  2457. }
  2458. },
  2459. "node_modules/estree-walker": {
  2460. "version": "2.0.2",
  2461. "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz",
  2462. "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
  2463. "license": "MIT"
  2464. },
  2465. "node_modules/fast-png": {
  2466. "version": "6.4.0",
  2467. "resolved": "https://registry.npmjs.org/fast-png/-/fast-png-6.4.0.tgz",
  2468. "integrity": "sha512-kAqZq1TlgBjZcLr5mcN6NP5Rv4V2f22z00c3g8vRrwkcqjerx7BEhPbOnWCPqaHUl2XWQBJQvOT/FQhdMT7X/Q==",
  2469. "dependencies": {
  2470. "@types/pako": "^2.0.3",
  2471. "iobuffer": "^5.3.2",
  2472. "pako": "^2.1.0"
  2473. }
  2474. },
  2475. "node_modules/fdir": {
  2476. "version": "6.5.0",
  2477. "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
  2478. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  2479. "dev": true,
  2480. "license": "MIT",
  2481. "engines": {
  2482. "node": ">=12.0.0"
  2483. },
  2484. "peerDependencies": {
  2485. "picomatch": "^3 || ^4"
  2486. },
  2487. "peerDependenciesMeta": {
  2488. "picomatch": {
  2489. "optional": true
  2490. }
  2491. }
  2492. },
  2493. "node_modules/fflate": {
  2494. "version": "0.8.3",
  2495. "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.3.tgz",
  2496. "integrity": "sha512-tbZNuJrLwGUp3zshBtdy4W+ORxZuIh8a5ilyIEQDC5rY1f3U20JMry0Ll3WBzU58EZKsEuJFXhb5gwv8CsPvgA=="
  2497. },
  2498. "node_modules/follow-redirects": {
  2499. "version": "1.16.0",
  2500. "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.16.0.tgz",
  2501. "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
  2502. "funding": [
  2503. {
  2504. "type": "individual",
  2505. "url": "https://github.com/sponsors/RubenVerborgh"
  2506. }
  2507. ],
  2508. "license": "MIT",
  2509. "engines": {
  2510. "node": ">=4.0"
  2511. },
  2512. "peerDependenciesMeta": {
  2513. "debug": {
  2514. "optional": true
  2515. }
  2516. }
  2517. },
  2518. "node_modules/form-data": {
  2519. "version": "4.0.5",
  2520. "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.5.tgz",
  2521. "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
  2522. "license": "MIT",
  2523. "dependencies": {
  2524. "asynckit": "^0.4.0",
  2525. "combined-stream": "^1.0.8",
  2526. "es-set-tostringtag": "^2.1.0",
  2527. "hasown": "^2.0.2",
  2528. "mime-types": "^2.1.12"
  2529. },
  2530. "engines": {
  2531. "node": ">= 6"
  2532. }
  2533. },
  2534. "node_modules/fsevents": {
  2535. "version": "2.3.3",
  2536. "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz",
  2537. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  2538. "dev": true,
  2539. "hasInstallScript": true,
  2540. "license": "MIT",
  2541. "optional": true,
  2542. "os": [
  2543. "darwin"
  2544. ],
  2545. "engines": {
  2546. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  2547. }
  2548. },
  2549. "node_modules/function-bind": {
  2550. "version": "1.1.2",
  2551. "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz",
  2552. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  2553. "license": "MIT",
  2554. "funding": {
  2555. "url": "https://github.com/sponsors/ljharb"
  2556. }
  2557. },
  2558. "node_modules/get-intrinsic": {
  2559. "version": "1.3.0",
  2560. "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  2561. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  2562. "license": "MIT",
  2563. "dependencies": {
  2564. "call-bind-apply-helpers": "^1.0.2",
  2565. "es-define-property": "^1.0.1",
  2566. "es-errors": "^1.3.0",
  2567. "es-object-atoms": "^1.1.1",
  2568. "function-bind": "^1.1.2",
  2569. "get-proto": "^1.0.1",
  2570. "gopd": "^1.2.0",
  2571. "has-symbols": "^1.1.0",
  2572. "hasown": "^2.0.2",
  2573. "math-intrinsics": "^1.1.0"
  2574. },
  2575. "engines": {
  2576. "node": ">= 0.4"
  2577. },
  2578. "funding": {
  2579. "url": "https://github.com/sponsors/ljharb"
  2580. }
  2581. },
  2582. "node_modules/get-proto": {
  2583. "version": "1.0.1",
  2584. "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz",
  2585. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  2586. "license": "MIT",
  2587. "dependencies": {
  2588. "dunder-proto": "^1.0.1",
  2589. "es-object-atoms": "^1.0.0"
  2590. },
  2591. "engines": {
  2592. "node": ">= 0.4"
  2593. }
  2594. },
  2595. "node_modules/gopd": {
  2596. "version": "1.2.0",
  2597. "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
  2598. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  2599. "license": "MIT",
  2600. "engines": {
  2601. "node": ">= 0.4"
  2602. },
  2603. "funding": {
  2604. "url": "https://github.com/sponsors/ljharb"
  2605. }
  2606. },
  2607. "node_modules/has-symbols": {
  2608. "version": "1.1.0",
  2609. "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz",
  2610. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  2611. "license": "MIT",
  2612. "engines": {
  2613. "node": ">= 0.4"
  2614. },
  2615. "funding": {
  2616. "url": "https://github.com/sponsors/ljharb"
  2617. }
  2618. },
  2619. "node_modules/has-tostringtag": {
  2620. "version": "1.0.2",
  2621. "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  2622. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  2623. "license": "MIT",
  2624. "dependencies": {
  2625. "has-symbols": "^1.0.3"
  2626. },
  2627. "engines": {
  2628. "node": ">= 0.4"
  2629. },
  2630. "funding": {
  2631. "url": "https://github.com/sponsors/ljharb"
  2632. }
  2633. },
  2634. "node_modules/hasown": {
  2635. "version": "2.0.3",
  2636. "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.3.tgz",
  2637. "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
  2638. "license": "MIT",
  2639. "dependencies": {
  2640. "function-bind": "^1.1.2"
  2641. },
  2642. "engines": {
  2643. "node": ">= 0.4"
  2644. }
  2645. },
  2646. "node_modules/he": {
  2647. "version": "1.2.0",
  2648. "resolved": "https://registry.npmmirror.com/he/-/he-1.2.0.tgz",
  2649. "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
  2650. "dev": true,
  2651. "license": "MIT",
  2652. "bin": {
  2653. "he": "bin/he"
  2654. }
  2655. },
  2656. "node_modules/hookable": {
  2657. "version": "5.5.3",
  2658. "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz",
  2659. "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
  2660. "license": "MIT"
  2661. },
  2662. "node_modules/html2canvas": {
  2663. "version": "1.4.1",
  2664. "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz",
  2665. "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==",
  2666. "optional": true,
  2667. "dependencies": {
  2668. "css-line-break": "^2.1.0",
  2669. "text-segmentation": "^1.0.3"
  2670. },
  2671. "engines": {
  2672. "node": ">=8.0.0"
  2673. }
  2674. },
  2675. "node_modules/https-proxy-agent": {
  2676. "version": "5.0.1",
  2677. "resolved": "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
  2678. "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
  2679. "license": "MIT",
  2680. "dependencies": {
  2681. "agent-base": "6",
  2682. "debug": "4"
  2683. },
  2684. "engines": {
  2685. "node": ">= 6"
  2686. }
  2687. },
  2688. "node_modules/immutable": {
  2689. "version": "5.1.5",
  2690. "resolved": "https://registry.npmmirror.com/immutable/-/immutable-5.1.5.tgz",
  2691. "integrity": "sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==",
  2692. "dev": true,
  2693. "license": "MIT"
  2694. },
  2695. "node_modules/iobuffer": {
  2696. "version": "5.4.0",
  2697. "resolved": "https://registry.npmjs.org/iobuffer/-/iobuffer-5.4.0.tgz",
  2698. "integrity": "sha512-DRebOWuqDvxunfkNJAlc3IzWIPD5xVxwUNbHr7xKB8E6aLJxIPfNX3CoMJghcFjpv6RWQsrcJbghtEwSPoJqMA=="
  2699. },
  2700. "node_modules/is-extglob": {
  2701. "version": "2.1.1",
  2702. "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz",
  2703. "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
  2704. "dev": true,
  2705. "license": "MIT",
  2706. "optional": true,
  2707. "engines": {
  2708. "node": ">=0.10.0"
  2709. }
  2710. },
  2711. "node_modules/is-glob": {
  2712. "version": "4.0.3",
  2713. "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz",
  2714. "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
  2715. "dev": true,
  2716. "license": "MIT",
  2717. "optional": true,
  2718. "dependencies": {
  2719. "is-extglob": "^2.1.1"
  2720. },
  2721. "engines": {
  2722. "node": ">=0.10.0"
  2723. }
  2724. },
  2725. "node_modules/is-what": {
  2726. "version": "5.5.0",
  2727. "resolved": "https://registry.npmmirror.com/is-what/-/is-what-5.5.0.tgz",
  2728. "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==",
  2729. "license": "MIT",
  2730. "engines": {
  2731. "node": ">=18"
  2732. },
  2733. "funding": {
  2734. "url": "https://github.com/sponsors/mesqueeb"
  2735. }
  2736. },
  2737. "node_modules/jsencrypt": {
  2738. "version": "3.5.4",
  2739. "resolved": "https://registry.npmmirror.com/jsencrypt/-/jsencrypt-3.5.4.tgz",
  2740. "integrity": "sha512-kNjfYEMNASxrDGsmcSQh/rUTmcoRfSUkxnAz+MMywM8jtGu+fFEZ3nJjHM58zscVnwR0fYmG9sGkTDjqUdpiwA==",
  2741. "license": "MIT"
  2742. },
  2743. "node_modules/jspdf": {
  2744. "version": "4.2.1",
  2745. "resolved": "https://registry.npmjs.org/jspdf/-/jspdf-4.2.1.tgz",
  2746. "integrity": "sha512-YyAXyvnmjTbR4bHQRLzex3CuINCDlQnBqoSYyjJwTP2x9jDLuKDzy7aKUl0hgx3uhcl7xzg32agn5vlie6HIlQ==",
  2747. "dependencies": {
  2748. "@babel/runtime": "^7.28.6",
  2749. "fast-png": "^6.2.0",
  2750. "fflate": "^0.8.1"
  2751. },
  2752. "optionalDependencies": {
  2753. "canvg": "^3.0.11",
  2754. "core-js": "^3.6.0",
  2755. "dompurify": "^3.3.1",
  2756. "html2canvas": "^1.0.0-rc.5"
  2757. }
  2758. },
  2759. "node_modules/lodash": {
  2760. "version": "4.18.1",
  2761. "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.18.1.tgz",
  2762. "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
  2763. "license": "MIT"
  2764. },
  2765. "node_modules/lodash-es": {
  2766. "version": "4.18.1",
  2767. "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.18.1.tgz",
  2768. "integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A=="
  2769. },
  2770. "node_modules/lodash-unified": {
  2771. "version": "1.0.3",
  2772. "resolved": "https://registry.npmmirror.com/lodash-unified/-/lodash-unified-1.0.3.tgz",
  2773. "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==",
  2774. "license": "MIT",
  2775. "peerDependencies": {
  2776. "@types/lodash-es": "*",
  2777. "lodash": "*",
  2778. "lodash-es": "*"
  2779. }
  2780. },
  2781. "node_modules/magic-string": {
  2782. "version": "0.30.21",
  2783. "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
  2784. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  2785. "license": "MIT",
  2786. "dependencies": {
  2787. "@jridgewell/sourcemap-codec": "^1.5.5"
  2788. }
  2789. },
  2790. "node_modules/math-intrinsics": {
  2791. "version": "1.1.0",
  2792. "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  2793. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  2794. "license": "MIT",
  2795. "engines": {
  2796. "node": ">= 0.4"
  2797. }
  2798. },
  2799. "node_modules/memoize-one": {
  2800. "version": "6.0.0",
  2801. "resolved": "https://registry.npmmirror.com/memoize-one/-/memoize-one-6.0.0.tgz",
  2802. "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==",
  2803. "license": "MIT"
  2804. },
  2805. "node_modules/mime-db": {
  2806. "version": "1.52.0",
  2807. "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
  2808. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  2809. "license": "MIT",
  2810. "engines": {
  2811. "node": ">= 0.6"
  2812. }
  2813. },
  2814. "node_modules/mime-types": {
  2815. "version": "2.1.35",
  2816. "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz",
  2817. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  2818. "license": "MIT",
  2819. "dependencies": {
  2820. "mime-db": "1.52.0"
  2821. },
  2822. "engines": {
  2823. "node": ">= 0.6"
  2824. }
  2825. },
  2826. "node_modules/minimatch": {
  2827. "version": "9.0.9",
  2828. "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.9.tgz",
  2829. "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==",
  2830. "dev": true,
  2831. "license": "ISC",
  2832. "dependencies": {
  2833. "brace-expansion": "^2.0.2"
  2834. },
  2835. "engines": {
  2836. "node": ">=16 || 14 >=14.17"
  2837. },
  2838. "funding": {
  2839. "url": "https://github.com/sponsors/isaacs"
  2840. }
  2841. },
  2842. "node_modules/mitt": {
  2843. "version": "3.0.1",
  2844. "resolved": "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz",
  2845. "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
  2846. "license": "MIT"
  2847. },
  2848. "node_modules/ms": {
  2849. "version": "2.1.3",
  2850. "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
  2851. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  2852. "license": "MIT"
  2853. },
  2854. "node_modules/muggle-string": {
  2855. "version": "0.4.1",
  2856. "resolved": "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz",
  2857. "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
  2858. "dev": true,
  2859. "license": "MIT"
  2860. },
  2861. "node_modules/nanoid": {
  2862. "version": "3.3.12",
  2863. "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.12.tgz",
  2864. "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
  2865. "funding": [
  2866. {
  2867. "type": "github",
  2868. "url": "https://github.com/sponsors/ai"
  2869. }
  2870. ],
  2871. "license": "MIT",
  2872. "bin": {
  2873. "nanoid": "bin/nanoid.cjs"
  2874. },
  2875. "engines": {
  2876. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2877. }
  2878. },
  2879. "node_modules/neo-async": {
  2880. "version": "2.6.2",
  2881. "resolved": "https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz",
  2882. "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
  2883. "dev": true,
  2884. "license": "MIT"
  2885. },
  2886. "node_modules/node-addon-api": {
  2887. "version": "7.1.1",
  2888. "resolved": "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-7.1.1.tgz",
  2889. "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
  2890. "dev": true,
  2891. "license": "MIT",
  2892. "optional": true
  2893. },
  2894. "node_modules/normalize-wheel-es": {
  2895. "version": "1.2.0",
  2896. "resolved": "https://registry.npmmirror.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz",
  2897. "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==",
  2898. "license": "BSD-3-Clause"
  2899. },
  2900. "node_modules/pako": {
  2901. "version": "2.1.0",
  2902. "resolved": "https://registry.npmjs.org/pako/-/pako-2.1.0.tgz",
  2903. "integrity": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug=="
  2904. },
  2905. "node_modules/path-browserify": {
  2906. "version": "1.0.1",
  2907. "resolved": "https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz",
  2908. "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
  2909. "dev": true,
  2910. "license": "MIT"
  2911. },
  2912. "node_modules/perfect-debounce": {
  2913. "version": "1.0.0",
  2914. "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
  2915. "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
  2916. "license": "MIT"
  2917. },
  2918. "node_modules/performance-now": {
  2919. "version": "2.1.0",
  2920. "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
  2921. "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==",
  2922. "optional": true
  2923. },
  2924. "node_modules/picocolors": {
  2925. "version": "1.1.1",
  2926. "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
  2927. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2928. "license": "ISC"
  2929. },
  2930. "node_modules/picomatch": {
  2931. "version": "4.0.4",
  2932. "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.4.tgz",
  2933. "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
  2934. "dev": true,
  2935. "license": "MIT",
  2936. "engines": {
  2937. "node": ">=12"
  2938. },
  2939. "funding": {
  2940. "url": "https://github.com/sponsors/jonschlinkert"
  2941. }
  2942. },
  2943. "node_modules/pinia": {
  2944. "version": "3.0.4",
  2945. "resolved": "https://registry.npmmirror.com/pinia/-/pinia-3.0.4.tgz",
  2946. "integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
  2947. "license": "MIT",
  2948. "dependencies": {
  2949. "@vue/devtools-api": "^7.7.7"
  2950. },
  2951. "funding": {
  2952. "url": "https://github.com/sponsors/posva"
  2953. },
  2954. "peerDependencies": {
  2955. "typescript": ">=4.5.0",
  2956. "vue": "^3.5.11"
  2957. },
  2958. "peerDependenciesMeta": {
  2959. "typescript": {
  2960. "optional": true
  2961. }
  2962. }
  2963. },
  2964. "node_modules/pinia/node_modules/@vue/devtools-api": {
  2965. "version": "7.7.9",
  2966. "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-7.7.9.tgz",
  2967. "integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==",
  2968. "license": "MIT",
  2969. "dependencies": {
  2970. "@vue/devtools-kit": "^7.7.9"
  2971. }
  2972. },
  2973. "node_modules/postcss": {
  2974. "version": "8.5.14",
  2975. "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.14.tgz",
  2976. "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==",
  2977. "funding": [
  2978. {
  2979. "type": "opencollective",
  2980. "url": "https://opencollective.com/postcss/"
  2981. },
  2982. {
  2983. "type": "tidelift",
  2984. "url": "https://tidelift.com/funding/github/npm/postcss"
  2985. },
  2986. {
  2987. "type": "github",
  2988. "url": "https://github.com/sponsors/ai"
  2989. }
  2990. ],
  2991. "license": "MIT",
  2992. "dependencies": {
  2993. "nanoid": "^3.3.11",
  2994. "picocolors": "^1.1.1",
  2995. "source-map-js": "^1.2.1"
  2996. },
  2997. "engines": {
  2998. "node": "^10 || ^12 || >=14"
  2999. }
  3000. },
  3001. "node_modules/proxy-from-env": {
  3002. "version": "2.1.0",
  3003. "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
  3004. "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
  3005. "license": "MIT",
  3006. "engines": {
  3007. "node": ">=10"
  3008. }
  3009. },
  3010. "node_modules/raf": {
  3011. "version": "3.4.1",
  3012. "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz",
  3013. "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==",
  3014. "optional": true,
  3015. "dependencies": {
  3016. "performance-now": "^2.1.0"
  3017. }
  3018. },
  3019. "node_modules/readdirp": {
  3020. "version": "4.1.2",
  3021. "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.2.tgz",
  3022. "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
  3023. "dev": true,
  3024. "license": "MIT",
  3025. "engines": {
  3026. "node": ">= 14.18.0"
  3027. },
  3028. "funding": {
  3029. "type": "individual",
  3030. "url": "https://paulmillr.com/funding/"
  3031. }
  3032. },
  3033. "node_modules/regenerator-runtime": {
  3034. "version": "0.13.11",
  3035. "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
  3036. "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==",
  3037. "optional": true
  3038. },
  3039. "node_modules/rfdc": {
  3040. "version": "1.4.1",
  3041. "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz",
  3042. "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
  3043. "license": "MIT"
  3044. },
  3045. "node_modules/rgbcolor": {
  3046. "version": "1.0.1",
  3047. "resolved": "https://registry.npmjs.org/rgbcolor/-/rgbcolor-1.0.1.tgz",
  3048. "integrity": "sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==",
  3049. "optional": true,
  3050. "engines": {
  3051. "node": ">= 0.8.15"
  3052. }
  3053. },
  3054. "node_modules/rollup": {
  3055. "version": "4.60.4",
  3056. "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.60.4.tgz",
  3057. "integrity": "sha512-WHeFSbZYsPu3+bLoNRUuAO+wavNlocOPf3wSHTP7hcFKVnJeWsYlCDbr3mTS14FCizf9ccIxXA8sGL8zKeQN3g==",
  3058. "dev": true,
  3059. "license": "MIT",
  3060. "dependencies": {
  3061. "@types/estree": "1.0.8"
  3062. },
  3063. "bin": {
  3064. "rollup": "dist/bin/rollup"
  3065. },
  3066. "engines": {
  3067. "node": ">=18.0.0",
  3068. "npm": ">=8.0.0"
  3069. },
  3070. "optionalDependencies": {
  3071. "@rollup/rollup-android-arm-eabi": "4.60.4",
  3072. "@rollup/rollup-android-arm64": "4.60.4",
  3073. "@rollup/rollup-darwin-arm64": "4.60.4",
  3074. "@rollup/rollup-darwin-x64": "4.60.4",
  3075. "@rollup/rollup-freebsd-arm64": "4.60.4",
  3076. "@rollup/rollup-freebsd-x64": "4.60.4",
  3077. "@rollup/rollup-linux-arm-gnueabihf": "4.60.4",
  3078. "@rollup/rollup-linux-arm-musleabihf": "4.60.4",
  3079. "@rollup/rollup-linux-arm64-gnu": "4.60.4",
  3080. "@rollup/rollup-linux-arm64-musl": "4.60.4",
  3081. "@rollup/rollup-linux-loong64-gnu": "4.60.4",
  3082. "@rollup/rollup-linux-loong64-musl": "4.60.4",
  3083. "@rollup/rollup-linux-ppc64-gnu": "4.60.4",
  3084. "@rollup/rollup-linux-ppc64-musl": "4.60.4",
  3085. "@rollup/rollup-linux-riscv64-gnu": "4.60.4",
  3086. "@rollup/rollup-linux-riscv64-musl": "4.60.4",
  3087. "@rollup/rollup-linux-s390x-gnu": "4.60.4",
  3088. "@rollup/rollup-linux-x64-gnu": "4.60.4",
  3089. "@rollup/rollup-linux-x64-musl": "4.60.4",
  3090. "@rollup/rollup-openbsd-x64": "4.60.4",
  3091. "@rollup/rollup-openharmony-arm64": "4.60.4",
  3092. "@rollup/rollup-win32-arm64-msvc": "4.60.4",
  3093. "@rollup/rollup-win32-ia32-msvc": "4.60.4",
  3094. "@rollup/rollup-win32-x64-gnu": "4.60.4",
  3095. "@rollup/rollup-win32-x64-msvc": "4.60.4",
  3096. "fsevents": "~2.3.2"
  3097. }
  3098. },
  3099. "node_modules/sass": {
  3100. "version": "1.99.0",
  3101. "resolved": "https://registry.npmmirror.com/sass/-/sass-1.99.0.tgz",
  3102. "integrity": "sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==",
  3103. "dev": true,
  3104. "license": "MIT",
  3105. "dependencies": {
  3106. "chokidar": "^4.0.0",
  3107. "immutable": "^5.1.5",
  3108. "source-map-js": ">=0.6.2 <2.0.0"
  3109. },
  3110. "bin": {
  3111. "sass": "sass.js"
  3112. },
  3113. "engines": {
  3114. "node": ">=14.0.0"
  3115. },
  3116. "optionalDependencies": {
  3117. "@parcel/watcher": "^2.4.1"
  3118. }
  3119. },
  3120. "node_modules/sass-loader": {
  3121. "version": "16.0.8",
  3122. "resolved": "https://registry.npmmirror.com/sass-loader/-/sass-loader-16.0.8.tgz",
  3123. "integrity": "sha512-hcov4ZwZJIGbEuyNr9EmiTmZueyrxSToE6GOzoZnq5JM7ecRO7ttyvilPn+VmRsqiP16+VYZzVnGZj/hzZgKBA==",
  3124. "dev": true,
  3125. "license": "MIT",
  3126. "dependencies": {
  3127. "neo-async": "^2.6.2"
  3128. },
  3129. "engines": {
  3130. "node": ">= 18.12.0"
  3131. },
  3132. "funding": {
  3133. "type": "opencollective",
  3134. "url": "https://opencollective.com/webpack"
  3135. },
  3136. "peerDependencies": {
  3137. "@rspack/core": "0.x || ^1.0.0 || ^2.0.0-0",
  3138. "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
  3139. "sass": "^1.3.0",
  3140. "sass-embedded": "*",
  3141. "webpack": "^5.0.0"
  3142. },
  3143. "peerDependenciesMeta": {
  3144. "@rspack/core": {
  3145. "optional": true
  3146. },
  3147. "node-sass": {
  3148. "optional": true
  3149. },
  3150. "sass": {
  3151. "optional": true
  3152. },
  3153. "sass-embedded": {
  3154. "optional": true
  3155. },
  3156. "webpack": {
  3157. "optional": true
  3158. }
  3159. }
  3160. },
  3161. "node_modules/source-map-js": {
  3162. "version": "1.2.1",
  3163. "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
  3164. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  3165. "license": "BSD-3-Clause",
  3166. "engines": {
  3167. "node": ">=0.10.0"
  3168. }
  3169. },
  3170. "node_modules/speakingurl": {
  3171. "version": "14.0.1",
  3172. "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz",
  3173. "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
  3174. "license": "BSD-3-Clause",
  3175. "engines": {
  3176. "node": ">=0.10.0"
  3177. }
  3178. },
  3179. "node_modules/stackblur-canvas": {
  3180. "version": "2.7.0",
  3181. "resolved": "https://registry.npmjs.org/stackblur-canvas/-/stackblur-canvas-2.7.0.tgz",
  3182. "integrity": "sha512-yf7OENo23AGJhBriGx0QivY5JP6Y1HbrrDI6WLt6C5auYZXlQrheoY8hD4ibekFKz1HOfE48Ww8kMWMnJD/zcQ==",
  3183. "optional": true,
  3184. "engines": {
  3185. "node": ">=0.1.14"
  3186. }
  3187. },
  3188. "node_modules/superjson": {
  3189. "version": "2.2.6",
  3190. "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.6.tgz",
  3191. "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
  3192. "license": "MIT",
  3193. "dependencies": {
  3194. "copy-anything": "^4"
  3195. },
  3196. "engines": {
  3197. "node": ">=16"
  3198. }
  3199. },
  3200. "node_modules/svg-pathdata": {
  3201. "version": "6.0.3",
  3202. "resolved": "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-6.0.3.tgz",
  3203. "integrity": "sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==",
  3204. "optional": true,
  3205. "engines": {
  3206. "node": ">=12.0.0"
  3207. }
  3208. },
  3209. "node_modules/text-segmentation": {
  3210. "version": "1.0.3",
  3211. "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz",
  3212. "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==",
  3213. "optional": true,
  3214. "dependencies": {
  3215. "utrie": "^1.0.2"
  3216. }
  3217. },
  3218. "node_modules/tinyglobby": {
  3219. "version": "0.2.16",
  3220. "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.16.tgz",
  3221. "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
  3222. "dev": true,
  3223. "license": "MIT",
  3224. "dependencies": {
  3225. "fdir": "^6.5.0",
  3226. "picomatch": "^4.0.4"
  3227. },
  3228. "engines": {
  3229. "node": ">=12.0.0"
  3230. },
  3231. "funding": {
  3232. "url": "https://github.com/sponsors/SuperchupuDev"
  3233. }
  3234. },
  3235. "node_modules/tslib": {
  3236. "version": "2.3.0",
  3237. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
  3238. "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="
  3239. },
  3240. "node_modules/typescript": {
  3241. "version": "5.8.3",
  3242. "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.8.3.tgz",
  3243. "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
  3244. "devOptional": true,
  3245. "license": "Apache-2.0",
  3246. "bin": {
  3247. "tsc": "bin/tsc",
  3248. "tsserver": "bin/tsserver"
  3249. },
  3250. "engines": {
  3251. "node": ">=14.17"
  3252. }
  3253. },
  3254. "node_modules/undici-types": {
  3255. "version": "6.21.0",
  3256. "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-6.21.0.tgz",
  3257. "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
  3258. "dev": true,
  3259. "license": "MIT"
  3260. },
  3261. "node_modules/utrie": {
  3262. "version": "1.0.2",
  3263. "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz",
  3264. "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==",
  3265. "optional": true,
  3266. "dependencies": {
  3267. "base64-arraybuffer": "^1.0.2"
  3268. }
  3269. },
  3270. "node_modules/vite": {
  3271. "version": "6.4.2",
  3272. "resolved": "https://registry.npmmirror.com/vite/-/vite-6.4.2.tgz",
  3273. "integrity": "sha512-2N/55r4JDJ4gdrCvGgINMy+HH3iRpNIz8K6SFwVsA+JbQScLiC+clmAxBgwiSPgcG9U15QmvqCGWzMbqda5zGQ==",
  3274. "dev": true,
  3275. "license": "MIT",
  3276. "dependencies": {
  3277. "esbuild": "^0.25.0",
  3278. "fdir": "^6.4.4",
  3279. "picomatch": "^4.0.2",
  3280. "postcss": "^8.5.3",
  3281. "rollup": "^4.34.9",
  3282. "tinyglobby": "^0.2.13"
  3283. },
  3284. "bin": {
  3285. "vite": "bin/vite.js"
  3286. },
  3287. "engines": {
  3288. "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
  3289. },
  3290. "funding": {
  3291. "url": "https://github.com/vitejs/vite?sponsor=1"
  3292. },
  3293. "optionalDependencies": {
  3294. "fsevents": "~2.3.3"
  3295. },
  3296. "peerDependencies": {
  3297. "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
  3298. "jiti": ">=1.21.0",
  3299. "less": "*",
  3300. "lightningcss": "^1.21.0",
  3301. "sass": "*",
  3302. "sass-embedded": "*",
  3303. "stylus": "*",
  3304. "sugarss": "*",
  3305. "terser": "^5.16.0",
  3306. "tsx": "^4.8.1",
  3307. "yaml": "^2.4.2"
  3308. },
  3309. "peerDependenciesMeta": {
  3310. "@types/node": {
  3311. "optional": true
  3312. },
  3313. "jiti": {
  3314. "optional": true
  3315. },
  3316. "less": {
  3317. "optional": true
  3318. },
  3319. "lightningcss": {
  3320. "optional": true
  3321. },
  3322. "sass": {
  3323. "optional": true
  3324. },
  3325. "sass-embedded": {
  3326. "optional": true
  3327. },
  3328. "stylus": {
  3329. "optional": true
  3330. },
  3331. "sugarss": {
  3332. "optional": true
  3333. },
  3334. "terser": {
  3335. "optional": true
  3336. },
  3337. "tsx": {
  3338. "optional": true
  3339. },
  3340. "yaml": {
  3341. "optional": true
  3342. }
  3343. }
  3344. },
  3345. "node_modules/vscode-uri": {
  3346. "version": "3.1.0",
  3347. "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.1.0.tgz",
  3348. "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
  3349. "dev": true,
  3350. "license": "MIT"
  3351. },
  3352. "node_modules/vue": {
  3353. "version": "3.5.34",
  3354. "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.34.tgz",
  3355. "integrity": "sha512-WdLBG9gm02OgJIG9axd5Hpx0TFLdzVgfG2evFFu8Rur5O/IoGc5cMjnjh3tPL6GnRGsYvUhBSKVPYVcxRKpMCA==",
  3356. "license": "MIT",
  3357. "dependencies": {
  3358. "@vue/compiler-dom": "3.5.34",
  3359. "@vue/compiler-sfc": "3.5.34",
  3360. "@vue/runtime-dom": "3.5.34",
  3361. "@vue/server-renderer": "3.5.34",
  3362. "@vue/shared": "3.5.34"
  3363. },
  3364. "peerDependencies": {
  3365. "typescript": "*"
  3366. },
  3367. "peerDependenciesMeta": {
  3368. "typescript": {
  3369. "optional": true
  3370. }
  3371. }
  3372. },
  3373. "node_modules/vue-component-type-helpers": {
  3374. "version": "3.2.9",
  3375. "resolved": "https://registry.npmmirror.com/vue-component-type-helpers/-/vue-component-type-helpers-3.2.9.tgz",
  3376. "integrity": "sha512-S3BiWYaLSzHxTpln665ELSrMR9UYmrIDUmhik7nVZxmJjTKL2/a+ew1hvGxksKelivm0ujjWfG1fYOiU/2e8rA==",
  3377. "license": "MIT"
  3378. },
  3379. "node_modules/vue-router": {
  3380. "version": "4.6.4",
  3381. "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.6.4.tgz",
  3382. "integrity": "sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==",
  3383. "license": "MIT",
  3384. "dependencies": {
  3385. "@vue/devtools-api": "^6.6.4"
  3386. },
  3387. "funding": {
  3388. "url": "https://github.com/sponsors/posva"
  3389. },
  3390. "peerDependencies": {
  3391. "vue": "^3.5.0"
  3392. }
  3393. },
  3394. "node_modules/vue-tsc": {
  3395. "version": "2.2.12",
  3396. "resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-2.2.12.tgz",
  3397. "integrity": "sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==",
  3398. "dev": true,
  3399. "license": "MIT",
  3400. "dependencies": {
  3401. "@volar/typescript": "2.4.15",
  3402. "@vue/language-core": "2.2.12"
  3403. },
  3404. "bin": {
  3405. "vue-tsc": "bin/vue-tsc.js"
  3406. },
  3407. "peerDependencies": {
  3408. "typescript": ">=5.0.0"
  3409. }
  3410. },
  3411. "node_modules/vuex": {
  3412. "version": "4.1.0",
  3413. "resolved": "https://registry.npmmirror.com/vuex/-/vuex-4.1.0.tgz",
  3414. "integrity": "sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ==",
  3415. "license": "MIT",
  3416. "dependencies": {
  3417. "@vue/devtools-api": "^6.0.0-beta.11"
  3418. },
  3419. "peerDependencies": {
  3420. "vue": "^3.2.0"
  3421. }
  3422. },
  3423. "node_modules/zrender": {
  3424. "version": "6.1.0",
  3425. "resolved": "https://registry.npmjs.org/zrender/-/zrender-6.1.0.tgz",
  3426. "integrity": "sha512-oEGMDB6pOP2S6OwRR4PdVv610zrjnA3Bh+JnSG12fYJlBKjtNAoEb5fSUoCOOINlH96I2fU38/A2UpRKs67xYQ==",
  3427. "dependencies": {
  3428. "tslib": "2.3.0"
  3429. }
  3430. }
  3431. }
  3432. }