pnpm-lock.yaml 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. alova:
  9. specifier: ^3.3.4
  10. version: 3.3.4
  11. antd-mobile:
  12. specifier: ^5.41.1
  13. version: 5.41.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  14. classnames:
  15. specifier: ^2.5.1
  16. version: 2.5.1
  17. react:
  18. specifier: ^19.2.0
  19. version: 19.2.0
  20. react-dom:
  21. specifier: ^19.2.0
  22. version: 19.2.0(react@19.2.0)
  23. react-router-dom:
  24. specifier: '6'
  25. version: 6.30.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  26. recharts:
  27. specifier: 2.12.7
  28. version: 2.12.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  29. devDependencies:
  30. '@types/node':
  31. specifier: ^22.14.0
  32. version: 22.19.0
  33. '@types/react':
  34. specifier: ^19.2.2
  35. version: 19.2.2
  36. '@vitejs/plugin-react':
  37. specifier: ^5.0.0
  38. version: 5.1.0(vite@6.4.1(@types/node@22.19.0)(sass@1.93.3))
  39. sass:
  40. specifier: ^1.93.3
  41. version: 1.93.3
  42. typescript:
  43. specifier: ~5.8.2
  44. version: 5.8.3
  45. vite:
  46. specifier: ^6.2.0
  47. version: 6.4.1(@types/node@22.19.0)(sass@1.93.3)
  48. packages:
  49. '@alova/shared@1.3.1':
  50. resolution: {integrity: sha512-ijSOaFLUFcVzMKSY3avoEE5C03/p9atjMDPBwvNkwnzaCrhv6/m4A121NdadF8YlHCRuifyYfz90IyEdMXTsJg==}
  51. '@babel/code-frame@7.27.1':
  52. resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
  53. engines: {node: '>=6.9.0'}
  54. '@babel/compat-data@7.28.5':
  55. resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
  56. engines: {node: '>=6.9.0'}
  57. '@babel/core@7.28.5':
  58. resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
  59. engines: {node: '>=6.9.0'}
  60. '@babel/generator@7.28.5':
  61. resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
  62. engines: {node: '>=6.9.0'}
  63. '@babel/helper-compilation-targets@7.27.2':
  64. resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
  65. engines: {node: '>=6.9.0'}
  66. '@babel/helper-globals@7.28.0':
  67. resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
  68. engines: {node: '>=6.9.0'}
  69. '@babel/helper-module-imports@7.27.1':
  70. resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
  71. engines: {node: '>=6.9.0'}
  72. '@babel/helper-module-transforms@7.28.3':
  73. resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
  74. engines: {node: '>=6.9.0'}
  75. peerDependencies:
  76. '@babel/core': ^7.0.0
  77. '@babel/helper-plugin-utils@7.27.1':
  78. resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
  79. engines: {node: '>=6.9.0'}
  80. '@babel/helper-string-parser@7.27.1':
  81. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  82. engines: {node: '>=6.9.0'}
  83. '@babel/helper-validator-identifier@7.28.5':
  84. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  85. engines: {node: '>=6.9.0'}
  86. '@babel/helper-validator-option@7.27.1':
  87. resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
  88. engines: {node: '>=6.9.0'}
  89. '@babel/helpers@7.28.4':
  90. resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
  91. engines: {node: '>=6.9.0'}
  92. '@babel/parser@7.28.5':
  93. resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
  94. engines: {node: '>=6.0.0'}
  95. hasBin: true
  96. '@babel/plugin-transform-react-jsx-self@7.27.1':
  97. resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
  98. engines: {node: '>=6.9.0'}
  99. peerDependencies:
  100. '@babel/core': ^7.0.0-0
  101. '@babel/plugin-transform-react-jsx-source@7.27.1':
  102. resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
  103. engines: {node: '>=6.9.0'}
  104. peerDependencies:
  105. '@babel/core': ^7.0.0-0
  106. '@babel/runtime@7.28.4':
  107. resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
  108. engines: {node: '>=6.9.0'}
  109. '@babel/template@7.27.2':
  110. resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
  111. engines: {node: '>=6.9.0'}
  112. '@babel/traverse@7.28.5':
  113. resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
  114. engines: {node: '>=6.9.0'}
  115. '@babel/types@7.28.5':
  116. resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
  117. engines: {node: '>=6.9.0'}
  118. '@esbuild/aix-ppc64@0.25.12':
  119. resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
  120. engines: {node: '>=18'}
  121. cpu: [ppc64]
  122. os: [aix]
  123. '@esbuild/android-arm64@0.25.12':
  124. resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
  125. engines: {node: '>=18'}
  126. cpu: [arm64]
  127. os: [android]
  128. '@esbuild/android-arm@0.25.12':
  129. resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
  130. engines: {node: '>=18'}
  131. cpu: [arm]
  132. os: [android]
  133. '@esbuild/android-x64@0.25.12':
  134. resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
  135. engines: {node: '>=18'}
  136. cpu: [x64]
  137. os: [android]
  138. '@esbuild/darwin-arm64@0.25.12':
  139. resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
  140. engines: {node: '>=18'}
  141. cpu: [arm64]
  142. os: [darwin]
  143. '@esbuild/darwin-x64@0.25.12':
  144. resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
  145. engines: {node: '>=18'}
  146. cpu: [x64]
  147. os: [darwin]
  148. '@esbuild/freebsd-arm64@0.25.12':
  149. resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
  150. engines: {node: '>=18'}
  151. cpu: [arm64]
  152. os: [freebsd]
  153. '@esbuild/freebsd-x64@0.25.12':
  154. resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
  155. engines: {node: '>=18'}
  156. cpu: [x64]
  157. os: [freebsd]
  158. '@esbuild/linux-arm64@0.25.12':
  159. resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
  160. engines: {node: '>=18'}
  161. cpu: [arm64]
  162. os: [linux]
  163. '@esbuild/linux-arm@0.25.12':
  164. resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
  165. engines: {node: '>=18'}
  166. cpu: [arm]
  167. os: [linux]
  168. '@esbuild/linux-ia32@0.25.12':
  169. resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
  170. engines: {node: '>=18'}
  171. cpu: [ia32]
  172. os: [linux]
  173. '@esbuild/linux-loong64@0.25.12':
  174. resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
  175. engines: {node: '>=18'}
  176. cpu: [loong64]
  177. os: [linux]
  178. '@esbuild/linux-mips64el@0.25.12':
  179. resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
  180. engines: {node: '>=18'}
  181. cpu: [mips64el]
  182. os: [linux]
  183. '@esbuild/linux-ppc64@0.25.12':
  184. resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
  185. engines: {node: '>=18'}
  186. cpu: [ppc64]
  187. os: [linux]
  188. '@esbuild/linux-riscv64@0.25.12':
  189. resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
  190. engines: {node: '>=18'}
  191. cpu: [riscv64]
  192. os: [linux]
  193. '@esbuild/linux-s390x@0.25.12':
  194. resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
  195. engines: {node: '>=18'}
  196. cpu: [s390x]
  197. os: [linux]
  198. '@esbuild/linux-x64@0.25.12':
  199. resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
  200. engines: {node: '>=18'}
  201. cpu: [x64]
  202. os: [linux]
  203. '@esbuild/netbsd-arm64@0.25.12':
  204. resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
  205. engines: {node: '>=18'}
  206. cpu: [arm64]
  207. os: [netbsd]
  208. '@esbuild/netbsd-x64@0.25.12':
  209. resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
  210. engines: {node: '>=18'}
  211. cpu: [x64]
  212. os: [netbsd]
  213. '@esbuild/openbsd-arm64@0.25.12':
  214. resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
  215. engines: {node: '>=18'}
  216. cpu: [arm64]
  217. os: [openbsd]
  218. '@esbuild/openbsd-x64@0.25.12':
  219. resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
  220. engines: {node: '>=18'}
  221. cpu: [x64]
  222. os: [openbsd]
  223. '@esbuild/openharmony-arm64@0.25.12':
  224. resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
  225. engines: {node: '>=18'}
  226. cpu: [arm64]
  227. os: [openharmony]
  228. '@esbuild/sunos-x64@0.25.12':
  229. resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
  230. engines: {node: '>=18'}
  231. cpu: [x64]
  232. os: [sunos]
  233. '@esbuild/win32-arm64@0.25.12':
  234. resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
  235. engines: {node: '>=18'}
  236. cpu: [arm64]
  237. os: [win32]
  238. '@esbuild/win32-ia32@0.25.12':
  239. resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
  240. engines: {node: '>=18'}
  241. cpu: [ia32]
  242. os: [win32]
  243. '@esbuild/win32-x64@0.25.12':
  244. resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
  245. engines: {node: '>=18'}
  246. cpu: [x64]
  247. os: [win32]
  248. '@floating-ui/core@1.7.3':
  249. resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
  250. '@floating-ui/dom@1.7.4':
  251. resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
  252. '@floating-ui/utils@0.2.10':
  253. resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
  254. '@jridgewell/gen-mapping@0.3.13':
  255. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  256. '@jridgewell/remapping@2.3.5':
  257. resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
  258. '@jridgewell/resolve-uri@3.1.2':
  259. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  260. engines: {node: '>=6.0.0'}
  261. '@jridgewell/sourcemap-codec@1.5.5':
  262. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  263. '@jridgewell/trace-mapping@0.3.31':
  264. resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
  265. '@parcel/watcher-android-arm64@2.5.1':
  266. resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
  267. engines: {node: '>= 10.0.0'}
  268. cpu: [arm64]
  269. os: [android]
  270. '@parcel/watcher-darwin-arm64@2.5.1':
  271. resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
  272. engines: {node: '>= 10.0.0'}
  273. cpu: [arm64]
  274. os: [darwin]
  275. '@parcel/watcher-darwin-x64@2.5.1':
  276. resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
  277. engines: {node: '>= 10.0.0'}
  278. cpu: [x64]
  279. os: [darwin]
  280. '@parcel/watcher-freebsd-x64@2.5.1':
  281. resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
  282. engines: {node: '>= 10.0.0'}
  283. cpu: [x64]
  284. os: [freebsd]
  285. '@parcel/watcher-linux-arm-glibc@2.5.1':
  286. resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
  287. engines: {node: '>= 10.0.0'}
  288. cpu: [arm]
  289. os: [linux]
  290. libc: [glibc]
  291. '@parcel/watcher-linux-arm-musl@2.5.1':
  292. resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
  293. engines: {node: '>= 10.0.0'}
  294. cpu: [arm]
  295. os: [linux]
  296. libc: [musl]
  297. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  298. resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
  299. engines: {node: '>= 10.0.0'}
  300. cpu: [arm64]
  301. os: [linux]
  302. libc: [glibc]
  303. '@parcel/watcher-linux-arm64-musl@2.5.1':
  304. resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
  305. engines: {node: '>= 10.0.0'}
  306. cpu: [arm64]
  307. os: [linux]
  308. libc: [musl]
  309. '@parcel/watcher-linux-x64-glibc@2.5.1':
  310. resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
  311. engines: {node: '>= 10.0.0'}
  312. cpu: [x64]
  313. os: [linux]
  314. libc: [glibc]
  315. '@parcel/watcher-linux-x64-musl@2.5.1':
  316. resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
  317. engines: {node: '>= 10.0.0'}
  318. cpu: [x64]
  319. os: [linux]
  320. libc: [musl]
  321. '@parcel/watcher-win32-arm64@2.5.1':
  322. resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
  323. engines: {node: '>= 10.0.0'}
  324. cpu: [arm64]
  325. os: [win32]
  326. '@parcel/watcher-win32-ia32@2.5.1':
  327. resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
  328. engines: {node: '>= 10.0.0'}
  329. cpu: [ia32]
  330. os: [win32]
  331. '@parcel/watcher-win32-x64@2.5.1':
  332. resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
  333. engines: {node: '>= 10.0.0'}
  334. cpu: [x64]
  335. os: [win32]
  336. '@parcel/watcher@2.5.1':
  337. resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
  338. engines: {node: '>= 10.0.0'}
  339. '@rc-component/mini-decimal@1.1.0':
  340. resolution: {integrity: sha512-jS4E7T9Li2GuYwI6PyiVXmxTiM6b07rlD9Ge8uGZSCz3WlzcG5ZK7g5bbuKNeZ9pgUuPK/5guV781ujdVpm4HQ==}
  341. engines: {node: '>=8.x'}
  342. '@react-spring/animated@9.6.1':
  343. resolution: {integrity: sha512-ls/rJBrAqiAYozjLo5EPPLLOb1LM0lNVQcXODTC1SMtS6DbuBCPaKco5svFUQFMP2dso3O+qcC4k9FsKc0KxMQ==}
  344. peerDependencies:
  345. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  346. '@react-spring/core@9.6.1':
  347. resolution: {integrity: sha512-3HAAinAyCPessyQNNXe5W0OHzRfa8Yo5P748paPcmMowZ/4sMfaZ2ZB6e5x5khQI8NusOHj8nquoutd6FRY5WQ==}
  348. peerDependencies:
  349. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  350. '@react-spring/rafz@9.6.1':
  351. resolution: {integrity: sha512-v6qbgNRpztJFFfSE3e2W1Uz+g8KnIBs6SmzCzcVVF61GdGfGOuBrbjIcp+nUz301awVmREKi4eMQb2Ab2gGgyQ==}
  352. '@react-spring/shared@9.6.1':
  353. resolution: {integrity: sha512-PBFBXabxFEuF8enNLkVqMC9h5uLRBo6GQhRMQT/nRTnemVENimgRd+0ZT4yFnAQ0AxWNiJfX3qux+bW2LbG6Bw==}
  354. peerDependencies:
  355. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  356. '@react-spring/types@9.6.1':
  357. resolution: {integrity: sha512-POu8Mk0hIU3lRXB3bGIGe4VHIwwDsQyoD1F394OK7STTiX9w4dG3cTLljjYswkQN+hDSHRrj4O36kuVa7KPU8Q==}
  358. '@react-spring/web@9.6.1':
  359. resolution: {integrity: sha512-X2zR6q2Z+FjsWfGAmAXlQaoUHbPmfuCaXpuM6TcwXPpLE1ZD4A1eys/wpXboFQmDkjnrlTmKvpVna1MjWpZ5Hw==}
  360. peerDependencies:
  361. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  362. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
  363. '@remix-run/router@1.23.0':
  364. resolution: {integrity: sha512-O3rHJzAQKamUz1fvE0Qaw0xSFqsA/yafi2iqeE0pvdFtCO1viYx8QL6f3Ln/aCCTLxs68SLf0KPM9eSeM8yBnA==}
  365. engines: {node: '>=14.0.0'}
  366. '@rolldown/pluginutils@1.0.0-beta.43':
  367. resolution: {integrity: sha512-5Uxg7fQUCmfhax7FJke2+8B6cqgeUJUD9o2uXIKXhD+mG0mL6NObmVoi9wXEU1tY89mZKgAYA6fTbftx3q2ZPQ==}
  368. '@rollup/rollup-android-arm-eabi@4.52.5':
  369. resolution: {integrity: sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==}
  370. cpu: [arm]
  371. os: [android]
  372. '@rollup/rollup-android-arm64@4.52.5':
  373. resolution: {integrity: sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==}
  374. cpu: [arm64]
  375. os: [android]
  376. '@rollup/rollup-darwin-arm64@4.52.5':
  377. resolution: {integrity: sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==}
  378. cpu: [arm64]
  379. os: [darwin]
  380. '@rollup/rollup-darwin-x64@4.52.5':
  381. resolution: {integrity: sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==}
  382. cpu: [x64]
  383. os: [darwin]
  384. '@rollup/rollup-freebsd-arm64@4.52.5':
  385. resolution: {integrity: sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==}
  386. cpu: [arm64]
  387. os: [freebsd]
  388. '@rollup/rollup-freebsd-x64@4.52.5':
  389. resolution: {integrity: sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==}
  390. cpu: [x64]
  391. os: [freebsd]
  392. '@rollup/rollup-linux-arm-gnueabihf@4.52.5':
  393. resolution: {integrity: sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==}
  394. cpu: [arm]
  395. os: [linux]
  396. libc: [glibc]
  397. '@rollup/rollup-linux-arm-musleabihf@4.52.5':
  398. resolution: {integrity: sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==}
  399. cpu: [arm]
  400. os: [linux]
  401. libc: [musl]
  402. '@rollup/rollup-linux-arm64-gnu@4.52.5':
  403. resolution: {integrity: sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==}
  404. cpu: [arm64]
  405. os: [linux]
  406. libc: [glibc]
  407. '@rollup/rollup-linux-arm64-musl@4.52.5':
  408. resolution: {integrity: sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==}
  409. cpu: [arm64]
  410. os: [linux]
  411. libc: [musl]
  412. '@rollup/rollup-linux-loong64-gnu@4.52.5':
  413. resolution: {integrity: sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==}
  414. cpu: [loong64]
  415. os: [linux]
  416. libc: [glibc]
  417. '@rollup/rollup-linux-ppc64-gnu@4.52.5':
  418. resolution: {integrity: sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==}
  419. cpu: [ppc64]
  420. os: [linux]
  421. libc: [glibc]
  422. '@rollup/rollup-linux-riscv64-gnu@4.52.5':
  423. resolution: {integrity: sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==}
  424. cpu: [riscv64]
  425. os: [linux]
  426. libc: [glibc]
  427. '@rollup/rollup-linux-riscv64-musl@4.52.5':
  428. resolution: {integrity: sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==}
  429. cpu: [riscv64]
  430. os: [linux]
  431. libc: [musl]
  432. '@rollup/rollup-linux-s390x-gnu@4.52.5':
  433. resolution: {integrity: sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==}
  434. cpu: [s390x]
  435. os: [linux]
  436. libc: [glibc]
  437. '@rollup/rollup-linux-x64-gnu@4.52.5':
  438. resolution: {integrity: sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==}
  439. cpu: [x64]
  440. os: [linux]
  441. libc: [glibc]
  442. '@rollup/rollup-linux-x64-musl@4.52.5':
  443. resolution: {integrity: sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==}
  444. cpu: [x64]
  445. os: [linux]
  446. libc: [musl]
  447. '@rollup/rollup-openharmony-arm64@4.52.5':
  448. resolution: {integrity: sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==}
  449. cpu: [arm64]
  450. os: [openharmony]
  451. '@rollup/rollup-win32-arm64-msvc@4.52.5':
  452. resolution: {integrity: sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==}
  453. cpu: [arm64]
  454. os: [win32]
  455. '@rollup/rollup-win32-ia32-msvc@4.52.5':
  456. resolution: {integrity: sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==}
  457. cpu: [ia32]
  458. os: [win32]
  459. '@rollup/rollup-win32-x64-gnu@4.52.5':
  460. resolution: {integrity: sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==}
  461. cpu: [x64]
  462. os: [win32]
  463. '@rollup/rollup-win32-x64-msvc@4.52.5':
  464. resolution: {integrity: sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==}
  465. cpu: [x64]
  466. os: [win32]
  467. '@types/babel__core@7.20.5':
  468. resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
  469. '@types/babel__generator@7.27.0':
  470. resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
  471. '@types/babel__template@7.4.4':
  472. resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
  473. '@types/babel__traverse@7.28.0':
  474. resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
  475. '@types/d3-array@3.2.2':
  476. resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
  477. '@types/d3-color@3.1.3':
  478. resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
  479. '@types/d3-ease@3.0.2':
  480. resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
  481. '@types/d3-interpolate@3.0.4':
  482. resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
  483. '@types/d3-path@3.1.1':
  484. resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
  485. '@types/d3-scale@4.0.9':
  486. resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
  487. '@types/d3-shape@3.1.7':
  488. resolution: {integrity: sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==}
  489. '@types/d3-time@3.0.4':
  490. resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
  491. '@types/d3-timer@3.0.2':
  492. resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
  493. '@types/estree@1.0.8':
  494. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  495. '@types/js-cookie@3.0.6':
  496. resolution: {integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==}
  497. '@types/node@22.19.0':
  498. resolution: {integrity: sha512-xpr/lmLPQEj+TUnHmR+Ab91/glhJvsqcjB+yY0Ix9GO70H6Lb4FHH5GeqdOE5btAx7eIMwuHkp4H2MSkLcqWbA==}
  499. '@types/react@19.2.2':
  500. resolution: {integrity: sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==}
  501. '@use-gesture/core@10.3.0':
  502. resolution: {integrity: sha512-rh+6MND31zfHcy9VU3dOZCqGY511lvGcfyJenN4cWZe0u1BH6brBpBddLVXhF2r4BMqWbvxfsbL7D287thJU2A==}
  503. '@use-gesture/react@10.3.0':
  504. resolution: {integrity: sha512-3zc+Ve99z4usVP6l9knYVbVnZgfqhKah7sIG+PS2w+vpig2v2OLct05vs+ZXMzwxdNCMka8B+8WlOo0z6Pn6DA==}
  505. peerDependencies:
  506. react: '>= 16.8.0'
  507. '@vitejs/plugin-react@5.1.0':
  508. resolution: {integrity: sha512-4LuWrg7EKWgQaMJfnN+wcmbAW+VSsCmqGohftWjuct47bv8uE4n/nPpq4XjJPsxgq00GGG5J8dvBczp8uxScew==}
  509. engines: {node: ^20.19.0 || >=22.12.0}
  510. peerDependencies:
  511. vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
  512. ahooks@3.9.6:
  513. resolution: {integrity: sha512-Mr7f05swd5SmKlR9SZo5U6M0LsL4ErweLzpdgXjA1JPmnZ78Vr6wzx0jUtvoxrcqGKYnX0Yjc02iEASVxHFPjQ==}
  514. peerDependencies:
  515. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  516. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  517. alova@3.3.4:
  518. resolution: {integrity: sha512-UKKqXdvf8aQ4C7m3brO77YWe5CDz8N59PdAUz7M8gowKUUXTutbk0Vk5DRBrCe0hMUyyNMUhdCZ38llGxCViyQ==}
  519. engines: {node: '>= 18.0.0'}
  520. antd-mobile-icons@0.3.0:
  521. resolution: {integrity: sha512-rqINQpJWZWrva9moCd1Ye695MZYWmqLPE+bY8d2xLRy7iSQwPsinCdZYjpUPp2zL/LnKYSyXxP2ut2A+DC+whQ==}
  522. antd-mobile-v5-count@1.0.1:
  523. resolution: {integrity: sha512-YGsiEDCPUDz3SzfXi6gLZn/HpeSMW+jgPc4qiYUr1fSopg3hkUie2TnooJdExgfiETHefH3Ggs58He0OVfegLA==}
  524. antd-mobile@5.41.1:
  525. resolution: {integrity: sha512-fS5sTRLKHca5qryEYLGiPDLANK0rbhx8f8xk0Olu6ef00tLe0P9iqHQm0U3UtEBd8S454cilw5uv2J3I79Tbgg==}
  526. peerDependencies:
  527. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  528. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  529. async-validator@4.2.5:
  530. resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==}
  531. baseline-browser-mapping@2.8.23:
  532. resolution: {integrity: sha512-616V5YX4bepJFzNyOfce5Fa8fDJMfoxzOIzDCZwaGL8MKVpFrXqfNUoIpRn9YMI5pXf/VKgzjB4htFMsFKKdiQ==}
  533. hasBin: true
  534. braces@3.0.3:
  535. resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
  536. engines: {node: '>=8'}
  537. browserslist@4.27.0:
  538. resolution: {integrity: sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==}
  539. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  540. hasBin: true
  541. caniuse-lite@1.0.30001753:
  542. resolution: {integrity: sha512-Bj5H35MD/ebaOV4iDLqPEtiliTN29qkGtEHCwawWn4cYm+bPJM2NsaP30vtZcnERClMzp52J4+aw2UNbK4o+zw==}
  543. chokidar@4.0.3:
  544. resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
  545. engines: {node: '>= 14.16.0'}
  546. classnames@2.5.1:
  547. resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
  548. clsx@2.1.1:
  549. resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
  550. engines: {node: '>=6'}
  551. convert-source-map@2.0.0:
  552. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  553. csstype@3.1.3:
  554. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  555. d3-array@3.2.4:
  556. resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
  557. engines: {node: '>=12'}
  558. d3-color@3.1.0:
  559. resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
  560. engines: {node: '>=12'}
  561. d3-ease@3.0.1:
  562. resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
  563. engines: {node: '>=12'}
  564. d3-format@3.1.0:
  565. resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
  566. engines: {node: '>=12'}
  567. d3-interpolate@3.0.1:
  568. resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
  569. engines: {node: '>=12'}
  570. d3-path@3.1.0:
  571. resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
  572. engines: {node: '>=12'}
  573. d3-scale@4.0.2:
  574. resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
  575. engines: {node: '>=12'}
  576. d3-shape@3.2.0:
  577. resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
  578. engines: {node: '>=12'}
  579. d3-time-format@4.1.0:
  580. resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
  581. engines: {node: '>=12'}
  582. d3-time@3.1.0:
  583. resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
  584. engines: {node: '>=12'}
  585. d3-timer@3.0.1:
  586. resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
  587. engines: {node: '>=12'}
  588. dayjs@1.11.19:
  589. resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==}
  590. debug@4.4.3:
  591. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  592. engines: {node: '>=6.0'}
  593. peerDependencies:
  594. supports-color: '*'
  595. peerDependenciesMeta:
  596. supports-color:
  597. optional: true
  598. decimal.js-light@2.5.1:
  599. resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
  600. deepmerge@4.3.1:
  601. resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
  602. engines: {node: '>=0.10.0'}
  603. detect-libc@1.0.3:
  604. resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
  605. engines: {node: '>=0.10'}
  606. hasBin: true
  607. dom-helpers@5.2.1:
  608. resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
  609. electron-to-chromium@1.5.244:
  610. resolution: {integrity: sha512-OszpBN7xZX4vWMPJwB9illkN/znA8M36GQqQxi6MNy9axWxhOfJyZZJtSLQCpEFLHP2xK33BiWx9aIuIEXVCcw==}
  611. esbuild@0.25.12:
  612. resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
  613. engines: {node: '>=18'}
  614. hasBin: true
  615. escalade@3.2.0:
  616. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  617. engines: {node: '>=6'}
  618. eventemitter3@4.0.7:
  619. resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
  620. fast-equals@5.3.2:
  621. resolution: {integrity: sha512-6rxyATwPCkaFIL3JLqw8qXqMpIZ942pTX/tbQFkRsDGblS8tNGtlUauA/+mt6RUfqn/4MoEr+WDkYoIQbibWuQ==}
  622. engines: {node: '>=6.0.0'}
  623. fdir@6.5.0:
  624. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  625. engines: {node: '>=12.0.0'}
  626. peerDependencies:
  627. picomatch: ^3 || ^4
  628. peerDependenciesMeta:
  629. picomatch:
  630. optional: true
  631. fill-range@7.1.1:
  632. resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
  633. engines: {node: '>=8'}
  634. fsevents@2.3.3:
  635. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  636. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  637. os: [darwin]
  638. gensync@1.0.0-beta.2:
  639. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  640. engines: {node: '>=6.9.0'}
  641. immutable@5.1.4:
  642. resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==}
  643. internmap@2.0.3:
  644. resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
  645. engines: {node: '>=12'}
  646. intersection-observer@0.12.2:
  647. resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==}
  648. is-extglob@2.1.1:
  649. resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
  650. engines: {node: '>=0.10.0'}
  651. is-glob@4.0.3:
  652. resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
  653. engines: {node: '>=0.10.0'}
  654. is-number@7.0.0:
  655. resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
  656. engines: {node: '>=0.12.0'}
  657. js-cookie@3.0.5:
  658. resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
  659. engines: {node: '>=14'}
  660. js-tokens@4.0.0:
  661. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  662. jsesc@3.1.0:
  663. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  664. engines: {node: '>=6'}
  665. hasBin: true
  666. json5@2.2.3:
  667. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  668. engines: {node: '>=6'}
  669. hasBin: true
  670. lodash@4.17.21:
  671. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  672. loose-envify@1.4.0:
  673. resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
  674. hasBin: true
  675. lru-cache@5.1.1:
  676. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  677. micromatch@4.0.8:
  678. resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
  679. engines: {node: '>=8.6'}
  680. ms@2.1.3:
  681. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  682. nano-memoize@3.0.16:
  683. resolution: {integrity: sha512-JyK96AKVGAwVeMj3MoMhaSXaUNqgMbCRSQB3trUV8tYZfWEzqUBKdK1qJpfuNXgKeHOx1jv/IEYTM659ly7zUA==}
  684. nanoid@3.3.11:
  685. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  686. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  687. hasBin: true
  688. node-addon-api@7.1.1:
  689. resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
  690. node-releases@2.0.27:
  691. resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
  692. object-assign@4.1.1:
  693. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  694. engines: {node: '>=0.10.0'}
  695. picocolors@1.1.1:
  696. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  697. picomatch@2.3.1:
  698. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  699. engines: {node: '>=8.6'}
  700. picomatch@4.0.3:
  701. resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
  702. engines: {node: '>=12'}
  703. postcss@8.5.6:
  704. resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
  705. engines: {node: ^10 || ^12 || >=14}
  706. prop-types@15.8.1:
  707. resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
  708. rate-limiter-flexible@5.0.5:
  709. resolution: {integrity: sha512-+/dSQfo+3FYwYygUs/V2BBdwGa9nFtakDwKt4l0bnvNB53TNT++QSFewwHX9qXrZJuMe9j+TUaU21lm5ARgqdQ==}
  710. rc-field-form@1.44.0:
  711. resolution: {integrity: sha512-el7w87fyDUsca63Y/s8qJcq9kNkf/J5h+iTdqG5WsSHLH0e6Usl7QuYSmSVzJMgtp40mOVZIY/W/QP9zwrp1FA==}
  712. engines: {node: '>=8.x'}
  713. peerDependencies:
  714. react: '>=16.9.0'
  715. react-dom: '>=16.9.0'
  716. rc-motion@2.9.5:
  717. resolution: {integrity: sha512-w+XTUrfh7ArbYEd2582uDrEhmBHwK1ZENJiSJVb7uRxdE7qJSYjbO2eksRXmndqyKqKoYPc9ClpPh5242mV1vA==}
  718. peerDependencies:
  719. react: '>=16.9.0'
  720. react-dom: '>=16.9.0'
  721. rc-segmented@2.4.1:
  722. resolution: {integrity: sha512-KUi+JJFdKnumV9iXlm+BJ00O4NdVBp2TEexLCk6bK1x/RH83TvYKQMzIz/7m3UTRPD08RM/8VG/JNjWgWbd4cw==}
  723. peerDependencies:
  724. react: '>=16.0.0'
  725. react-dom: '>=16.0.0'
  726. rc-util@5.44.4:
  727. resolution: {integrity: sha512-resueRJzmHG9Q6rI/DfK6Kdv9/Lfls05vzMs1Sk3M2P+3cJa+MakaZyWY8IPfehVuhPJFKrIY1IK4GqbiaiY5w==}
  728. peerDependencies:
  729. react: '>=16.9.0'
  730. react-dom: '>=16.9.0'
  731. react-dom@19.2.0:
  732. resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==}
  733. peerDependencies:
  734. react: ^19.2.0
  735. react-fast-compare@3.2.2:
  736. resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
  737. react-is@16.13.1:
  738. resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
  739. react-is@18.3.1:
  740. resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
  741. react-refresh@0.18.0:
  742. resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==}
  743. engines: {node: '>=0.10.0'}
  744. react-router-dom@6.30.1:
  745. resolution: {integrity: sha512-llKsgOkZdbPU1Eg3zK8lCn+sjD9wMRZZPuzmdWWX5SUs8OFkN5HnFVC0u5KMeMaC9aoancFI/KoLuKPqN+hxHw==}
  746. engines: {node: '>=14.0.0'}
  747. peerDependencies:
  748. react: '>=16.8'
  749. react-dom: '>=16.8'
  750. react-router@6.30.1:
  751. resolution: {integrity: sha512-X1m21aEmxGXqENEPG3T6u0Th7g0aS4ZmoNynhbs+Cn+q+QGTLt+d5IQ2bHAXKzKcxGJjxACpVbnYQSCRcfxHlQ==}
  752. engines: {node: '>=14.0.0'}
  753. peerDependencies:
  754. react: '>=16.8'
  755. react-smooth@4.0.4:
  756. resolution: {integrity: sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q==}
  757. peerDependencies:
  758. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  759. react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  760. react-transition-group@4.4.5:
  761. resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
  762. peerDependencies:
  763. react: '>=16.6.0'
  764. react-dom: '>=16.6.0'
  765. react@19.2.0:
  766. resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==}
  767. engines: {node: '>=0.10.0'}
  768. readdirp@4.1.2:
  769. resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
  770. engines: {node: '>= 14.18.0'}
  771. recharts-scale@0.4.5:
  772. resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
  773. recharts@2.12.7:
  774. resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==}
  775. engines: {node: '>=14'}
  776. peerDependencies:
  777. react: ^16.0.0 || ^17.0.0 || ^18.0.0
  778. react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
  779. resize-observer-polyfill@1.5.1:
  780. resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
  781. rollup@4.52.5:
  782. resolution: {integrity: sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==}
  783. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  784. hasBin: true
  785. runes2@1.1.4:
  786. resolution: {integrity: sha512-LNPnEDPOOU4ehF71m5JoQyzT2yxwD6ZreFJ7MxZUAoMKNMY1XrAo60H1CUoX5ncSm0rIuKlqn9JZNRrRkNou2g==}
  787. sass@1.93.3:
  788. resolution: {integrity: sha512-elOcIZRTM76dvxNAjqYrucTSI0teAF/L2Lv0s6f6b7FOwcwIuA357bIE871580AjHJuSvLIRUosgV+lIWx6Rgg==}
  789. engines: {node: '>=14.0.0'}
  790. hasBin: true
  791. scheduler@0.27.0:
  792. resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
  793. screenfull@5.2.0:
  794. resolution: {integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==}
  795. engines: {node: '>=0.10.0'}
  796. semver@6.3.1:
  797. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  798. hasBin: true
  799. source-map-js@1.2.1:
  800. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  801. engines: {node: '>=0.10.0'}
  802. staged-components@1.1.3:
  803. resolution: {integrity: sha512-9EIswzDqjwlEu+ymkV09TTlJfzSbKgEnNteUnZSTxkpMgr5Wx2CzzA9WcMFWBNCldqVPsHVnRGGrApduq2Se5A==}
  804. peerDependencies:
  805. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  806. tiny-invariant@1.3.3:
  807. resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
  808. tinyglobby@0.2.15:
  809. resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
  810. engines: {node: '>=12.0.0'}
  811. to-regex-range@5.0.1:
  812. resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
  813. engines: {node: '>=8.0'}
  814. tslib@2.8.1:
  815. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  816. typescript@5.8.3:
  817. resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
  818. engines: {node: '>=14.17'}
  819. hasBin: true
  820. undici-types@6.21.0:
  821. resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
  822. update-browserslist-db@1.1.4:
  823. resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
  824. hasBin: true
  825. peerDependencies:
  826. browserslist: '>= 4.21.0'
  827. use-sync-external-store@1.6.0:
  828. resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
  829. peerDependencies:
  830. react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  831. victory-vendor@36.9.2:
  832. resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
  833. vite@6.4.1:
  834. resolution: {integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==}
  835. engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
  836. hasBin: true
  837. peerDependencies:
  838. '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
  839. jiti: '>=1.21.0'
  840. less: '*'
  841. lightningcss: ^1.21.0
  842. sass: '*'
  843. sass-embedded: '*'
  844. stylus: '*'
  845. sugarss: '*'
  846. terser: ^5.16.0
  847. tsx: ^4.8.1
  848. yaml: ^2.4.2
  849. peerDependenciesMeta:
  850. '@types/node':
  851. optional: true
  852. jiti:
  853. optional: true
  854. less:
  855. optional: true
  856. lightningcss:
  857. optional: true
  858. sass:
  859. optional: true
  860. sass-embedded:
  861. optional: true
  862. stylus:
  863. optional: true
  864. sugarss:
  865. optional: true
  866. terser:
  867. optional: true
  868. tsx:
  869. optional: true
  870. yaml:
  871. optional: true
  872. yallist@3.1.1:
  873. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  874. snapshots:
  875. '@alova/shared@1.3.1': {}
  876. '@babel/code-frame@7.27.1':
  877. dependencies:
  878. '@babel/helper-validator-identifier': 7.28.5
  879. js-tokens: 4.0.0
  880. picocolors: 1.1.1
  881. '@babel/compat-data@7.28.5': {}
  882. '@babel/core@7.28.5':
  883. dependencies:
  884. '@babel/code-frame': 7.27.1
  885. '@babel/generator': 7.28.5
  886. '@babel/helper-compilation-targets': 7.27.2
  887. '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
  888. '@babel/helpers': 7.28.4
  889. '@babel/parser': 7.28.5
  890. '@babel/template': 7.27.2
  891. '@babel/traverse': 7.28.5
  892. '@babel/types': 7.28.5
  893. '@jridgewell/remapping': 2.3.5
  894. convert-source-map: 2.0.0
  895. debug: 4.4.3
  896. gensync: 1.0.0-beta.2
  897. json5: 2.2.3
  898. semver: 6.3.1
  899. transitivePeerDependencies:
  900. - supports-color
  901. '@babel/generator@7.28.5':
  902. dependencies:
  903. '@babel/parser': 7.28.5
  904. '@babel/types': 7.28.5
  905. '@jridgewell/gen-mapping': 0.3.13
  906. '@jridgewell/trace-mapping': 0.3.31
  907. jsesc: 3.1.0
  908. '@babel/helper-compilation-targets@7.27.2':
  909. dependencies:
  910. '@babel/compat-data': 7.28.5
  911. '@babel/helper-validator-option': 7.27.1
  912. browserslist: 4.27.0
  913. lru-cache: 5.1.1
  914. semver: 6.3.1
  915. '@babel/helper-globals@7.28.0': {}
  916. '@babel/helper-module-imports@7.27.1':
  917. dependencies:
  918. '@babel/traverse': 7.28.5
  919. '@babel/types': 7.28.5
  920. transitivePeerDependencies:
  921. - supports-color
  922. '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
  923. dependencies:
  924. '@babel/core': 7.28.5
  925. '@babel/helper-module-imports': 7.27.1
  926. '@babel/helper-validator-identifier': 7.28.5
  927. '@babel/traverse': 7.28.5
  928. transitivePeerDependencies:
  929. - supports-color
  930. '@babel/helper-plugin-utils@7.27.1': {}
  931. '@babel/helper-string-parser@7.27.1': {}
  932. '@babel/helper-validator-identifier@7.28.5': {}
  933. '@babel/helper-validator-option@7.27.1': {}
  934. '@babel/helpers@7.28.4':
  935. dependencies:
  936. '@babel/template': 7.27.2
  937. '@babel/types': 7.28.5
  938. '@babel/parser@7.28.5':
  939. dependencies:
  940. '@babel/types': 7.28.5
  941. '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.5)':
  942. dependencies:
  943. '@babel/core': 7.28.5
  944. '@babel/helper-plugin-utils': 7.27.1
  945. '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.5)':
  946. dependencies:
  947. '@babel/core': 7.28.5
  948. '@babel/helper-plugin-utils': 7.27.1
  949. '@babel/runtime@7.28.4': {}
  950. '@babel/template@7.27.2':
  951. dependencies:
  952. '@babel/code-frame': 7.27.1
  953. '@babel/parser': 7.28.5
  954. '@babel/types': 7.28.5
  955. '@babel/traverse@7.28.5':
  956. dependencies:
  957. '@babel/code-frame': 7.27.1
  958. '@babel/generator': 7.28.5
  959. '@babel/helper-globals': 7.28.0
  960. '@babel/parser': 7.28.5
  961. '@babel/template': 7.27.2
  962. '@babel/types': 7.28.5
  963. debug: 4.4.3
  964. transitivePeerDependencies:
  965. - supports-color
  966. '@babel/types@7.28.5':
  967. dependencies:
  968. '@babel/helper-string-parser': 7.27.1
  969. '@babel/helper-validator-identifier': 7.28.5
  970. '@esbuild/aix-ppc64@0.25.12':
  971. optional: true
  972. '@esbuild/android-arm64@0.25.12':
  973. optional: true
  974. '@esbuild/android-arm@0.25.12':
  975. optional: true
  976. '@esbuild/android-x64@0.25.12':
  977. optional: true
  978. '@esbuild/darwin-arm64@0.25.12':
  979. optional: true
  980. '@esbuild/darwin-x64@0.25.12':
  981. optional: true
  982. '@esbuild/freebsd-arm64@0.25.12':
  983. optional: true
  984. '@esbuild/freebsd-x64@0.25.12':
  985. optional: true
  986. '@esbuild/linux-arm64@0.25.12':
  987. optional: true
  988. '@esbuild/linux-arm@0.25.12':
  989. optional: true
  990. '@esbuild/linux-ia32@0.25.12':
  991. optional: true
  992. '@esbuild/linux-loong64@0.25.12':
  993. optional: true
  994. '@esbuild/linux-mips64el@0.25.12':
  995. optional: true
  996. '@esbuild/linux-ppc64@0.25.12':
  997. optional: true
  998. '@esbuild/linux-riscv64@0.25.12':
  999. optional: true
  1000. '@esbuild/linux-s390x@0.25.12':
  1001. optional: true
  1002. '@esbuild/linux-x64@0.25.12':
  1003. optional: true
  1004. '@esbuild/netbsd-arm64@0.25.12':
  1005. optional: true
  1006. '@esbuild/netbsd-x64@0.25.12':
  1007. optional: true
  1008. '@esbuild/openbsd-arm64@0.25.12':
  1009. optional: true
  1010. '@esbuild/openbsd-x64@0.25.12':
  1011. optional: true
  1012. '@esbuild/openharmony-arm64@0.25.12':
  1013. optional: true
  1014. '@esbuild/sunos-x64@0.25.12':
  1015. optional: true
  1016. '@esbuild/win32-arm64@0.25.12':
  1017. optional: true
  1018. '@esbuild/win32-ia32@0.25.12':
  1019. optional: true
  1020. '@esbuild/win32-x64@0.25.12':
  1021. optional: true
  1022. '@floating-ui/core@1.7.3':
  1023. dependencies:
  1024. '@floating-ui/utils': 0.2.10
  1025. '@floating-ui/dom@1.7.4':
  1026. dependencies:
  1027. '@floating-ui/core': 1.7.3
  1028. '@floating-ui/utils': 0.2.10
  1029. '@floating-ui/utils@0.2.10': {}
  1030. '@jridgewell/gen-mapping@0.3.13':
  1031. dependencies:
  1032. '@jridgewell/sourcemap-codec': 1.5.5
  1033. '@jridgewell/trace-mapping': 0.3.31
  1034. '@jridgewell/remapping@2.3.5':
  1035. dependencies:
  1036. '@jridgewell/gen-mapping': 0.3.13
  1037. '@jridgewell/trace-mapping': 0.3.31
  1038. '@jridgewell/resolve-uri@3.1.2': {}
  1039. '@jridgewell/sourcemap-codec@1.5.5': {}
  1040. '@jridgewell/trace-mapping@0.3.31':
  1041. dependencies:
  1042. '@jridgewell/resolve-uri': 3.1.2
  1043. '@jridgewell/sourcemap-codec': 1.5.5
  1044. '@parcel/watcher-android-arm64@2.5.1':
  1045. optional: true
  1046. '@parcel/watcher-darwin-arm64@2.5.1':
  1047. optional: true
  1048. '@parcel/watcher-darwin-x64@2.5.1':
  1049. optional: true
  1050. '@parcel/watcher-freebsd-x64@2.5.1':
  1051. optional: true
  1052. '@parcel/watcher-linux-arm-glibc@2.5.1':
  1053. optional: true
  1054. '@parcel/watcher-linux-arm-musl@2.5.1':
  1055. optional: true
  1056. '@parcel/watcher-linux-arm64-glibc@2.5.1':
  1057. optional: true
  1058. '@parcel/watcher-linux-arm64-musl@2.5.1':
  1059. optional: true
  1060. '@parcel/watcher-linux-x64-glibc@2.5.1':
  1061. optional: true
  1062. '@parcel/watcher-linux-x64-musl@2.5.1':
  1063. optional: true
  1064. '@parcel/watcher-win32-arm64@2.5.1':
  1065. optional: true
  1066. '@parcel/watcher-win32-ia32@2.5.1':
  1067. optional: true
  1068. '@parcel/watcher-win32-x64@2.5.1':
  1069. optional: true
  1070. '@parcel/watcher@2.5.1':
  1071. dependencies:
  1072. detect-libc: 1.0.3
  1073. is-glob: 4.0.3
  1074. micromatch: 4.0.8
  1075. node-addon-api: 7.1.1
  1076. optionalDependencies:
  1077. '@parcel/watcher-android-arm64': 2.5.1
  1078. '@parcel/watcher-darwin-arm64': 2.5.1
  1079. '@parcel/watcher-darwin-x64': 2.5.1
  1080. '@parcel/watcher-freebsd-x64': 2.5.1
  1081. '@parcel/watcher-linux-arm-glibc': 2.5.1
  1082. '@parcel/watcher-linux-arm-musl': 2.5.1
  1083. '@parcel/watcher-linux-arm64-glibc': 2.5.1
  1084. '@parcel/watcher-linux-arm64-musl': 2.5.1
  1085. '@parcel/watcher-linux-x64-glibc': 2.5.1
  1086. '@parcel/watcher-linux-x64-musl': 2.5.1
  1087. '@parcel/watcher-win32-arm64': 2.5.1
  1088. '@parcel/watcher-win32-ia32': 2.5.1
  1089. '@parcel/watcher-win32-x64': 2.5.1
  1090. optional: true
  1091. '@rc-component/mini-decimal@1.1.0':
  1092. dependencies:
  1093. '@babel/runtime': 7.28.4
  1094. '@react-spring/animated@9.6.1(react@19.2.0)':
  1095. dependencies:
  1096. '@react-spring/shared': 9.6.1(react@19.2.0)
  1097. '@react-spring/types': 9.6.1
  1098. react: 19.2.0
  1099. '@react-spring/core@9.6.1(react@19.2.0)':
  1100. dependencies:
  1101. '@react-spring/animated': 9.6.1(react@19.2.0)
  1102. '@react-spring/rafz': 9.6.1
  1103. '@react-spring/shared': 9.6.1(react@19.2.0)
  1104. '@react-spring/types': 9.6.1
  1105. react: 19.2.0
  1106. '@react-spring/rafz@9.6.1': {}
  1107. '@react-spring/shared@9.6.1(react@19.2.0)':
  1108. dependencies:
  1109. '@react-spring/rafz': 9.6.1
  1110. '@react-spring/types': 9.6.1
  1111. react: 19.2.0
  1112. '@react-spring/types@9.6.1': {}
  1113. '@react-spring/web@9.6.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
  1114. dependencies:
  1115. '@react-spring/animated': 9.6.1(react@19.2.0)
  1116. '@react-spring/core': 9.6.1(react@19.2.0)
  1117. '@react-spring/shared': 9.6.1(react@19.2.0)
  1118. '@react-spring/types': 9.6.1
  1119. react: 19.2.0
  1120. react-dom: 19.2.0(react@19.2.0)
  1121. '@remix-run/router@1.23.0': {}
  1122. '@rolldown/pluginutils@1.0.0-beta.43': {}
  1123. '@rollup/rollup-android-arm-eabi@4.52.5':
  1124. optional: true
  1125. '@rollup/rollup-android-arm64@4.52.5':
  1126. optional: true
  1127. '@rollup/rollup-darwin-arm64@4.52.5':
  1128. optional: true
  1129. '@rollup/rollup-darwin-x64@4.52.5':
  1130. optional: true
  1131. '@rollup/rollup-freebsd-arm64@4.52.5':
  1132. optional: true
  1133. '@rollup/rollup-freebsd-x64@4.52.5':
  1134. optional: true
  1135. '@rollup/rollup-linux-arm-gnueabihf@4.52.5':
  1136. optional: true
  1137. '@rollup/rollup-linux-arm-musleabihf@4.52.5':
  1138. optional: true
  1139. '@rollup/rollup-linux-arm64-gnu@4.52.5':
  1140. optional: true
  1141. '@rollup/rollup-linux-arm64-musl@4.52.5':
  1142. optional: true
  1143. '@rollup/rollup-linux-loong64-gnu@4.52.5':
  1144. optional: true
  1145. '@rollup/rollup-linux-ppc64-gnu@4.52.5':
  1146. optional: true
  1147. '@rollup/rollup-linux-riscv64-gnu@4.52.5':
  1148. optional: true
  1149. '@rollup/rollup-linux-riscv64-musl@4.52.5':
  1150. optional: true
  1151. '@rollup/rollup-linux-s390x-gnu@4.52.5':
  1152. optional: true
  1153. '@rollup/rollup-linux-x64-gnu@4.52.5':
  1154. optional: true
  1155. '@rollup/rollup-linux-x64-musl@4.52.5':
  1156. optional: true
  1157. '@rollup/rollup-openharmony-arm64@4.52.5':
  1158. optional: true
  1159. '@rollup/rollup-win32-arm64-msvc@4.52.5':
  1160. optional: true
  1161. '@rollup/rollup-win32-ia32-msvc@4.52.5':
  1162. optional: true
  1163. '@rollup/rollup-win32-x64-gnu@4.52.5':
  1164. optional: true
  1165. '@rollup/rollup-win32-x64-msvc@4.52.5':
  1166. optional: true
  1167. '@types/babel__core@7.20.5':
  1168. dependencies:
  1169. '@babel/parser': 7.28.5
  1170. '@babel/types': 7.28.5
  1171. '@types/babel__generator': 7.27.0
  1172. '@types/babel__template': 7.4.4
  1173. '@types/babel__traverse': 7.28.0
  1174. '@types/babel__generator@7.27.0':
  1175. dependencies:
  1176. '@babel/types': 7.28.5
  1177. '@types/babel__template@7.4.4':
  1178. dependencies:
  1179. '@babel/parser': 7.28.5
  1180. '@babel/types': 7.28.5
  1181. '@types/babel__traverse@7.28.0':
  1182. dependencies:
  1183. '@babel/types': 7.28.5
  1184. '@types/d3-array@3.2.2': {}
  1185. '@types/d3-color@3.1.3': {}
  1186. '@types/d3-ease@3.0.2': {}
  1187. '@types/d3-interpolate@3.0.4':
  1188. dependencies:
  1189. '@types/d3-color': 3.1.3
  1190. '@types/d3-path@3.1.1': {}
  1191. '@types/d3-scale@4.0.9':
  1192. dependencies:
  1193. '@types/d3-time': 3.0.4
  1194. '@types/d3-shape@3.1.7':
  1195. dependencies:
  1196. '@types/d3-path': 3.1.1
  1197. '@types/d3-time@3.0.4': {}
  1198. '@types/d3-timer@3.0.2': {}
  1199. '@types/estree@1.0.8': {}
  1200. '@types/js-cookie@3.0.6': {}
  1201. '@types/node@22.19.0':
  1202. dependencies:
  1203. undici-types: 6.21.0
  1204. '@types/react@19.2.2':
  1205. dependencies:
  1206. csstype: 3.1.3
  1207. '@use-gesture/core@10.3.0': {}
  1208. '@use-gesture/react@10.3.0(react@19.2.0)':
  1209. dependencies:
  1210. '@use-gesture/core': 10.3.0
  1211. react: 19.2.0
  1212. '@vitejs/plugin-react@5.1.0(vite@6.4.1(@types/node@22.19.0)(sass@1.93.3))':
  1213. dependencies:
  1214. '@babel/core': 7.28.5
  1215. '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
  1216. '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5)
  1217. '@rolldown/pluginutils': 1.0.0-beta.43
  1218. '@types/babel__core': 7.20.5
  1219. react-refresh: 0.18.0
  1220. vite: 6.4.1(@types/node@22.19.0)(sass@1.93.3)
  1221. transitivePeerDependencies:
  1222. - supports-color
  1223. ahooks@3.9.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1224. dependencies:
  1225. '@babel/runtime': 7.28.4
  1226. '@types/js-cookie': 3.0.6
  1227. dayjs: 1.11.19
  1228. intersection-observer: 0.12.2
  1229. js-cookie: 3.0.5
  1230. lodash: 4.17.21
  1231. react: 19.2.0
  1232. react-dom: 19.2.0(react@19.2.0)
  1233. react-fast-compare: 3.2.2
  1234. resize-observer-polyfill: 1.5.1
  1235. screenfull: 5.2.0
  1236. tslib: 2.8.1
  1237. alova@3.3.4:
  1238. dependencies:
  1239. '@alova/shared': 1.3.1
  1240. rate-limiter-flexible: 5.0.5
  1241. antd-mobile-icons@0.3.0: {}
  1242. antd-mobile-v5-count@1.0.1: {}
  1243. antd-mobile@5.41.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1244. dependencies:
  1245. '@floating-ui/dom': 1.7.4
  1246. '@rc-component/mini-decimal': 1.1.0
  1247. '@react-spring/web': 9.6.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1248. '@use-gesture/react': 10.3.0(react@19.2.0)
  1249. ahooks: 3.9.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1250. antd-mobile-icons: 0.3.0
  1251. antd-mobile-v5-count: 1.0.1
  1252. classnames: 2.5.1
  1253. dayjs: 1.11.19
  1254. deepmerge: 4.3.1
  1255. nano-memoize: 3.0.16
  1256. rc-field-form: 1.44.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1257. rc-segmented: 2.4.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1258. rc-util: 5.44.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1259. react: 19.2.0
  1260. react-dom: 19.2.0(react@19.2.0)
  1261. react-fast-compare: 3.2.2
  1262. react-is: 18.3.1
  1263. runes2: 1.1.4
  1264. staged-components: 1.1.3(react@19.2.0)
  1265. tslib: 2.8.1
  1266. use-sync-external-store: 1.6.0(react@19.2.0)
  1267. async-validator@4.2.5: {}
  1268. baseline-browser-mapping@2.8.23: {}
  1269. braces@3.0.3:
  1270. dependencies:
  1271. fill-range: 7.1.1
  1272. optional: true
  1273. browserslist@4.27.0:
  1274. dependencies:
  1275. baseline-browser-mapping: 2.8.23
  1276. caniuse-lite: 1.0.30001753
  1277. electron-to-chromium: 1.5.244
  1278. node-releases: 2.0.27
  1279. update-browserslist-db: 1.1.4(browserslist@4.27.0)
  1280. caniuse-lite@1.0.30001753: {}
  1281. chokidar@4.0.3:
  1282. dependencies:
  1283. readdirp: 4.1.2
  1284. classnames@2.5.1: {}
  1285. clsx@2.1.1: {}
  1286. convert-source-map@2.0.0: {}
  1287. csstype@3.1.3: {}
  1288. d3-array@3.2.4:
  1289. dependencies:
  1290. internmap: 2.0.3
  1291. d3-color@3.1.0: {}
  1292. d3-ease@3.0.1: {}
  1293. d3-format@3.1.0: {}
  1294. d3-interpolate@3.0.1:
  1295. dependencies:
  1296. d3-color: 3.1.0
  1297. d3-path@3.1.0: {}
  1298. d3-scale@4.0.2:
  1299. dependencies:
  1300. d3-array: 3.2.4
  1301. d3-format: 3.1.0
  1302. d3-interpolate: 3.0.1
  1303. d3-time: 3.1.0
  1304. d3-time-format: 4.1.0
  1305. d3-shape@3.2.0:
  1306. dependencies:
  1307. d3-path: 3.1.0
  1308. d3-time-format@4.1.0:
  1309. dependencies:
  1310. d3-time: 3.1.0
  1311. d3-time@3.1.0:
  1312. dependencies:
  1313. d3-array: 3.2.4
  1314. d3-timer@3.0.1: {}
  1315. dayjs@1.11.19: {}
  1316. debug@4.4.3:
  1317. dependencies:
  1318. ms: 2.1.3
  1319. decimal.js-light@2.5.1: {}
  1320. deepmerge@4.3.1: {}
  1321. detect-libc@1.0.3:
  1322. optional: true
  1323. dom-helpers@5.2.1:
  1324. dependencies:
  1325. '@babel/runtime': 7.28.4
  1326. csstype: 3.1.3
  1327. electron-to-chromium@1.5.244: {}
  1328. esbuild@0.25.12:
  1329. optionalDependencies:
  1330. '@esbuild/aix-ppc64': 0.25.12
  1331. '@esbuild/android-arm': 0.25.12
  1332. '@esbuild/android-arm64': 0.25.12
  1333. '@esbuild/android-x64': 0.25.12
  1334. '@esbuild/darwin-arm64': 0.25.12
  1335. '@esbuild/darwin-x64': 0.25.12
  1336. '@esbuild/freebsd-arm64': 0.25.12
  1337. '@esbuild/freebsd-x64': 0.25.12
  1338. '@esbuild/linux-arm': 0.25.12
  1339. '@esbuild/linux-arm64': 0.25.12
  1340. '@esbuild/linux-ia32': 0.25.12
  1341. '@esbuild/linux-loong64': 0.25.12
  1342. '@esbuild/linux-mips64el': 0.25.12
  1343. '@esbuild/linux-ppc64': 0.25.12
  1344. '@esbuild/linux-riscv64': 0.25.12
  1345. '@esbuild/linux-s390x': 0.25.12
  1346. '@esbuild/linux-x64': 0.25.12
  1347. '@esbuild/netbsd-arm64': 0.25.12
  1348. '@esbuild/netbsd-x64': 0.25.12
  1349. '@esbuild/openbsd-arm64': 0.25.12
  1350. '@esbuild/openbsd-x64': 0.25.12
  1351. '@esbuild/openharmony-arm64': 0.25.12
  1352. '@esbuild/sunos-x64': 0.25.12
  1353. '@esbuild/win32-arm64': 0.25.12
  1354. '@esbuild/win32-ia32': 0.25.12
  1355. '@esbuild/win32-x64': 0.25.12
  1356. escalade@3.2.0: {}
  1357. eventemitter3@4.0.7: {}
  1358. fast-equals@5.3.2: {}
  1359. fdir@6.5.0(picomatch@4.0.3):
  1360. optionalDependencies:
  1361. picomatch: 4.0.3
  1362. fill-range@7.1.1:
  1363. dependencies:
  1364. to-regex-range: 5.0.1
  1365. optional: true
  1366. fsevents@2.3.3:
  1367. optional: true
  1368. gensync@1.0.0-beta.2: {}
  1369. immutable@5.1.4: {}
  1370. internmap@2.0.3: {}
  1371. intersection-observer@0.12.2: {}
  1372. is-extglob@2.1.1:
  1373. optional: true
  1374. is-glob@4.0.3:
  1375. dependencies:
  1376. is-extglob: 2.1.1
  1377. optional: true
  1378. is-number@7.0.0:
  1379. optional: true
  1380. js-cookie@3.0.5: {}
  1381. js-tokens@4.0.0: {}
  1382. jsesc@3.1.0: {}
  1383. json5@2.2.3: {}
  1384. lodash@4.17.21: {}
  1385. loose-envify@1.4.0:
  1386. dependencies:
  1387. js-tokens: 4.0.0
  1388. lru-cache@5.1.1:
  1389. dependencies:
  1390. yallist: 3.1.1
  1391. micromatch@4.0.8:
  1392. dependencies:
  1393. braces: 3.0.3
  1394. picomatch: 2.3.1
  1395. optional: true
  1396. ms@2.1.3: {}
  1397. nano-memoize@3.0.16: {}
  1398. nanoid@3.3.11: {}
  1399. node-addon-api@7.1.1:
  1400. optional: true
  1401. node-releases@2.0.27: {}
  1402. object-assign@4.1.1: {}
  1403. picocolors@1.1.1: {}
  1404. picomatch@2.3.1:
  1405. optional: true
  1406. picomatch@4.0.3: {}
  1407. postcss@8.5.6:
  1408. dependencies:
  1409. nanoid: 3.3.11
  1410. picocolors: 1.1.1
  1411. source-map-js: 1.2.1
  1412. prop-types@15.8.1:
  1413. dependencies:
  1414. loose-envify: 1.4.0
  1415. object-assign: 4.1.1
  1416. react-is: 16.13.1
  1417. rate-limiter-flexible@5.0.5: {}
  1418. rc-field-form@1.44.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1419. dependencies:
  1420. '@babel/runtime': 7.28.4
  1421. async-validator: 4.2.5
  1422. rc-util: 5.44.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1423. react: 19.2.0
  1424. react-dom: 19.2.0(react@19.2.0)
  1425. rc-motion@2.9.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1426. dependencies:
  1427. '@babel/runtime': 7.28.4
  1428. classnames: 2.5.1
  1429. rc-util: 5.44.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1430. react: 19.2.0
  1431. react-dom: 19.2.0(react@19.2.0)
  1432. rc-segmented@2.4.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1433. dependencies:
  1434. '@babel/runtime': 7.28.4
  1435. classnames: 2.5.1
  1436. rc-motion: 2.9.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1437. rc-util: 5.44.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1438. react: 19.2.0
  1439. react-dom: 19.2.0(react@19.2.0)
  1440. rc-util@5.44.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1441. dependencies:
  1442. '@babel/runtime': 7.28.4
  1443. react: 19.2.0
  1444. react-dom: 19.2.0(react@19.2.0)
  1445. react-is: 18.3.1
  1446. react-dom@19.2.0(react@19.2.0):
  1447. dependencies:
  1448. react: 19.2.0
  1449. scheduler: 0.27.0
  1450. react-fast-compare@3.2.2: {}
  1451. react-is@16.13.1: {}
  1452. react-is@18.3.1: {}
  1453. react-refresh@0.18.0: {}
  1454. react-router-dom@6.30.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1455. dependencies:
  1456. '@remix-run/router': 1.23.0
  1457. react: 19.2.0
  1458. react-dom: 19.2.0(react@19.2.0)
  1459. react-router: 6.30.1(react@19.2.0)
  1460. react-router@6.30.1(react@19.2.0):
  1461. dependencies:
  1462. '@remix-run/router': 1.23.0
  1463. react: 19.2.0
  1464. react-smooth@4.0.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1465. dependencies:
  1466. fast-equals: 5.3.2
  1467. prop-types: 15.8.1
  1468. react: 19.2.0
  1469. react-dom: 19.2.0(react@19.2.0)
  1470. react-transition-group: 4.4.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1471. react-transition-group@4.4.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1472. dependencies:
  1473. '@babel/runtime': 7.28.4
  1474. dom-helpers: 5.2.1
  1475. loose-envify: 1.4.0
  1476. prop-types: 15.8.1
  1477. react: 19.2.0
  1478. react-dom: 19.2.0(react@19.2.0)
  1479. react@19.2.0: {}
  1480. readdirp@4.1.2: {}
  1481. recharts-scale@0.4.5:
  1482. dependencies:
  1483. decimal.js-light: 2.5.1
  1484. recharts@2.12.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
  1485. dependencies:
  1486. clsx: 2.1.1
  1487. eventemitter3: 4.0.7
  1488. lodash: 4.17.21
  1489. react: 19.2.0
  1490. react-dom: 19.2.0(react@19.2.0)
  1491. react-is: 16.13.1
  1492. react-smooth: 4.0.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
  1493. recharts-scale: 0.4.5
  1494. tiny-invariant: 1.3.3
  1495. victory-vendor: 36.9.2
  1496. resize-observer-polyfill@1.5.1: {}
  1497. rollup@4.52.5:
  1498. dependencies:
  1499. '@types/estree': 1.0.8
  1500. optionalDependencies:
  1501. '@rollup/rollup-android-arm-eabi': 4.52.5
  1502. '@rollup/rollup-android-arm64': 4.52.5
  1503. '@rollup/rollup-darwin-arm64': 4.52.5
  1504. '@rollup/rollup-darwin-x64': 4.52.5
  1505. '@rollup/rollup-freebsd-arm64': 4.52.5
  1506. '@rollup/rollup-freebsd-x64': 4.52.5
  1507. '@rollup/rollup-linux-arm-gnueabihf': 4.52.5
  1508. '@rollup/rollup-linux-arm-musleabihf': 4.52.5
  1509. '@rollup/rollup-linux-arm64-gnu': 4.52.5
  1510. '@rollup/rollup-linux-arm64-musl': 4.52.5
  1511. '@rollup/rollup-linux-loong64-gnu': 4.52.5
  1512. '@rollup/rollup-linux-ppc64-gnu': 4.52.5
  1513. '@rollup/rollup-linux-riscv64-gnu': 4.52.5
  1514. '@rollup/rollup-linux-riscv64-musl': 4.52.5
  1515. '@rollup/rollup-linux-s390x-gnu': 4.52.5
  1516. '@rollup/rollup-linux-x64-gnu': 4.52.5
  1517. '@rollup/rollup-linux-x64-musl': 4.52.5
  1518. '@rollup/rollup-openharmony-arm64': 4.52.5
  1519. '@rollup/rollup-win32-arm64-msvc': 4.52.5
  1520. '@rollup/rollup-win32-ia32-msvc': 4.52.5
  1521. '@rollup/rollup-win32-x64-gnu': 4.52.5
  1522. '@rollup/rollup-win32-x64-msvc': 4.52.5
  1523. fsevents: 2.3.3
  1524. runes2@1.1.4: {}
  1525. sass@1.93.3:
  1526. dependencies:
  1527. chokidar: 4.0.3
  1528. immutable: 5.1.4
  1529. source-map-js: 1.2.1
  1530. optionalDependencies:
  1531. '@parcel/watcher': 2.5.1
  1532. scheduler@0.27.0: {}
  1533. screenfull@5.2.0: {}
  1534. semver@6.3.1: {}
  1535. source-map-js@1.2.1: {}
  1536. staged-components@1.1.3(react@19.2.0):
  1537. dependencies:
  1538. react: 19.2.0
  1539. tiny-invariant@1.3.3: {}
  1540. tinyglobby@0.2.15:
  1541. dependencies:
  1542. fdir: 6.5.0(picomatch@4.0.3)
  1543. picomatch: 4.0.3
  1544. to-regex-range@5.0.1:
  1545. dependencies:
  1546. is-number: 7.0.0
  1547. optional: true
  1548. tslib@2.8.1: {}
  1549. typescript@5.8.3: {}
  1550. undici-types@6.21.0: {}
  1551. update-browserslist-db@1.1.4(browserslist@4.27.0):
  1552. dependencies:
  1553. browserslist: 4.27.0
  1554. escalade: 3.2.0
  1555. picocolors: 1.1.1
  1556. use-sync-external-store@1.6.0(react@19.2.0):
  1557. dependencies:
  1558. react: 19.2.0
  1559. victory-vendor@36.9.2:
  1560. dependencies:
  1561. '@types/d3-array': 3.2.2
  1562. '@types/d3-ease': 3.0.2
  1563. '@types/d3-interpolate': 3.0.4
  1564. '@types/d3-scale': 4.0.9
  1565. '@types/d3-shape': 3.1.7
  1566. '@types/d3-time': 3.0.4
  1567. '@types/d3-timer': 3.0.2
  1568. d3-array: 3.2.4
  1569. d3-ease: 3.0.1
  1570. d3-interpolate: 3.0.1
  1571. d3-scale: 4.0.2
  1572. d3-shape: 3.2.0
  1573. d3-time: 3.1.0
  1574. d3-timer: 3.0.1
  1575. vite@6.4.1(@types/node@22.19.0)(sass@1.93.3):
  1576. dependencies:
  1577. esbuild: 0.25.12
  1578. fdir: 6.5.0(picomatch@4.0.3)
  1579. picomatch: 4.0.3
  1580. postcss: 8.5.6
  1581. rollup: 4.52.5
  1582. tinyglobby: 0.2.15
  1583. optionalDependencies:
  1584. '@types/node': 22.19.0
  1585. fsevents: 2.3.3
  1586. sass: 1.93.3
  1587. yallist@3.1.1: {}