package-lock.json 110 KB

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