pnpm-lock.yaml 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. '@ant-design/icons':
  9. specifier: 6.x
  10. version: 6.2.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  11. '@tauri-apps/api':
  12. specifier: ^2
  13. version: 2.11.0
  14. '@tauri-apps/plugin-opener':
  15. specifier: ^2
  16. version: 2.5.4
  17. '@tauri-apps/plugin-sql':
  18. specifier: ^2
  19. version: 2.4.0
  20. antd:
  21. specifier: ^6.4.0
  22. version: 6.4.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  23. react:
  24. specifier: ^19.1.0
  25. version: 19.2.6
  26. react-dom:
  27. specifier: ^19.1.0
  28. version: 19.2.6(react@19.2.6)
  29. devDependencies:
  30. '@tailwindcss/vite':
  31. specifier: ^4.0.0
  32. version: 4.3.0(vite@7.3.3(jiti@2.7.0)(lightningcss@1.32.0))
  33. '@tauri-apps/cli':
  34. specifier: ^2
  35. version: 2.11.1
  36. '@types/react':
  37. specifier: ^19.1.8
  38. version: 19.2.14
  39. '@types/react-dom':
  40. specifier: ^19.1.6
  41. version: 19.2.3(@types/react@19.2.14)
  42. '@vitejs/plugin-react':
  43. specifier: ^4.6.0
  44. version: 4.7.0(vite@7.3.3(jiti@2.7.0)(lightningcss@1.32.0))
  45. tailwindcss:
  46. specifier: ^4.0.0
  47. version: 4.3.0
  48. typescript:
  49. specifier: ~5.8.3
  50. version: 5.8.3
  51. vite:
  52. specifier: ^7.0.4
  53. version: 7.3.3(jiti@2.7.0)(lightningcss@1.32.0)
  54. packages:
  55. '@ant-design/colors@8.0.1':
  56. resolution: {integrity: sha512-foPVl0+SWIslGUtD/xBr1p9U4AKzPhNYEseXYRRo5QSzGACYZrQbe11AYJbYfAWnWSpGBx6JjBmSeugUsD9vqQ==}
  57. '@ant-design/cssinjs-utils@2.1.2':
  58. resolution: {integrity: sha512-5fTHQ158jJJ5dC/ECeyIdZUzKxE/mpEMRZxthyG1sw/AKRHKgJBg00Yi6ACVXgycdje7KahRNvNET/uBccwCnA==}
  59. peerDependencies:
  60. react: '>=18'
  61. react-dom: '>=18'
  62. '@ant-design/cssinjs@2.1.2':
  63. resolution: {integrity: sha512-2Hy8BnCEH31xPeSLbhhB2ctCPXE2ZnASdi+KbSeS79BNbUhL9hAEe20SkUk+BR8aKTmqb6+FKFruk7w8z0VoRQ==}
  64. peerDependencies:
  65. react: '>=16.0.0'
  66. react-dom: '>=16.0.0'
  67. '@ant-design/fast-color@3.0.1':
  68. resolution: {integrity: sha512-esKJegpW4nckh0o6kV3Tkb7NPIZYbPnnFxmQDUmL08ukXZAvV85TZBr70eGuke/CIArLaP6aw8lt9KILjnWuOw==}
  69. engines: {node: '>=8.x'}
  70. '@ant-design/icons-svg@4.4.2':
  71. resolution: {integrity: sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==}
  72. '@ant-design/icons@6.2.3':
  73. resolution: {integrity: sha512-Pl3aoAtxQeKryYnt6VvDJtOxMOtA8wrRSACe/pTjOAIG3fdHrWm6Ivb4ku9tsFjYroSXBKirvuxG4QkwBXD9gg==}
  74. engines: {node: '>=8'}
  75. peerDependencies:
  76. react: '>=16.0.0'
  77. react-dom: '>=16.0.0'
  78. '@ant-design/react-slick@2.0.0':
  79. resolution: {integrity: sha512-HMS9sRoEmZey8LsE/Yo6+klhlzU12PisjrVcydW3So7RdklyEd2qehyU6a7Yp+OYN72mgsYs3NFCyP2lCPFVqg==}
  80. peerDependencies:
  81. react: ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  82. react-dom: ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
  83. '@babel/code-frame@7.29.0':
  84. resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
  85. engines: {node: '>=6.9.0'}
  86. '@babel/compat-data@7.29.3':
  87. resolution: {integrity: sha512-LIVqM46zQWZhj17qA8wb4nW/ixr2y1Nw+r1etiAWgRM6U1IqP+LNhL1yg440jYZR72jCWcWbLWzIosH+uP1fqg==}
  88. engines: {node: '>=6.9.0'}
  89. '@babel/core@7.29.0':
  90. resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
  91. engines: {node: '>=6.9.0'}
  92. '@babel/generator@7.29.1':
  93. resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
  94. engines: {node: '>=6.9.0'}
  95. '@babel/helper-compilation-targets@7.28.6':
  96. resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
  97. engines: {node: '>=6.9.0'}
  98. '@babel/helper-globals@7.28.0':
  99. resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
  100. engines: {node: '>=6.9.0'}
  101. '@babel/helper-module-imports@7.28.6':
  102. resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
  103. engines: {node: '>=6.9.0'}
  104. '@babel/helper-module-transforms@7.28.6':
  105. resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
  106. engines: {node: '>=6.9.0'}
  107. peerDependencies:
  108. '@babel/core': ^7.0.0
  109. '@babel/helper-plugin-utils@7.28.6':
  110. resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
  111. engines: {node: '>=6.9.0'}
  112. '@babel/helper-string-parser@7.27.1':
  113. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  114. engines: {node: '>=6.9.0'}
  115. '@babel/helper-validator-identifier@7.28.5':
  116. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  117. engines: {node: '>=6.9.0'}
  118. '@babel/helper-validator-option@7.27.1':
  119. resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
  120. engines: {node: '>=6.9.0'}
  121. '@babel/helpers@7.29.2':
  122. resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==}
  123. engines: {node: '>=6.9.0'}
  124. '@babel/parser@7.29.3':
  125. resolution: {integrity: sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==}
  126. engines: {node: '>=6.0.0'}
  127. hasBin: true
  128. '@babel/plugin-transform-react-jsx-self@7.27.1':
  129. resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
  130. engines: {node: '>=6.9.0'}
  131. peerDependencies:
  132. '@babel/core': ^7.0.0-0
  133. '@babel/plugin-transform-react-jsx-source@7.27.1':
  134. resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
  135. engines: {node: '>=6.9.0'}
  136. peerDependencies:
  137. '@babel/core': ^7.0.0-0
  138. '@babel/runtime@7.29.2':
  139. resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==}
  140. engines: {node: '>=6.9.0'}
  141. '@babel/template@7.28.6':
  142. resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
  143. engines: {node: '>=6.9.0'}
  144. '@babel/traverse@7.29.0':
  145. resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
  146. engines: {node: '>=6.9.0'}
  147. '@babel/types@7.29.0':
  148. resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
  149. engines: {node: '>=6.9.0'}
  150. '@emotion/hash@0.8.0':
  151. resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
  152. '@emotion/unitless@0.7.5':
  153. resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
  154. '@esbuild/aix-ppc64@0.27.7':
  155. resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==}
  156. engines: {node: '>=18'}
  157. cpu: [ppc64]
  158. os: [aix]
  159. '@esbuild/android-arm64@0.27.7':
  160. resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==}
  161. engines: {node: '>=18'}
  162. cpu: [arm64]
  163. os: [android]
  164. '@esbuild/android-arm@0.27.7':
  165. resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==}
  166. engines: {node: '>=18'}
  167. cpu: [arm]
  168. os: [android]
  169. '@esbuild/android-x64@0.27.7':
  170. resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==}
  171. engines: {node: '>=18'}
  172. cpu: [x64]
  173. os: [android]
  174. '@esbuild/darwin-arm64@0.27.7':
  175. resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==}
  176. engines: {node: '>=18'}
  177. cpu: [arm64]
  178. os: [darwin]
  179. '@esbuild/darwin-x64@0.27.7':
  180. resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==}
  181. engines: {node: '>=18'}
  182. cpu: [x64]
  183. os: [darwin]
  184. '@esbuild/freebsd-arm64@0.27.7':
  185. resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==}
  186. engines: {node: '>=18'}
  187. cpu: [arm64]
  188. os: [freebsd]
  189. '@esbuild/freebsd-x64@0.27.7':
  190. resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==}
  191. engines: {node: '>=18'}
  192. cpu: [x64]
  193. os: [freebsd]
  194. '@esbuild/linux-arm64@0.27.7':
  195. resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==}
  196. engines: {node: '>=18'}
  197. cpu: [arm64]
  198. os: [linux]
  199. '@esbuild/linux-arm@0.27.7':
  200. resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==}
  201. engines: {node: '>=18'}
  202. cpu: [arm]
  203. os: [linux]
  204. '@esbuild/linux-ia32@0.27.7':
  205. resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==}
  206. engines: {node: '>=18'}
  207. cpu: [ia32]
  208. os: [linux]
  209. '@esbuild/linux-loong64@0.27.7':
  210. resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==}
  211. engines: {node: '>=18'}
  212. cpu: [loong64]
  213. os: [linux]
  214. '@esbuild/linux-mips64el@0.27.7':
  215. resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==}
  216. engines: {node: '>=18'}
  217. cpu: [mips64el]
  218. os: [linux]
  219. '@esbuild/linux-ppc64@0.27.7':
  220. resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==}
  221. engines: {node: '>=18'}
  222. cpu: [ppc64]
  223. os: [linux]
  224. '@esbuild/linux-riscv64@0.27.7':
  225. resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==}
  226. engines: {node: '>=18'}
  227. cpu: [riscv64]
  228. os: [linux]
  229. '@esbuild/linux-s390x@0.27.7':
  230. resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==}
  231. engines: {node: '>=18'}
  232. cpu: [s390x]
  233. os: [linux]
  234. '@esbuild/linux-x64@0.27.7':
  235. resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==}
  236. engines: {node: '>=18'}
  237. cpu: [x64]
  238. os: [linux]
  239. '@esbuild/netbsd-arm64@0.27.7':
  240. resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==}
  241. engines: {node: '>=18'}
  242. cpu: [arm64]
  243. os: [netbsd]
  244. '@esbuild/netbsd-x64@0.27.7':
  245. resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==}
  246. engines: {node: '>=18'}
  247. cpu: [x64]
  248. os: [netbsd]
  249. '@esbuild/openbsd-arm64@0.27.7':
  250. resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==}
  251. engines: {node: '>=18'}
  252. cpu: [arm64]
  253. os: [openbsd]
  254. '@esbuild/openbsd-x64@0.27.7':
  255. resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==}
  256. engines: {node: '>=18'}
  257. cpu: [x64]
  258. os: [openbsd]
  259. '@esbuild/openharmony-arm64@0.27.7':
  260. resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==}
  261. engines: {node: '>=18'}
  262. cpu: [arm64]
  263. os: [openharmony]
  264. '@esbuild/sunos-x64@0.27.7':
  265. resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==}
  266. engines: {node: '>=18'}
  267. cpu: [x64]
  268. os: [sunos]
  269. '@esbuild/win32-arm64@0.27.7':
  270. resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==}
  271. engines: {node: '>=18'}
  272. cpu: [arm64]
  273. os: [win32]
  274. '@esbuild/win32-ia32@0.27.7':
  275. resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==}
  276. engines: {node: '>=18'}
  277. cpu: [ia32]
  278. os: [win32]
  279. '@esbuild/win32-x64@0.27.7':
  280. resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==}
  281. engines: {node: '>=18'}
  282. cpu: [x64]
  283. os: [win32]
  284. '@jridgewell/gen-mapping@0.3.13':
  285. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  286. '@jridgewell/remapping@2.3.5':
  287. resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
  288. '@jridgewell/resolve-uri@3.1.2':
  289. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  290. engines: {node: '>=6.0.0'}
  291. '@jridgewell/sourcemap-codec@1.5.5':
  292. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  293. '@jridgewell/trace-mapping@0.3.31':
  294. resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
  295. '@rc-component/async-validator@5.1.0':
  296. resolution: {integrity: sha512-n4HcR5siNUXRX23nDizbZBQPO0ZM/5oTtmKZ6/eqL0L2bo747cklFdZGRN2f+c9qWGICwDzrhW0H7tE9PptdcA==}
  297. engines: {node: '>=14.x'}
  298. '@rc-component/cascader@1.15.0':
  299. resolution: {integrity: sha512-ZzpMtwFCRo3fbXHuDnncARJMZQjdqA2w7aDuPofNQt+aDx39st1hgfIpEwTBLhe2Hqsvs/zOr8RTtgxTkCPySw==}
  300. peerDependencies:
  301. react: '>=18.0.0'
  302. react-dom: '>=18.0.0'
  303. '@rc-component/checkbox@2.0.0':
  304. resolution: {integrity: sha512-3CXGPpAR9gsPKeO2N78HAPOzU30UdemD6HGJoWVJOpa6WleaGB5kzZj3v6bdTZab31YuWgY/RxV3VKPctn0DwQ==}
  305. peerDependencies:
  306. react: '>=16.9.0'
  307. react-dom: '>=16.9.0'
  308. '@rc-component/collapse@1.2.0':
  309. resolution: {integrity: sha512-ZRYSKSS39qsFx93p26bde7JUZJshsUBEQRlRXPuJYlAiNX0vyYlF5TsAm8JZN3LcF8XvKikdzPbgAtXSbkLUkw==}
  310. peerDependencies:
  311. react: '>=18.0.0'
  312. react-dom: '>=18.0.0'
  313. '@rc-component/color-picker@3.1.1':
  314. resolution: {integrity: sha512-OHaCHLHszCegdXmIq2ZRIZBN/EtpT6Wm8SG/gpzLATHbVKc/avvuKi+zlOuk05FTWvgaMmpxAko44uRJ3M+2pg==}
  315. peerDependencies:
  316. react: '>=16.9.0'
  317. react-dom: '>=16.9.0'
  318. '@rc-component/context@2.0.1':
  319. resolution: {integrity: sha512-HyZbYm47s/YqtP6pKXNMjPEMaukyg7P0qVfgMLzr7YiFNMHbK2fKTAGzms9ykfGHSfyf75nBbgWw+hHkp+VImw==}
  320. peerDependencies:
  321. react: '>=16.9.0'
  322. react-dom: '>=16.9.0'
  323. '@rc-component/dialog@1.9.0':
  324. resolution: {integrity: sha512-zbAAogkg4kkKum79sLE6M+vq1jSAW25zdkafrahgcTP9t9S//SD634Znd1A4c8F2Gc12ZKnehGLsVaaOvZzD2A==}
  325. peerDependencies:
  326. react: '>=18.0.0'
  327. react-dom: '>=18.0.0'
  328. '@rc-component/drawer@1.4.2':
  329. resolution: {integrity: sha512-1ib+fZEp6FBu+YvcIktm+nCQ+Q+qIpwpoaJH6opGr4ofh2QMq+qdr5DLC4oCf5qf3pcWX9lUWPYX652k4ini8Q==}
  330. peerDependencies:
  331. react: '>=18.0.0'
  332. react-dom: '>=18.0.0'
  333. '@rc-component/dropdown@1.0.2':
  334. resolution: {integrity: sha512-6PY2ecUSYhDPhkNHHb4wfeAya04WhpmUSKzdR60G+kMNVUCX2vjT/AgTS0Lz0I/K6xrPMJ3enQbwVpeN3sHCgg==}
  335. peerDependencies:
  336. react: '>=16.11.0'
  337. react-dom: '>=16.11.0'
  338. '@rc-component/form@1.8.1':
  339. resolution: {integrity: sha512-8O7TB55Fi2mWIGvSnwZjk8jFqVNYyKDAswglwGShcbndxqzKz4cHwNtNaLjZlAeRge9wcB0LL8IWsC/Bl18raQ==}
  340. engines: {node: '>=8.x'}
  341. peerDependencies:
  342. react: '>=16.9.0'
  343. react-dom: '>=16.9.0'
  344. '@rc-component/image@1.9.0':
  345. resolution: {integrity: sha512-khF7w7xkBH5B1bsBcI1FSUZdkyd1aqpl2eYyILCqCzzQH3XdfehGUaZTnptyaJJfs09/R5hv9jXWyazOMFIClQ==}
  346. peerDependencies:
  347. react: '>=16.9.0'
  348. react-dom: '>=16.9.0'
  349. '@rc-component/input-number@1.6.2':
  350. resolution: {integrity: sha512-Gjcq7meZlCOiWN1t1xCC+7/s85humHVokTBI7PJgTfoyw5OWF74y3e6P8PHX104g9+b54jsodFIzyaj6p8LI9w==}
  351. peerDependencies:
  352. react: '>=16.9.0'
  353. react-dom: '>=16.9.0'
  354. '@rc-component/input@1.3.0':
  355. resolution: {integrity: sha512-IUUNOdAuWuEvDEFFgfmwQl818tiDbvXwLgon4HL1q2hJeYkqrRrYwYhJN0zfPHGTDxs3gvyVC/C02D4hWFoIcA==}
  356. peerDependencies:
  357. react: '>=16.0.0'
  358. react-dom: '>=16.0.0'
  359. '@rc-component/mentions@1.9.0':
  360. resolution: {integrity: sha512-WUwfFKDSOF5S9UPsNsXcLYtzjTxBGsftTXWRbZuxX6BYrsySISTnujfJNgaaQ6qVzaCDJ35QUkZKvsYxip1C5g==}
  361. peerDependencies:
  362. react: '>=16.9.0'
  363. react-dom: '>=16.9.0'
  364. '@rc-component/menu@1.3.0':
  365. resolution: {integrity: sha512-u3NfiwpiEgT177qa5Yxm5QsI8i/93EBGpWj8HYZQDnh2pCZ2xtQCe/+w3pSR2NlwKOZDTCKzEhEyD09mGphssA==}
  366. peerDependencies:
  367. react: '>=16.9.0'
  368. react-dom: '>=16.9.0'
  369. '@rc-component/mini-decimal@1.1.3':
  370. resolution: {integrity: sha512-bk/FJ09fLf+NLODMAFll6CfYrHPBioTedhW6lxDBuuWucJEqFUd4l/D/5JgIi3dina6sYahB8iuPAZTNz2pMxw==}
  371. engines: {node: '>=8.x'}
  372. '@rc-component/motion@1.3.2':
  373. resolution: {integrity: sha512-itfd+GztzJYAb04Z4RkEub1TbJAfZc2Iuy8p44U44xD1F5+fNYFKI3897ijlbIyfvXkTmMm+KGcjkQQGMHywEQ==}
  374. peerDependencies:
  375. react: '>=16.9.0'
  376. react-dom: '>=16.9.0'
  377. '@rc-component/mutate-observer@2.0.1':
  378. resolution: {integrity: sha512-AyarjoLU5YlxuValRi+w8JRH2Z84TBbFO2RoGWz9d8bSu0FqT8DtugH3xC3BV7mUwlmROFauyWuXFuq4IFbH+w==}
  379. engines: {node: '>=8.x'}
  380. peerDependencies:
  381. react: '>=16.9.0'
  382. react-dom: '>=16.9.0'
  383. '@rc-component/notification@2.0.6':
  384. resolution: {integrity: sha512-BsrVo4CBRWwG6G9HrNZtx/0PkMAZup3QAfIc7h4UdjFQfzrOKBhHuJ5c7fzUCbCSGYgAPHW9gn3sfoh+cZLSmw==}
  385. engines: {node: '>=8.x'}
  386. peerDependencies:
  387. react: '>=18.0.0'
  388. react-dom: '>=18.0.0'
  389. '@rc-component/overflow@1.0.1':
  390. resolution: {integrity: sha512-syfmgAABaHCnCDzPwHZ/2tuvIcpOO3jefYZMmfkN+pmo8HKTzsfhS57vxo4ksPdN0By+uWVJhJWNFozNBxi2eA==}
  391. peerDependencies:
  392. react: '>=16.9.0'
  393. react-dom: '>=16.9.0'
  394. '@rc-component/pagination@1.2.0':
  395. resolution: {integrity: sha512-YcpUFE8dMLfSo6OARJlK6DbHHvrxz7pMGPGmC/caZSJJz6HRKHC1RPP001PRHCvG9Z/veD039uOQmazVuLJzlw==}
  396. peerDependencies:
  397. react: '>=16.9.0'
  398. react-dom: '>=16.9.0'
  399. '@rc-component/picker@1.10.0':
  400. resolution: {integrity: sha512-vVOXP2RVWozwpERGUFAehVH1Jz6o/uRrAb9qSZm1LC+iJs8rvEwFo1bzz2jlOYV+uWwu0dIuG86tnDui14Ea0w==}
  401. engines: {node: '>=12.x'}
  402. peerDependencies:
  403. date-fns: '>= 2.x'
  404. dayjs: '>= 1.x'
  405. luxon: '>= 3.x'
  406. moment: '>= 2.x'
  407. react: '>=16.9.0'
  408. react-dom: '>=16.9.0'
  409. peerDependenciesMeta:
  410. date-fns:
  411. optional: true
  412. dayjs:
  413. optional: true
  414. luxon:
  415. optional: true
  416. moment:
  417. optional: true
  418. '@rc-component/portal@2.2.0':
  419. resolution: {integrity: sha512-oc6FlA+uXCMiwArHsJyHcIkX4q6uKyndrPol2eWX8YPkAnztHOPsFIRtmWG4BMlGE5h7YIRE3NiaJ5VS8Lb1QQ==}
  420. engines: {node: '>=12.x'}
  421. peerDependencies:
  422. react: '>=18.0.0'
  423. react-dom: '>=18.0.0'
  424. '@rc-component/progress@1.0.2':
  425. resolution: {integrity: sha512-WZUnH9eGxH1+xodZKqdrHke59uyGZSWgj5HBM5Kwk5BrTMuAORO7VJ2IP5Qbm9aH3n9x3IcesqHHR0NWPBC7fQ==}
  426. peerDependencies:
  427. react: '>=16.9.0'
  428. react-dom: '>=16.9.0'
  429. '@rc-component/qrcode@1.1.1':
  430. resolution: {integrity: sha512-LfLGNymzKdUPjXUbRP+xOhIWY4jQ+YMj5MmWAcgcAq1Ij8XP7tRmAXqyuv96XvLUBE/5cA8hLFl9eO1JQMujrA==}
  431. engines: {node: '>=8.x'}
  432. peerDependencies:
  433. react: '>=16.9.0'
  434. react-dom: '>=16.9.0'
  435. '@rc-component/rate@1.0.1':
  436. resolution: {integrity: sha512-bkXxeBqDpl5IOC7yL7GcSYjQx9G8H+6kLYQnNZWeBYq2OYIv1MONd6mqKTjnnJYpV0cQIU2z3atdW0j1kttpTw==}
  437. engines: {node: '>=8.x'}
  438. peerDependencies:
  439. react: '>=16.9.0'
  440. react-dom: '>=16.9.0'
  441. '@rc-component/resize-observer@1.1.2':
  442. resolution: {integrity: sha512-t/Bb0W8uvL4PYKAB3YcChC+DlHh0Wt5kM7q/J+0qpVEUMLe7Hk5zuvc9km0hMnTFPSx5Z7Wu/fzCLN6erVLE8Q==}
  443. peerDependencies:
  444. react: '>=16.9.0'
  445. react-dom: '>=16.9.0'
  446. '@rc-component/segmented@1.3.0':
  447. resolution: {integrity: sha512-5J/bJ01mbDnoA6P/FW8SxUvKn+OgUSTZJPzCNnTBntG50tzoP7DydGhqxp7ggZXZls7me3mc2EQDXakU3iTVFg==}
  448. peerDependencies:
  449. react: '>=16.0.0'
  450. react-dom: '>=16.0.0'
  451. '@rc-component/select@1.6.15':
  452. resolution: {integrity: sha512-SyVCWnqxCQZZcQvQJ/CxSjx2bGma6ds/HtnpkIfZVnt6RoEgbqUmHgD6vrzNarNXwbLXerwVzWwq8F3d1sst7g==}
  453. engines: {node: '>=8.x'}
  454. peerDependencies:
  455. react: '*'
  456. react-dom: '*'
  457. '@rc-component/slider@1.0.1':
  458. resolution: {integrity: sha512-uDhEPU1z3WDfCJhaL9jfd2ha/Eqpdfxsn0Zb0Xcq1NGQAman0TWaR37OWp2vVXEOdV2y0njSILTMpTfPV1454g==}
  459. engines: {node: '>=8.x'}
  460. peerDependencies:
  461. react: '>=16.9.0'
  462. react-dom: '>=16.9.0'
  463. '@rc-component/steps@1.2.2':
  464. resolution: {integrity: sha512-/yVIZ00gDYYPHSY0JP+M+s3ZvuXLu2f9rEjQqiUDs7EcYsUYrpJ/1bLj9aI9R7MBR3fu/NGh6RM9u2qGfqp+Nw==}
  465. engines: {node: '>=8.x'}
  466. peerDependencies:
  467. react: '>=16.9.0'
  468. react-dom: '>=16.9.0'
  469. '@rc-component/switch@1.0.3':
  470. resolution: {integrity: sha512-Jgi+EbOBquje/XNdofr7xbJQZPYJP+BlPfR0h+WN4zFkdtB2EWqEfvkXJWeipflwjWip0/17rNbxEAqs8hVHfw==}
  471. peerDependencies:
  472. react: '>=16.9.0'
  473. react-dom: '>=16.9.0'
  474. '@rc-component/table@1.10.0':
  475. resolution: {integrity: sha512-SjtpcCf+rL7dDc62GKT3rXTdERjVuJvRiqjpU7g0Jc/ewCifXynHc7Nm3Em1XsD+WhGrgQtxNDScI/0+Lpfr0w==}
  476. engines: {node: '>=8.x'}
  477. peerDependencies:
  478. react: '>=18.0.0'
  479. react-dom: '>=18.0.0'
  480. '@rc-component/tabs@1.9.0':
  481. resolution: {integrity: sha512-tn1slmbbaTyt8mgwyWJcT8jo/qNiYUs6u1H7OgGQt9faYO06BJIkU5cTmMqORzIrNmSEeeUY6pD5i+JlqSHYhg==}
  482. engines: {node: '>=8.x'}
  483. peerDependencies:
  484. react: '>=16.9.0'
  485. react-dom: '>=16.9.0'
  486. '@rc-component/tooltip@1.4.0':
  487. resolution: {integrity: sha512-8Rx5DCctIlLI4raR0I0xHjVTf1aF48+gKCNeAAo5bmF5VoR5YED+A/XEqzXv9KKqrJDRcd3Wndpxh2hyzrTtSg==}
  488. peerDependencies:
  489. react: '>=18.0.0'
  490. react-dom: '>=18.0.0'
  491. '@rc-component/tour@2.4.0':
  492. resolution: {integrity: sha512-aui4r4TqmTzwaBgcQxHYep8kM8PTjZFufjokObpy35KfFeZ0k9ArquWFZqegQlH24P14t+F0qO0mGTgzlav1yg==}
  493. engines: {node: '>=8.x'}
  494. peerDependencies:
  495. react: '>=16.9.0'
  496. react-dom: '>=16.9.0'
  497. '@rc-component/tree-select@1.9.0':
  498. resolution: {integrity: sha512-GXcFe15a+trUl1/J3OHWQhsVWFpwFpGFK2cqYWZ1sK22Zs3KZTvMwDpzr75PIo1s6QVioVxpE/pRwRopkeDQ6w==}
  499. peerDependencies:
  500. react: '*'
  501. react-dom: '*'
  502. '@rc-component/tree@1.3.1':
  503. resolution: {integrity: sha512-zlL0PW0bTFlveTtLcA01VD/yMWKK73EywItFMgIZUY5sb6tMOAw7zV6qGzqldufqrV93ZWQB4H3NBNoTMCueJA==}
  504. engines: {node: '>=10.x'}
  505. peerDependencies:
  506. react: '*'
  507. react-dom: '*'
  508. '@rc-component/trigger@3.9.0':
  509. resolution: {integrity: sha512-X8btpwfrT27AgrZVOz4swclhEHTZcqaHeQMXXBgveagOiakTa36uObXbdwerXffgV8G9dH1fAAE0DHtVQs8EHg==}
  510. engines: {node: '>=8.x'}
  511. peerDependencies:
  512. react: '>=18.0.0'
  513. react-dom: '>=18.0.0'
  514. '@rc-component/upload@1.1.0':
  515. resolution: {integrity: sha512-LIBV90mAnUE6VK5N4QvForoxZc4XqEYZimcp7fk+lkE4XwHHyJWxpIXQQwMU8hJM+YwBbsoZkGksL1sISWHQxw==}
  516. peerDependencies:
  517. react: '>=16.9.0'
  518. react-dom: '>=16.9.0'
  519. '@rc-component/util@1.10.1':
  520. resolution: {integrity: sha512-q++9S6rUa5Idb/xIBNz6jtvumw5+O5YV5V0g4iK9mn9jWs4oGJheE3ZN1kAnE723AXyaD8v95yeOASmdk8Jnng==}
  521. peerDependencies:
  522. react: '>=18.0.0'
  523. react-dom: '>=18.0.0'
  524. '@rc-component/virtual-list@1.0.2':
  525. resolution: {integrity: sha512-uvTol/mH74FYsn5loDGJxo+7kjkO4i+y4j87Re1pxJBs0FaeuMuLRzQRGaXwnMcV1CxpZLi2Z56Rerj2M00fjQ==}
  526. engines: {node: '>=8.x'}
  527. peerDependencies:
  528. react: '>=16.9.0'
  529. react-dom: '>=16.9.0'
  530. '@rolldown/pluginutils@1.0.0-beta.27':
  531. resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
  532. '@rollup/rollup-android-arm-eabi@4.60.3':
  533. resolution: {integrity: sha512-x35CNW/ANXG3hE/EZpRU8MXX1JDN86hBb2wMGAtltkz7pc6cxgjpy1OMMfDosOQ+2hWqIkag/fGok1Yady9nGw==}
  534. cpu: [arm]
  535. os: [android]
  536. '@rollup/rollup-android-arm64@4.60.3':
  537. resolution: {integrity: sha512-xw3xtkDApIOGayehp2+Rz4zimfkaX65r4t47iy+ymQB2G4iJCBBfj0ogVg5jpvjpn8UWn/+q9tprxleYeNp3Hw==}
  538. cpu: [arm64]
  539. os: [android]
  540. '@rollup/rollup-darwin-arm64@4.60.3':
  541. resolution: {integrity: sha512-vo6Y5Qfpx7/5EaamIwi0WqW2+zfiusVihKatLvtN1VFVy3D13uERk/6gZLU1UiHRL6fDXqj/ELIeVRGnvcTE1g==}
  542. cpu: [arm64]
  543. os: [darwin]
  544. '@rollup/rollup-darwin-x64@4.60.3':
  545. resolution: {integrity: sha512-D+0QGcZhBzTN82weOnsSlY7V7+RMmPuF1CkbxyMAGE8+ZHeUjyb76ZiWmBlCu//AQQONvxcqRbwZTajZKqjuOw==}
  546. cpu: [x64]
  547. os: [darwin]
  548. '@rollup/rollup-freebsd-arm64@4.60.3':
  549. resolution: {integrity: sha512-6HnvHCT7fDyj6R0Ph7A6x8dQS/S38MClRWeDLqc0MdfWkxjiu1HSDYrdPhqSILzjTIC/pnXbbJbo+ft+gy/9hQ==}
  550. cpu: [arm64]
  551. os: [freebsd]
  552. '@rollup/rollup-freebsd-x64@4.60.3':
  553. resolution: {integrity: sha512-KHLgC3WKlUYW3ShFKnnosZDOJ0xjg9zp7au3sIm2bs/tGBeC2ipmvRh/N7JKi0t9Ue20C0dpEshi8WUubg+cnA==}
  554. cpu: [x64]
  555. os: [freebsd]
  556. '@rollup/rollup-linux-arm-gnueabihf@4.60.3':
  557. resolution: {integrity: sha512-DV6fJoxEYWJOvaZIsok7KrYl0tPvga5OZ2yvKHNNYyk/2roMLqQAbGhr78EQ5YhHpnhLKJD3S1WFusAkmUuV5g==}
  558. cpu: [arm]
  559. os: [linux]
  560. '@rollup/rollup-linux-arm-musleabihf@4.60.3':
  561. resolution: {integrity: sha512-mQKoJAzvuOs6F+TZybQO4GOTSMUu7v0WdxEk24krQ/uUxXoPTtHjuaUuPmFhtBcM4K0ons8nrE3JyhTuCFtT/w==}
  562. cpu: [arm]
  563. os: [linux]
  564. '@rollup/rollup-linux-arm64-gnu@4.60.3':
  565. resolution: {integrity: sha512-Whjj2qoiJ6+OOJMGptTYazaJvjOJm+iKHpXQM1P3LzGjt7Ff++Tp7nH4N8J/BUA7R9IHfDyx4DJIflifwnbmIA==}
  566. cpu: [arm64]
  567. os: [linux]
  568. '@rollup/rollup-linux-arm64-musl@4.60.3':
  569. resolution: {integrity: sha512-4YTNHKqGng5+yiZt3mg77nmyuCfmNfX4fPmyUapBcIk+BdwSwmCWGXOUxhXbBEkFHtoN5boLj/5NON+u5QC9tg==}
  570. cpu: [arm64]
  571. os: [linux]
  572. '@rollup/rollup-linux-loong64-gnu@4.60.3':
  573. resolution: {integrity: sha512-SU3kNlhkpI4UqlUc2VXPGK9o886ZsSeGfMAX2ba2b8DKmMXq4AL7KUrkSWVbb7koVqx41Yczx6dx5PNargIrEA==}
  574. cpu: [loong64]
  575. os: [linux]
  576. '@rollup/rollup-linux-loong64-musl@4.60.3':
  577. resolution: {integrity: sha512-6lDLl5h4TXpB1mTf2rQWnAk/LcXrx9vBfu/DT5TIPhvMhRWaZ5MxkIc8u4lJAmBo6klTe1ywXIUHFjylW505sg==}
  578. cpu: [loong64]
  579. os: [linux]
  580. '@rollup/rollup-linux-ppc64-gnu@4.60.3':
  581. resolution: {integrity: sha512-BMo8bOw8evlup/8G+cj5xWtPyp93xPdyoSN16Zy90Q2QZ0ZYRhCt6ZJSwbrRzG9HApFabjwj2p25TUPDWrhzqQ==}
  582. cpu: [ppc64]
  583. os: [linux]
  584. '@rollup/rollup-linux-ppc64-musl@4.60.3':
  585. resolution: {integrity: sha512-E0L8X1dZN1/Rph+5VPF6Xj2G7JJvMACVXtamTJIDrVI44Y3K+G8gQaMEAavbqCGTa16InptiVrX6eM6pmJ+7qA==}
  586. cpu: [ppc64]
  587. os: [linux]
  588. '@rollup/rollup-linux-riscv64-gnu@4.60.3':
  589. resolution: {integrity: sha512-oZJ/WHaVfHUiRAtmTAeo3DcevNsVvH8mbvodjZy7D5QKvCefO371SiKRpxoDcCxB3PTRTLayWBkvmDQKTcX/sw==}
  590. cpu: [riscv64]
  591. os: [linux]
  592. '@rollup/rollup-linux-riscv64-musl@4.60.3':
  593. resolution: {integrity: sha512-Dhbyh7j9FybM3YaTgaHmVALwA8AkUwTPccyCQ79TG9AJUsMQqgN1DDEZNr4+QUfwiWvLDumW5vdwzoeUF+TNxQ==}
  594. cpu: [riscv64]
  595. os: [linux]
  596. '@rollup/rollup-linux-s390x-gnu@4.60.3':
  597. resolution: {integrity: sha512-cJd1X5XhHHlltkaypz1UcWLA8AcoIi1aWhsvaWDskD1oz2eKCypnqvTQ8ykMNI0RSmm7NkTdSqSSD7zM0xa6Ig==}
  598. cpu: [s390x]
  599. os: [linux]
  600. '@rollup/rollup-linux-x64-gnu@4.60.3':
  601. resolution: {integrity: sha512-DAZDBHQfG2oQuhY7mc6I3/qB4LU2fQCjRvxbDwd/Jdvb9fypP4IJ4qmtu6lNjes6B531AI8cg1aKC2di97bUxA==}
  602. cpu: [x64]
  603. os: [linux]
  604. '@rollup/rollup-linux-x64-musl@4.60.3':
  605. resolution: {integrity: sha512-cRxsE8c13mZOh3vP+wLDxpQBRrOHDIGOWyDL93Sy0Ga8y515fBcC2pjUfFwUe5T7tqvTvWbCpg1URM/AXdWIXA==}
  606. cpu: [x64]
  607. os: [linux]
  608. '@rollup/rollup-openbsd-x64@4.60.3':
  609. resolution: {integrity: sha512-QaWcIgRxqEdQdhJqW4DJctsH6HCmo5vHxY0krHSX4jMtOqfzC+dqDGuHM87bu4H8JBeibWx7jFz+h6/4C8wA5Q==}
  610. cpu: [x64]
  611. os: [openbsd]
  612. '@rollup/rollup-openharmony-arm64@4.60.3':
  613. resolution: {integrity: sha512-AaXwSvUi3QIPtroAUw1t5yHGIyqKEXwH54WUocFolZhpGDruJcs8c+xPNDRn4XiQsS7MEwnYsHW2l0MBLDMkWg==}
  614. cpu: [arm64]
  615. os: [openharmony]
  616. '@rollup/rollup-win32-arm64-msvc@4.60.3':
  617. resolution: {integrity: sha512-65LAKM/bAWDqKNEelHlcHvm2V+Vfb8C6INFxQXRHCvaVN1rJfwr4NvdP4FyzUaLqWfaCGaadf6UbTm8xJeYfEg==}
  618. cpu: [arm64]
  619. os: [win32]
  620. '@rollup/rollup-win32-ia32-msvc@4.60.3':
  621. resolution: {integrity: sha512-EEM2gyhBF5MFnI6vMKdX1LAosE627RGBzIoGMdLloPZkXrUN0Ckqgr2Qi8+J3zip/8NVVro3/FjB+tjhZUgUHA==}
  622. cpu: [ia32]
  623. os: [win32]
  624. '@rollup/rollup-win32-x64-gnu@4.60.3':
  625. resolution: {integrity: sha512-E5Eb5H/DpxaoXH++Qkv28RcUJboMopmdDUALBczvHMf7hNIxaDZqwY5lK12UK1BHacSmvupoEWGu+n993Z0y1A==}
  626. cpu: [x64]
  627. os: [win32]
  628. '@rollup/rollup-win32-x64-msvc@4.60.3':
  629. resolution: {integrity: sha512-hPt/bgL5cE+Qp+/TPHBqptcAgPzgj46mPcg/16zNUmbQk0j+mOEQV/+Lqu8QRtDV3Ek95Q6FeFITpuhl6OTsAA==}
  630. cpu: [x64]
  631. os: [win32]
  632. '@tailwindcss/node@4.3.0':
  633. resolution: {integrity: sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==}
  634. '@tailwindcss/oxide-android-arm64@4.3.0':
  635. resolution: {integrity: sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==}
  636. engines: {node: '>= 20'}
  637. cpu: [arm64]
  638. os: [android]
  639. '@tailwindcss/oxide-darwin-arm64@4.3.0':
  640. resolution: {integrity: sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==}
  641. engines: {node: '>= 20'}
  642. cpu: [arm64]
  643. os: [darwin]
  644. '@tailwindcss/oxide-darwin-x64@4.3.0':
  645. resolution: {integrity: sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==}
  646. engines: {node: '>= 20'}
  647. cpu: [x64]
  648. os: [darwin]
  649. '@tailwindcss/oxide-freebsd-x64@4.3.0':
  650. resolution: {integrity: sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==}
  651. engines: {node: '>= 20'}
  652. cpu: [x64]
  653. os: [freebsd]
  654. '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.0':
  655. resolution: {integrity: sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==}
  656. engines: {node: '>= 20'}
  657. cpu: [arm]
  658. os: [linux]
  659. '@tailwindcss/oxide-linux-arm64-gnu@4.3.0':
  660. resolution: {integrity: sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==}
  661. engines: {node: '>= 20'}
  662. cpu: [arm64]
  663. os: [linux]
  664. '@tailwindcss/oxide-linux-arm64-musl@4.3.0':
  665. resolution: {integrity: sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==}
  666. engines: {node: '>= 20'}
  667. cpu: [arm64]
  668. os: [linux]
  669. '@tailwindcss/oxide-linux-x64-gnu@4.3.0':
  670. resolution: {integrity: sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==}
  671. engines: {node: '>= 20'}
  672. cpu: [x64]
  673. os: [linux]
  674. '@tailwindcss/oxide-linux-x64-musl@4.3.0':
  675. resolution: {integrity: sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==}
  676. engines: {node: '>= 20'}
  677. cpu: [x64]
  678. os: [linux]
  679. '@tailwindcss/oxide-wasm32-wasi@4.3.0':
  680. resolution: {integrity: sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==}
  681. engines: {node: '>=14.0.0'}
  682. cpu: [wasm32]
  683. bundledDependencies:
  684. - '@napi-rs/wasm-runtime'
  685. - '@emnapi/core'
  686. - '@emnapi/runtime'
  687. - '@tybys/wasm-util'
  688. - '@emnapi/wasi-threads'
  689. - tslib
  690. '@tailwindcss/oxide-win32-arm64-msvc@4.3.0':
  691. resolution: {integrity: sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==}
  692. engines: {node: '>= 20'}
  693. cpu: [arm64]
  694. os: [win32]
  695. '@tailwindcss/oxide-win32-x64-msvc@4.3.0':
  696. resolution: {integrity: sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==}
  697. engines: {node: '>= 20'}
  698. cpu: [x64]
  699. os: [win32]
  700. '@tailwindcss/oxide@4.3.0':
  701. resolution: {integrity: sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==}
  702. engines: {node: '>= 20'}
  703. '@tailwindcss/vite@4.3.0':
  704. resolution: {integrity: sha512-t6J3OrB5Fc0ExuhohouH0fWUGMYL6PTLhW+E7zIk/pdbnJARZDCwjBznFnkh5ynRnIRSI4YjtTH0t6USjJISrw==}
  705. peerDependencies:
  706. vite: ^5.2.0 || ^6 || ^7 || ^8
  707. '@tauri-apps/api@2.11.0':
  708. resolution: {integrity: sha512-7CinYODhky9lmO23xHnUFv0Xt43fbtWMyxZcLcRBlFkcgXKuEirBvHpmtJ89YMhyeGcq20Wuc47Fa4XjyniywA==}
  709. '@tauri-apps/cli-darwin-arm64@2.11.1':
  710. resolution: {integrity: sha512-6eEKMBXsQPCuM1EmvrjT2+aBuxWQuFdKdW8pzNuNQtpq45nEEpBlD5gr8pUeAyOU1DQKlkFaEc/MPBxb/Pfjtg==}
  711. engines: {node: '>= 10'}
  712. cpu: [arm64]
  713. os: [darwin]
  714. '@tauri-apps/cli-darwin-x64@2.11.1':
  715. resolution: {integrity: sha512-LQUO7exfRWjWALNhetph5guWpMeHphRpokOLk0OIbTTExaNwJNFu3I4vb+CCM/4G/QGoZe/5XikZOJdNEFP1ig==}
  716. engines: {node: '>= 10'}
  717. cpu: [x64]
  718. os: [darwin]
  719. '@tauri-apps/cli-linux-arm-gnueabihf@2.11.1':
  720. resolution: {integrity: sha512-5i/awiBCRRhOUG8yjn0fMHXIWD5Ez8eEk5LtvOxyQrKuJkRaZDvnbIjZbE183blAwkoA4xN3aO/prJiqscl02Q==}
  721. engines: {node: '>= 10'}
  722. cpu: [arm]
  723. os: [linux]
  724. '@tauri-apps/cli-linux-arm64-gnu@2.11.1':
  725. resolution: {integrity: sha512-9LrwDw3S9Fygtw/Q6WDhOP+3svJRGAsejeE+GKrc0eO1ThMVhwi2LL6hw4dlKw93IfS7VY1G19sWGxJ/NcU4nA==}
  726. engines: {node: '>= 10'}
  727. cpu: [arm64]
  728. os: [linux]
  729. '@tauri-apps/cli-linux-arm64-musl@2.11.1':
  730. resolution: {integrity: sha512-mNA5dbbqPqDUdTIwdUYYuhO2GvIe9UnB2r0VU2njxBOS3Opbx4gKNC5yP0Iu4rYmEmqdlwry9VzGZQ3wq9dyFg==}
  731. engines: {node: '>= 10'}
  732. cpu: [arm64]
  733. os: [linux]
  734. '@tauri-apps/cli-linux-riscv64-gnu@2.11.1':
  735. resolution: {integrity: sha512-fZj3Gwq+6fUs305T5WQiD5iSGJw+j/4w/HGmk4sHDAcy+rp9zU5eaxB7nOyz5/I/nkNAuKPqfp6uIbiUBXkBCw==}
  736. engines: {node: '>= 10'}
  737. cpu: [riscv64]
  738. os: [linux]
  739. '@tauri-apps/cli-linux-x64-gnu@2.11.1':
  740. resolution: {integrity: sha512-XFxGxOvHM7jjeD6ozCKdGfhzJ7lERYDGZl1/Kb4fsvchaJsfLJ981TlyTG8Qy/gFq+f5GitH3bfrX9JAkjPEyw==}
  741. engines: {node: '>= 10'}
  742. cpu: [x64]
  743. os: [linux]
  744. '@tauri-apps/cli-linux-x64-musl@2.11.1':
  745. resolution: {integrity: sha512-d5C2/Zm+68v7R9wTuTCjRQEVrWjcdMkJBZ1+rXse+QdMMlTB9+u9PDNDLw9PQflWxYLaYZ7tjxxL9Nb9II6PbA==}
  746. engines: {node: '>= 10'}
  747. cpu: [x64]
  748. os: [linux]
  749. '@tauri-apps/cli-win32-arm64-msvc@2.11.1':
  750. resolution: {integrity: sha512-YdeVWFAR1pTXzUU6NLstPq4G6OLxuDrXCXEBdmBH+5EZIDXUx0D2kJlz3+YjpazkKvAzYpgziTsyRagls0OfRQ==}
  751. engines: {node: '>= 10'}
  752. cpu: [arm64]
  753. os: [win32]
  754. '@tauri-apps/cli-win32-ia32-msvc@2.11.1':
  755. resolution: {integrity: sha512-VBGkuH0eB9K9LLSMv361Gzr5Ou72sCS4+ztpmkWEQ+wd/amhcYOsf3X6qn1RJZDzIhiOYHJEOysZUC3baD01rA==}
  756. engines: {node: '>= 10'}
  757. cpu: [ia32]
  758. os: [win32]
  759. '@tauri-apps/cli-win32-x64-msvc@2.11.1':
  760. resolution: {integrity: sha512-b3ORhIAKgp9ZYY+zBt7b7r0kLU2kjvyGF0+MS2SBym3emsweGPybEqocJcmtMuxyBhkOKHP4CiuEJEDuAlTx6A==}
  761. engines: {node: '>= 10'}
  762. cpu: [x64]
  763. os: [win32]
  764. '@tauri-apps/cli@2.11.1':
  765. resolution: {integrity: sha512-rpEbaJ/HzNb6fwsquwoAbq29/Vt4gADhS423A8fdkwL4edJ0wZmoB8ar7O6JPDL834MUKOCm/rrJ7c9oAaEaYQ==}
  766. engines: {node: '>= 10'}
  767. hasBin: true
  768. '@tauri-apps/plugin-opener@2.5.4':
  769. resolution: {integrity: sha512-1HnPkb+AmgO29HBazm4uPLKB+r7zzcTBW1d0fyYp1uP+jwtpoiNDGKMMzz58SFp49nOIrxdE3aUJtT57lfO9CQ==}
  770. '@tauri-apps/plugin-sql@2.4.0':
  771. resolution: {integrity: sha512-SIICc5JlnK6OrBZzOw7MmhXHPlmASpt5zLWIu10WW4kLr5cDYOXHdV2MoCgYQkgZLQfyBYgF3SQa5XCisUiQkw==}
  772. '@types/babel__core@7.20.5':
  773. resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
  774. '@types/babel__generator@7.27.0':
  775. resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
  776. '@types/babel__template@7.4.4':
  777. resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
  778. '@types/babel__traverse@7.28.0':
  779. resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
  780. '@types/estree@1.0.8':
  781. resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
  782. '@types/react-dom@19.2.3':
  783. resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
  784. peerDependencies:
  785. '@types/react': ^19.2.0
  786. '@types/react@19.2.14':
  787. resolution: {integrity: sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==}
  788. '@vitejs/plugin-react@4.7.0':
  789. resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
  790. engines: {node: ^14.18.0 || >=16.0.0}
  791. peerDependencies:
  792. vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
  793. antd@6.4.0:
  794. resolution: {integrity: sha512-t2pQlvaaGtZUzxNh8mypfCgiSfx+AO6aQiwCels1BUYwqnoo6fw0hfe98mNYiCLa7LFvwa0AVZnrQTJNQXuFGA==}
  795. peerDependencies:
  796. react: '>=18.0.0'
  797. react-dom: '>=18.0.0'
  798. baseline-browser-mapping@2.10.29:
  799. resolution: {integrity: sha512-Asa2krT+XTPZINCS+2QcyS8WTkObE77RwkydwF7h6DmnKqbvlalz93m/dnphUyCa6SWSP51VgtEUf2FN+gelFQ==}
  800. engines: {node: '>=6.0.0'}
  801. hasBin: true
  802. browserslist@4.28.2:
  803. resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
  804. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  805. hasBin: true
  806. caniuse-lite@1.0.30001792:
  807. resolution: {integrity: sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw==}
  808. clsx@2.1.1:
  809. resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
  810. engines: {node: '>=6'}
  811. compute-scroll-into-view@3.1.1:
  812. resolution: {integrity: sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==}
  813. convert-source-map@2.0.0:
  814. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  815. csstype@3.2.3:
  816. resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
  817. dayjs@1.11.20:
  818. resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==}
  819. debug@4.4.3:
  820. resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
  821. engines: {node: '>=6.0'}
  822. peerDependencies:
  823. supports-color: '*'
  824. peerDependenciesMeta:
  825. supports-color:
  826. optional: true
  827. detect-libc@2.1.2:
  828. resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
  829. engines: {node: '>=8'}
  830. electron-to-chromium@1.5.355:
  831. resolution: {integrity: sha512-LUPZhKzZPYSPme1jEYohpkA+ybYCJztr1quAdBd7E7h3+VOBVcKkwwtBJu41nrjawrRzfb8mtMfzWozoaK0ZIQ==}
  832. enhanced-resolve@5.21.3:
  833. resolution: {integrity: sha512-QyL119InA+XXEkNLNTPCXPugSvOfhwv0JOlGNzvxs0hZaiHLNvXSpudUWsOlsXGWJh8G6ckCScEkVHfX3kw/2Q==}
  834. engines: {node: '>=10.13.0'}
  835. esbuild@0.27.7:
  836. resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==}
  837. engines: {node: '>=18'}
  838. hasBin: true
  839. escalade@3.2.0:
  840. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  841. engines: {node: '>=6'}
  842. fdir@6.5.0:
  843. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  844. engines: {node: '>=12.0.0'}
  845. peerDependencies:
  846. picomatch: ^3 || ^4
  847. peerDependenciesMeta:
  848. picomatch:
  849. optional: true
  850. fsevents@2.3.3:
  851. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  852. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  853. os: [darwin]
  854. gensync@1.0.0-beta.2:
  855. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  856. engines: {node: '>=6.9.0'}
  857. graceful-fs@4.2.11:
  858. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  859. is-mobile@5.0.0:
  860. resolution: {integrity: sha512-Tz/yndySvLAEXh+Uk8liFCxOwVH6YutuR74utvOcu7I9Di+DwM0mtdPVZNaVvvBUM2OXxne/NhOs1zAO7riusQ==}
  861. jiti@2.7.0:
  862. resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
  863. hasBin: true
  864. js-tokens@4.0.0:
  865. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  866. jsesc@3.1.0:
  867. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  868. engines: {node: '>=6'}
  869. hasBin: true
  870. json2mq@0.2.0:
  871. resolution: {integrity: sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==}
  872. json5@2.2.3:
  873. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  874. engines: {node: '>=6'}
  875. hasBin: true
  876. lightningcss-android-arm64@1.32.0:
  877. resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
  878. engines: {node: '>= 12.0.0'}
  879. cpu: [arm64]
  880. os: [android]
  881. lightningcss-darwin-arm64@1.32.0:
  882. resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
  883. engines: {node: '>= 12.0.0'}
  884. cpu: [arm64]
  885. os: [darwin]
  886. lightningcss-darwin-x64@1.32.0:
  887. resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
  888. engines: {node: '>= 12.0.0'}
  889. cpu: [x64]
  890. os: [darwin]
  891. lightningcss-freebsd-x64@1.32.0:
  892. resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
  893. engines: {node: '>= 12.0.0'}
  894. cpu: [x64]
  895. os: [freebsd]
  896. lightningcss-linux-arm-gnueabihf@1.32.0:
  897. resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
  898. engines: {node: '>= 12.0.0'}
  899. cpu: [arm]
  900. os: [linux]
  901. lightningcss-linux-arm64-gnu@1.32.0:
  902. resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
  903. engines: {node: '>= 12.0.0'}
  904. cpu: [arm64]
  905. os: [linux]
  906. lightningcss-linux-arm64-musl@1.32.0:
  907. resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
  908. engines: {node: '>= 12.0.0'}
  909. cpu: [arm64]
  910. os: [linux]
  911. lightningcss-linux-x64-gnu@1.32.0:
  912. resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
  913. engines: {node: '>= 12.0.0'}
  914. cpu: [x64]
  915. os: [linux]
  916. lightningcss-linux-x64-musl@1.32.0:
  917. resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
  918. engines: {node: '>= 12.0.0'}
  919. cpu: [x64]
  920. os: [linux]
  921. lightningcss-win32-arm64-msvc@1.32.0:
  922. resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
  923. engines: {node: '>= 12.0.0'}
  924. cpu: [arm64]
  925. os: [win32]
  926. lightningcss-win32-x64-msvc@1.32.0:
  927. resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
  928. engines: {node: '>= 12.0.0'}
  929. cpu: [x64]
  930. os: [win32]
  931. lightningcss@1.32.0:
  932. resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
  933. engines: {node: '>= 12.0.0'}
  934. lru-cache@5.1.1:
  935. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  936. magic-string@0.30.21:
  937. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  938. ms@2.1.3:
  939. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  940. nanoid@3.3.12:
  941. resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
  942. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  943. hasBin: true
  944. node-releases@2.0.44:
  945. resolution: {integrity: sha512-5WUyunoPMsvvEhS8AxHtRzP+oA8UCkJ7YRxatWKjngndhDGLiqEVAQKWjFAiAiuL8zMRGzGSJxFnLetoa43qGQ==}
  946. picocolors@1.1.1:
  947. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  948. picomatch@4.0.4:
  949. resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
  950. engines: {node: '>=12'}
  951. postcss@8.5.14:
  952. resolution: {integrity: sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==}
  953. engines: {node: ^10 || ^12 || >=14}
  954. react-dom@19.2.6:
  955. resolution: {integrity: sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==}
  956. peerDependencies:
  957. react: ^19.2.6
  958. react-is@18.3.1:
  959. resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
  960. react-refresh@0.17.0:
  961. resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
  962. engines: {node: '>=0.10.0'}
  963. react@19.2.6:
  964. resolution: {integrity: sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==}
  965. engines: {node: '>=0.10.0'}
  966. rollup@4.60.3:
  967. resolution: {integrity: sha512-pAQK9HalE84QSm4Po3EmWIZPd3FnjkShVkiMlz1iligWYkWQ7wHYd1PF/T7QZ5TVSD6uSTon5gBVMSM4JfBV+A==}
  968. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  969. hasBin: true
  970. scheduler@0.27.0:
  971. resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
  972. scroll-into-view-if-needed@3.1.0:
  973. resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}
  974. semver@6.3.1:
  975. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  976. hasBin: true
  977. source-map-js@1.2.1:
  978. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  979. engines: {node: '>=0.10.0'}
  980. string-convert@0.2.1:
  981. resolution: {integrity: sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A==}
  982. stylis@4.4.0:
  983. resolution: {integrity: sha512-5Z9ZpRzfuH6l/UAvCPAPUo3665Nk2wLaZU3x+TLHKVzIz33+sbJqbtrYoC3KD4/uVOr2Zp+L0LySezP9OHV9yA==}
  984. tailwindcss@4.3.0:
  985. resolution: {integrity: sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==}
  986. tapable@2.3.3:
  987. resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
  988. engines: {node: '>=6'}
  989. throttle-debounce@5.0.2:
  990. resolution: {integrity: sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==}
  991. engines: {node: '>=12.22'}
  992. tinyglobby@0.2.16:
  993. resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
  994. engines: {node: '>=12.0.0'}
  995. typescript@5.8.3:
  996. resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
  997. engines: {node: '>=14.17'}
  998. hasBin: true
  999. update-browserslist-db@1.2.3:
  1000. resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
  1001. hasBin: true
  1002. peerDependencies:
  1003. browserslist: '>= 4.21.0'
  1004. vite@7.3.3:
  1005. resolution: {integrity: sha512-/4XH147Ui7OGTjg3HbdWe5arnZQSbfuRzdr9Ec7TQi5I7R+ir0Rlc9GIvD4v0XZurELqA035KVXJXpR61xhiTA==}
  1006. engines: {node: ^20.19.0 || >=22.12.0}
  1007. hasBin: true
  1008. peerDependencies:
  1009. '@types/node': ^20.19.0 || >=22.12.0
  1010. jiti: '>=1.21.0'
  1011. less: ^4.0.0
  1012. lightningcss: ^1.21.0
  1013. sass: ^1.70.0
  1014. sass-embedded: ^1.70.0
  1015. stylus: '>=0.54.8'
  1016. sugarss: ^5.0.0
  1017. terser: ^5.16.0
  1018. tsx: ^4.8.1
  1019. yaml: ^2.4.2
  1020. peerDependenciesMeta:
  1021. '@types/node':
  1022. optional: true
  1023. jiti:
  1024. optional: true
  1025. less:
  1026. optional: true
  1027. lightningcss:
  1028. optional: true
  1029. sass:
  1030. optional: true
  1031. sass-embedded:
  1032. optional: true
  1033. stylus:
  1034. optional: true
  1035. sugarss:
  1036. optional: true
  1037. terser:
  1038. optional: true
  1039. tsx:
  1040. optional: true
  1041. yaml:
  1042. optional: true
  1043. yallist@3.1.1:
  1044. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  1045. snapshots:
  1046. '@ant-design/colors@8.0.1':
  1047. dependencies:
  1048. '@ant-design/fast-color': 3.0.1
  1049. '@ant-design/cssinjs-utils@2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1050. dependencies:
  1051. '@ant-design/cssinjs': 2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1052. '@babel/runtime': 7.29.2
  1053. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1054. react: 19.2.6
  1055. react-dom: 19.2.6(react@19.2.6)
  1056. '@ant-design/cssinjs@2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1057. dependencies:
  1058. '@babel/runtime': 7.29.2
  1059. '@emotion/hash': 0.8.0
  1060. '@emotion/unitless': 0.7.5
  1061. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1062. clsx: 2.1.1
  1063. csstype: 3.2.3
  1064. react: 19.2.6
  1065. react-dom: 19.2.6(react@19.2.6)
  1066. stylis: 4.4.0
  1067. '@ant-design/fast-color@3.0.1': {}
  1068. '@ant-design/icons-svg@4.4.2': {}
  1069. '@ant-design/icons@6.2.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1070. dependencies:
  1071. '@ant-design/colors': 8.0.1
  1072. '@ant-design/icons-svg': 4.4.2
  1073. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1074. clsx: 2.1.1
  1075. react: 19.2.6
  1076. react-dom: 19.2.6(react@19.2.6)
  1077. '@ant-design/react-slick@2.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1078. dependencies:
  1079. '@babel/runtime': 7.29.2
  1080. clsx: 2.1.1
  1081. json2mq: 0.2.0
  1082. react: 19.2.6
  1083. react-dom: 19.2.6(react@19.2.6)
  1084. throttle-debounce: 5.0.2
  1085. '@babel/code-frame@7.29.0':
  1086. dependencies:
  1087. '@babel/helper-validator-identifier': 7.28.5
  1088. js-tokens: 4.0.0
  1089. picocolors: 1.1.1
  1090. '@babel/compat-data@7.29.3': {}
  1091. '@babel/core@7.29.0':
  1092. dependencies:
  1093. '@babel/code-frame': 7.29.0
  1094. '@babel/generator': 7.29.1
  1095. '@babel/helper-compilation-targets': 7.28.6
  1096. '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
  1097. '@babel/helpers': 7.29.2
  1098. '@babel/parser': 7.29.3
  1099. '@babel/template': 7.28.6
  1100. '@babel/traverse': 7.29.0
  1101. '@babel/types': 7.29.0
  1102. '@jridgewell/remapping': 2.3.5
  1103. convert-source-map: 2.0.0
  1104. debug: 4.4.3
  1105. gensync: 1.0.0-beta.2
  1106. json5: 2.2.3
  1107. semver: 6.3.1
  1108. transitivePeerDependencies:
  1109. - supports-color
  1110. '@babel/generator@7.29.1':
  1111. dependencies:
  1112. '@babel/parser': 7.29.3
  1113. '@babel/types': 7.29.0
  1114. '@jridgewell/gen-mapping': 0.3.13
  1115. '@jridgewell/trace-mapping': 0.3.31
  1116. jsesc: 3.1.0
  1117. '@babel/helper-compilation-targets@7.28.6':
  1118. dependencies:
  1119. '@babel/compat-data': 7.29.3
  1120. '@babel/helper-validator-option': 7.27.1
  1121. browserslist: 4.28.2
  1122. lru-cache: 5.1.1
  1123. semver: 6.3.1
  1124. '@babel/helper-globals@7.28.0': {}
  1125. '@babel/helper-module-imports@7.28.6':
  1126. dependencies:
  1127. '@babel/traverse': 7.29.0
  1128. '@babel/types': 7.29.0
  1129. transitivePeerDependencies:
  1130. - supports-color
  1131. '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
  1132. dependencies:
  1133. '@babel/core': 7.29.0
  1134. '@babel/helper-module-imports': 7.28.6
  1135. '@babel/helper-validator-identifier': 7.28.5
  1136. '@babel/traverse': 7.29.0
  1137. transitivePeerDependencies:
  1138. - supports-color
  1139. '@babel/helper-plugin-utils@7.28.6': {}
  1140. '@babel/helper-string-parser@7.27.1': {}
  1141. '@babel/helper-validator-identifier@7.28.5': {}
  1142. '@babel/helper-validator-option@7.27.1': {}
  1143. '@babel/helpers@7.29.2':
  1144. dependencies:
  1145. '@babel/template': 7.28.6
  1146. '@babel/types': 7.29.0
  1147. '@babel/parser@7.29.3':
  1148. dependencies:
  1149. '@babel/types': 7.29.0
  1150. '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.29.0)':
  1151. dependencies:
  1152. '@babel/core': 7.29.0
  1153. '@babel/helper-plugin-utils': 7.28.6
  1154. '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.29.0)':
  1155. dependencies:
  1156. '@babel/core': 7.29.0
  1157. '@babel/helper-plugin-utils': 7.28.6
  1158. '@babel/runtime@7.29.2': {}
  1159. '@babel/template@7.28.6':
  1160. dependencies:
  1161. '@babel/code-frame': 7.29.0
  1162. '@babel/parser': 7.29.3
  1163. '@babel/types': 7.29.0
  1164. '@babel/traverse@7.29.0':
  1165. dependencies:
  1166. '@babel/code-frame': 7.29.0
  1167. '@babel/generator': 7.29.1
  1168. '@babel/helper-globals': 7.28.0
  1169. '@babel/parser': 7.29.3
  1170. '@babel/template': 7.28.6
  1171. '@babel/types': 7.29.0
  1172. debug: 4.4.3
  1173. transitivePeerDependencies:
  1174. - supports-color
  1175. '@babel/types@7.29.0':
  1176. dependencies:
  1177. '@babel/helper-string-parser': 7.27.1
  1178. '@babel/helper-validator-identifier': 7.28.5
  1179. '@emotion/hash@0.8.0': {}
  1180. '@emotion/unitless@0.7.5': {}
  1181. '@esbuild/aix-ppc64@0.27.7':
  1182. optional: true
  1183. '@esbuild/android-arm64@0.27.7':
  1184. optional: true
  1185. '@esbuild/android-arm@0.27.7':
  1186. optional: true
  1187. '@esbuild/android-x64@0.27.7':
  1188. optional: true
  1189. '@esbuild/darwin-arm64@0.27.7':
  1190. optional: true
  1191. '@esbuild/darwin-x64@0.27.7':
  1192. optional: true
  1193. '@esbuild/freebsd-arm64@0.27.7':
  1194. optional: true
  1195. '@esbuild/freebsd-x64@0.27.7':
  1196. optional: true
  1197. '@esbuild/linux-arm64@0.27.7':
  1198. optional: true
  1199. '@esbuild/linux-arm@0.27.7':
  1200. optional: true
  1201. '@esbuild/linux-ia32@0.27.7':
  1202. optional: true
  1203. '@esbuild/linux-loong64@0.27.7':
  1204. optional: true
  1205. '@esbuild/linux-mips64el@0.27.7':
  1206. optional: true
  1207. '@esbuild/linux-ppc64@0.27.7':
  1208. optional: true
  1209. '@esbuild/linux-riscv64@0.27.7':
  1210. optional: true
  1211. '@esbuild/linux-s390x@0.27.7':
  1212. optional: true
  1213. '@esbuild/linux-x64@0.27.7':
  1214. optional: true
  1215. '@esbuild/netbsd-arm64@0.27.7':
  1216. optional: true
  1217. '@esbuild/netbsd-x64@0.27.7':
  1218. optional: true
  1219. '@esbuild/openbsd-arm64@0.27.7':
  1220. optional: true
  1221. '@esbuild/openbsd-x64@0.27.7':
  1222. optional: true
  1223. '@esbuild/openharmony-arm64@0.27.7':
  1224. optional: true
  1225. '@esbuild/sunos-x64@0.27.7':
  1226. optional: true
  1227. '@esbuild/win32-arm64@0.27.7':
  1228. optional: true
  1229. '@esbuild/win32-ia32@0.27.7':
  1230. optional: true
  1231. '@esbuild/win32-x64@0.27.7':
  1232. optional: true
  1233. '@jridgewell/gen-mapping@0.3.13':
  1234. dependencies:
  1235. '@jridgewell/sourcemap-codec': 1.5.5
  1236. '@jridgewell/trace-mapping': 0.3.31
  1237. '@jridgewell/remapping@2.3.5':
  1238. dependencies:
  1239. '@jridgewell/gen-mapping': 0.3.13
  1240. '@jridgewell/trace-mapping': 0.3.31
  1241. '@jridgewell/resolve-uri@3.1.2': {}
  1242. '@jridgewell/sourcemap-codec@1.5.5': {}
  1243. '@jridgewell/trace-mapping@0.3.31':
  1244. dependencies:
  1245. '@jridgewell/resolve-uri': 3.1.2
  1246. '@jridgewell/sourcemap-codec': 1.5.5
  1247. '@rc-component/async-validator@5.1.0':
  1248. dependencies:
  1249. '@babel/runtime': 7.29.2
  1250. '@rc-component/cascader@1.15.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1251. dependencies:
  1252. '@rc-component/select': 1.6.15(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1253. '@rc-component/tree': 1.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1254. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1255. clsx: 2.1.1
  1256. react: 19.2.6
  1257. react-dom: 19.2.6(react@19.2.6)
  1258. '@rc-component/checkbox@2.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1259. dependencies:
  1260. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1261. clsx: 2.1.1
  1262. react: 19.2.6
  1263. react-dom: 19.2.6(react@19.2.6)
  1264. '@rc-component/collapse@1.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1265. dependencies:
  1266. '@babel/runtime': 7.29.2
  1267. '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1268. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1269. clsx: 2.1.1
  1270. react: 19.2.6
  1271. react-dom: 19.2.6(react@19.2.6)
  1272. '@rc-component/color-picker@3.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1273. dependencies:
  1274. '@ant-design/fast-color': 3.0.1
  1275. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1276. clsx: 2.1.1
  1277. react: 19.2.6
  1278. react-dom: 19.2.6(react@19.2.6)
  1279. '@rc-component/context@2.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1280. dependencies:
  1281. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1282. react: 19.2.6
  1283. react-dom: 19.2.6(react@19.2.6)
  1284. '@rc-component/dialog@1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1285. dependencies:
  1286. '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1287. '@rc-component/portal': 2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1288. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1289. clsx: 2.1.1
  1290. react: 19.2.6
  1291. react-dom: 19.2.6(react@19.2.6)
  1292. '@rc-component/drawer@1.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1293. dependencies:
  1294. '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1295. '@rc-component/portal': 2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1296. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1297. clsx: 2.1.1
  1298. react: 19.2.6
  1299. react-dom: 19.2.6(react@19.2.6)
  1300. '@rc-component/dropdown@1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1301. dependencies:
  1302. '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1303. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1304. clsx: 2.1.1
  1305. react: 19.2.6
  1306. react-dom: 19.2.6(react@19.2.6)
  1307. '@rc-component/form@1.8.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1308. dependencies:
  1309. '@rc-component/async-validator': 5.1.0
  1310. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1311. clsx: 2.1.1
  1312. react: 19.2.6
  1313. react-dom: 19.2.6(react@19.2.6)
  1314. '@rc-component/image@1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1315. dependencies:
  1316. '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1317. '@rc-component/portal': 2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1318. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1319. clsx: 2.1.1
  1320. react: 19.2.6
  1321. react-dom: 19.2.6(react@19.2.6)
  1322. '@rc-component/input-number@1.6.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1323. dependencies:
  1324. '@rc-component/mini-decimal': 1.1.3
  1325. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1326. clsx: 2.1.1
  1327. react: 19.2.6
  1328. react-dom: 19.2.6(react@19.2.6)
  1329. '@rc-component/input@1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1330. dependencies:
  1331. '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1332. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1333. clsx: 2.1.1
  1334. react: 19.2.6
  1335. react-dom: 19.2.6(react@19.2.6)
  1336. '@rc-component/mentions@1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1337. dependencies:
  1338. '@rc-component/input': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1339. '@rc-component/menu': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1340. '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1341. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1342. clsx: 2.1.1
  1343. react: 19.2.6
  1344. react-dom: 19.2.6(react@19.2.6)
  1345. '@rc-component/menu@1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1346. dependencies:
  1347. '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1348. '@rc-component/overflow': 1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1349. '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1350. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1351. clsx: 2.1.1
  1352. react: 19.2.6
  1353. react-dom: 19.2.6(react@19.2.6)
  1354. '@rc-component/mini-decimal@1.1.3':
  1355. dependencies:
  1356. '@babel/runtime': 7.29.2
  1357. '@rc-component/motion@1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1358. dependencies:
  1359. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1360. clsx: 2.1.1
  1361. react: 19.2.6
  1362. react-dom: 19.2.6(react@19.2.6)
  1363. '@rc-component/mutate-observer@2.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1364. dependencies:
  1365. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1366. react: 19.2.6
  1367. react-dom: 19.2.6(react@19.2.6)
  1368. '@rc-component/notification@2.0.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1369. dependencies:
  1370. '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1371. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1372. clsx: 2.1.1
  1373. react: 19.2.6
  1374. react-dom: 19.2.6(react@19.2.6)
  1375. '@rc-component/overflow@1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1376. dependencies:
  1377. '@babel/runtime': 7.29.2
  1378. '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1379. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1380. clsx: 2.1.1
  1381. react: 19.2.6
  1382. react-dom: 19.2.6(react@19.2.6)
  1383. '@rc-component/pagination@1.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1384. dependencies:
  1385. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1386. clsx: 2.1.1
  1387. react: 19.2.6
  1388. react-dom: 19.2.6(react@19.2.6)
  1389. '@rc-component/picker@1.10.0(dayjs@1.11.20)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1390. dependencies:
  1391. '@rc-component/overflow': 1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1392. '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1393. '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1394. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1395. clsx: 2.1.1
  1396. react: 19.2.6
  1397. react-dom: 19.2.6(react@19.2.6)
  1398. optionalDependencies:
  1399. dayjs: 1.11.20
  1400. '@rc-component/portal@2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1401. dependencies:
  1402. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1403. clsx: 2.1.1
  1404. react: 19.2.6
  1405. react-dom: 19.2.6(react@19.2.6)
  1406. '@rc-component/progress@1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1407. dependencies:
  1408. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1409. clsx: 2.1.1
  1410. react: 19.2.6
  1411. react-dom: 19.2.6(react@19.2.6)
  1412. '@rc-component/qrcode@1.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1413. dependencies:
  1414. '@babel/runtime': 7.29.2
  1415. react: 19.2.6
  1416. react-dom: 19.2.6(react@19.2.6)
  1417. '@rc-component/rate@1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1418. dependencies:
  1419. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1420. clsx: 2.1.1
  1421. react: 19.2.6
  1422. react-dom: 19.2.6(react@19.2.6)
  1423. '@rc-component/resize-observer@1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1424. dependencies:
  1425. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1426. react: 19.2.6
  1427. react-dom: 19.2.6(react@19.2.6)
  1428. '@rc-component/segmented@1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1429. dependencies:
  1430. '@babel/runtime': 7.29.2
  1431. '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1432. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1433. clsx: 2.1.1
  1434. react: 19.2.6
  1435. react-dom: 19.2.6(react@19.2.6)
  1436. '@rc-component/select@1.6.15(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1437. dependencies:
  1438. '@rc-component/overflow': 1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1439. '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1440. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1441. '@rc-component/virtual-list': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1442. clsx: 2.1.1
  1443. react: 19.2.6
  1444. react-dom: 19.2.6(react@19.2.6)
  1445. '@rc-component/slider@1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1446. dependencies:
  1447. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1448. clsx: 2.1.1
  1449. react: 19.2.6
  1450. react-dom: 19.2.6(react@19.2.6)
  1451. '@rc-component/steps@1.2.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1452. dependencies:
  1453. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1454. clsx: 2.1.1
  1455. react: 19.2.6
  1456. react-dom: 19.2.6(react@19.2.6)
  1457. '@rc-component/switch@1.0.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1458. dependencies:
  1459. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1460. clsx: 2.1.1
  1461. react: 19.2.6
  1462. react-dom: 19.2.6(react@19.2.6)
  1463. '@rc-component/table@1.10.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1464. dependencies:
  1465. '@rc-component/context': 2.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1466. '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1467. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1468. '@rc-component/virtual-list': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1469. clsx: 2.1.1
  1470. react: 19.2.6
  1471. react-dom: 19.2.6(react@19.2.6)
  1472. '@rc-component/tabs@1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1473. dependencies:
  1474. '@rc-component/dropdown': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1475. '@rc-component/menu': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1476. '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1477. '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1478. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1479. clsx: 2.1.1
  1480. react: 19.2.6
  1481. react-dom: 19.2.6(react@19.2.6)
  1482. '@rc-component/tooltip@1.4.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1483. dependencies:
  1484. '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1485. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1486. clsx: 2.1.1
  1487. react: 19.2.6
  1488. react-dom: 19.2.6(react@19.2.6)
  1489. '@rc-component/tour@2.4.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1490. dependencies:
  1491. '@rc-component/portal': 2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1492. '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1493. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1494. clsx: 2.1.1
  1495. react: 19.2.6
  1496. react-dom: 19.2.6(react@19.2.6)
  1497. '@rc-component/tree-select@1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1498. dependencies:
  1499. '@rc-component/select': 1.6.15(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1500. '@rc-component/tree': 1.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1501. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1502. clsx: 2.1.1
  1503. react: 19.2.6
  1504. react-dom: 19.2.6(react@19.2.6)
  1505. '@rc-component/tree@1.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1506. dependencies:
  1507. '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1508. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1509. '@rc-component/virtual-list': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1510. clsx: 2.1.1
  1511. react: 19.2.6
  1512. react-dom: 19.2.6(react@19.2.6)
  1513. '@rc-component/trigger@3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1514. dependencies:
  1515. '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1516. '@rc-component/portal': 2.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1517. '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1518. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1519. clsx: 2.1.1
  1520. react: 19.2.6
  1521. react-dom: 19.2.6(react@19.2.6)
  1522. '@rc-component/upload@1.1.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1523. dependencies:
  1524. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1525. clsx: 2.1.1
  1526. react: 19.2.6
  1527. react-dom: 19.2.6(react@19.2.6)
  1528. '@rc-component/util@1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1529. dependencies:
  1530. is-mobile: 5.0.0
  1531. react: 19.2.6
  1532. react-dom: 19.2.6(react@19.2.6)
  1533. react-is: 18.3.1
  1534. '@rc-component/virtual-list@1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
  1535. dependencies:
  1536. '@babel/runtime': 7.29.2
  1537. '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1538. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1539. clsx: 2.1.1
  1540. react: 19.2.6
  1541. react-dom: 19.2.6(react@19.2.6)
  1542. '@rolldown/pluginutils@1.0.0-beta.27': {}
  1543. '@rollup/rollup-android-arm-eabi@4.60.3':
  1544. optional: true
  1545. '@rollup/rollup-android-arm64@4.60.3':
  1546. optional: true
  1547. '@rollup/rollup-darwin-arm64@4.60.3':
  1548. optional: true
  1549. '@rollup/rollup-darwin-x64@4.60.3':
  1550. optional: true
  1551. '@rollup/rollup-freebsd-arm64@4.60.3':
  1552. optional: true
  1553. '@rollup/rollup-freebsd-x64@4.60.3':
  1554. optional: true
  1555. '@rollup/rollup-linux-arm-gnueabihf@4.60.3':
  1556. optional: true
  1557. '@rollup/rollup-linux-arm-musleabihf@4.60.3':
  1558. optional: true
  1559. '@rollup/rollup-linux-arm64-gnu@4.60.3':
  1560. optional: true
  1561. '@rollup/rollup-linux-arm64-musl@4.60.3':
  1562. optional: true
  1563. '@rollup/rollup-linux-loong64-gnu@4.60.3':
  1564. optional: true
  1565. '@rollup/rollup-linux-loong64-musl@4.60.3':
  1566. optional: true
  1567. '@rollup/rollup-linux-ppc64-gnu@4.60.3':
  1568. optional: true
  1569. '@rollup/rollup-linux-ppc64-musl@4.60.3':
  1570. optional: true
  1571. '@rollup/rollup-linux-riscv64-gnu@4.60.3':
  1572. optional: true
  1573. '@rollup/rollup-linux-riscv64-musl@4.60.3':
  1574. optional: true
  1575. '@rollup/rollup-linux-s390x-gnu@4.60.3':
  1576. optional: true
  1577. '@rollup/rollup-linux-x64-gnu@4.60.3':
  1578. optional: true
  1579. '@rollup/rollup-linux-x64-musl@4.60.3':
  1580. optional: true
  1581. '@rollup/rollup-openbsd-x64@4.60.3':
  1582. optional: true
  1583. '@rollup/rollup-openharmony-arm64@4.60.3':
  1584. optional: true
  1585. '@rollup/rollup-win32-arm64-msvc@4.60.3':
  1586. optional: true
  1587. '@rollup/rollup-win32-ia32-msvc@4.60.3':
  1588. optional: true
  1589. '@rollup/rollup-win32-x64-gnu@4.60.3':
  1590. optional: true
  1591. '@rollup/rollup-win32-x64-msvc@4.60.3':
  1592. optional: true
  1593. '@tailwindcss/node@4.3.0':
  1594. dependencies:
  1595. '@jridgewell/remapping': 2.3.5
  1596. enhanced-resolve: 5.21.3
  1597. jiti: 2.7.0
  1598. lightningcss: 1.32.0
  1599. magic-string: 0.30.21
  1600. source-map-js: 1.2.1
  1601. tailwindcss: 4.3.0
  1602. '@tailwindcss/oxide-android-arm64@4.3.0':
  1603. optional: true
  1604. '@tailwindcss/oxide-darwin-arm64@4.3.0':
  1605. optional: true
  1606. '@tailwindcss/oxide-darwin-x64@4.3.0':
  1607. optional: true
  1608. '@tailwindcss/oxide-freebsd-x64@4.3.0':
  1609. optional: true
  1610. '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.0':
  1611. optional: true
  1612. '@tailwindcss/oxide-linux-arm64-gnu@4.3.0':
  1613. optional: true
  1614. '@tailwindcss/oxide-linux-arm64-musl@4.3.0':
  1615. optional: true
  1616. '@tailwindcss/oxide-linux-x64-gnu@4.3.0':
  1617. optional: true
  1618. '@tailwindcss/oxide-linux-x64-musl@4.3.0':
  1619. optional: true
  1620. '@tailwindcss/oxide-wasm32-wasi@4.3.0':
  1621. optional: true
  1622. '@tailwindcss/oxide-win32-arm64-msvc@4.3.0':
  1623. optional: true
  1624. '@tailwindcss/oxide-win32-x64-msvc@4.3.0':
  1625. optional: true
  1626. '@tailwindcss/oxide@4.3.0':
  1627. optionalDependencies:
  1628. '@tailwindcss/oxide-android-arm64': 4.3.0
  1629. '@tailwindcss/oxide-darwin-arm64': 4.3.0
  1630. '@tailwindcss/oxide-darwin-x64': 4.3.0
  1631. '@tailwindcss/oxide-freebsd-x64': 4.3.0
  1632. '@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.0
  1633. '@tailwindcss/oxide-linux-arm64-gnu': 4.3.0
  1634. '@tailwindcss/oxide-linux-arm64-musl': 4.3.0
  1635. '@tailwindcss/oxide-linux-x64-gnu': 4.3.0
  1636. '@tailwindcss/oxide-linux-x64-musl': 4.3.0
  1637. '@tailwindcss/oxide-wasm32-wasi': 4.3.0
  1638. '@tailwindcss/oxide-win32-arm64-msvc': 4.3.0
  1639. '@tailwindcss/oxide-win32-x64-msvc': 4.3.0
  1640. '@tailwindcss/vite@4.3.0(vite@7.3.3(jiti@2.7.0)(lightningcss@1.32.0))':
  1641. dependencies:
  1642. '@tailwindcss/node': 4.3.0
  1643. '@tailwindcss/oxide': 4.3.0
  1644. tailwindcss: 4.3.0
  1645. vite: 7.3.3(jiti@2.7.0)(lightningcss@1.32.0)
  1646. '@tauri-apps/api@2.11.0': {}
  1647. '@tauri-apps/cli-darwin-arm64@2.11.1':
  1648. optional: true
  1649. '@tauri-apps/cli-darwin-x64@2.11.1':
  1650. optional: true
  1651. '@tauri-apps/cli-linux-arm-gnueabihf@2.11.1':
  1652. optional: true
  1653. '@tauri-apps/cli-linux-arm64-gnu@2.11.1':
  1654. optional: true
  1655. '@tauri-apps/cli-linux-arm64-musl@2.11.1':
  1656. optional: true
  1657. '@tauri-apps/cli-linux-riscv64-gnu@2.11.1':
  1658. optional: true
  1659. '@tauri-apps/cli-linux-x64-gnu@2.11.1':
  1660. optional: true
  1661. '@tauri-apps/cli-linux-x64-musl@2.11.1':
  1662. optional: true
  1663. '@tauri-apps/cli-win32-arm64-msvc@2.11.1':
  1664. optional: true
  1665. '@tauri-apps/cli-win32-ia32-msvc@2.11.1':
  1666. optional: true
  1667. '@tauri-apps/cli-win32-x64-msvc@2.11.1':
  1668. optional: true
  1669. '@tauri-apps/cli@2.11.1':
  1670. optionalDependencies:
  1671. '@tauri-apps/cli-darwin-arm64': 2.11.1
  1672. '@tauri-apps/cli-darwin-x64': 2.11.1
  1673. '@tauri-apps/cli-linux-arm-gnueabihf': 2.11.1
  1674. '@tauri-apps/cli-linux-arm64-gnu': 2.11.1
  1675. '@tauri-apps/cli-linux-arm64-musl': 2.11.1
  1676. '@tauri-apps/cli-linux-riscv64-gnu': 2.11.1
  1677. '@tauri-apps/cli-linux-x64-gnu': 2.11.1
  1678. '@tauri-apps/cli-linux-x64-musl': 2.11.1
  1679. '@tauri-apps/cli-win32-arm64-msvc': 2.11.1
  1680. '@tauri-apps/cli-win32-ia32-msvc': 2.11.1
  1681. '@tauri-apps/cli-win32-x64-msvc': 2.11.1
  1682. '@tauri-apps/plugin-opener@2.5.4':
  1683. dependencies:
  1684. '@tauri-apps/api': 2.11.0
  1685. '@tauri-apps/plugin-sql@2.4.0':
  1686. dependencies:
  1687. '@tauri-apps/api': 2.11.0
  1688. '@types/babel__core@7.20.5':
  1689. dependencies:
  1690. '@babel/parser': 7.29.3
  1691. '@babel/types': 7.29.0
  1692. '@types/babel__generator': 7.27.0
  1693. '@types/babel__template': 7.4.4
  1694. '@types/babel__traverse': 7.28.0
  1695. '@types/babel__generator@7.27.0':
  1696. dependencies:
  1697. '@babel/types': 7.29.0
  1698. '@types/babel__template@7.4.4':
  1699. dependencies:
  1700. '@babel/parser': 7.29.3
  1701. '@babel/types': 7.29.0
  1702. '@types/babel__traverse@7.28.0':
  1703. dependencies:
  1704. '@babel/types': 7.29.0
  1705. '@types/estree@1.0.8': {}
  1706. '@types/react-dom@19.2.3(@types/react@19.2.14)':
  1707. dependencies:
  1708. '@types/react': 19.2.14
  1709. '@types/react@19.2.14':
  1710. dependencies:
  1711. csstype: 3.2.3
  1712. '@vitejs/plugin-react@4.7.0(vite@7.3.3(jiti@2.7.0)(lightningcss@1.32.0))':
  1713. dependencies:
  1714. '@babel/core': 7.29.0
  1715. '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0)
  1716. '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0)
  1717. '@rolldown/pluginutils': 1.0.0-beta.27
  1718. '@types/babel__core': 7.20.5
  1719. react-refresh: 0.17.0
  1720. vite: 7.3.3(jiti@2.7.0)(lightningcss@1.32.0)
  1721. transitivePeerDependencies:
  1722. - supports-color
  1723. antd@6.4.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
  1724. dependencies:
  1725. '@ant-design/colors': 8.0.1
  1726. '@ant-design/cssinjs': 2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1727. '@ant-design/cssinjs-utils': 2.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1728. '@ant-design/fast-color': 3.0.1
  1729. '@ant-design/icons': 6.2.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1730. '@ant-design/react-slick': 2.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1731. '@babel/runtime': 7.29.2
  1732. '@rc-component/cascader': 1.15.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1733. '@rc-component/checkbox': 2.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1734. '@rc-component/collapse': 1.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1735. '@rc-component/color-picker': 3.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1736. '@rc-component/dialog': 1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1737. '@rc-component/drawer': 1.4.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1738. '@rc-component/dropdown': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1739. '@rc-component/form': 1.8.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1740. '@rc-component/image': 1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1741. '@rc-component/input': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1742. '@rc-component/input-number': 1.6.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1743. '@rc-component/mentions': 1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1744. '@rc-component/menu': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1745. '@rc-component/motion': 1.3.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1746. '@rc-component/mutate-observer': 2.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1747. '@rc-component/notification': 2.0.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1748. '@rc-component/pagination': 1.2.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1749. '@rc-component/picker': 1.10.0(dayjs@1.11.20)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1750. '@rc-component/progress': 1.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1751. '@rc-component/qrcode': 1.1.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1752. '@rc-component/rate': 1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1753. '@rc-component/resize-observer': 1.1.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1754. '@rc-component/segmented': 1.3.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1755. '@rc-component/select': 1.6.15(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1756. '@rc-component/slider': 1.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1757. '@rc-component/steps': 1.2.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1758. '@rc-component/switch': 1.0.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1759. '@rc-component/table': 1.10.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1760. '@rc-component/tabs': 1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1761. '@rc-component/tooltip': 1.4.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1762. '@rc-component/tour': 2.4.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1763. '@rc-component/tree': 1.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1764. '@rc-component/tree-select': 1.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1765. '@rc-component/trigger': 3.9.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1766. '@rc-component/upload': 1.1.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1767. '@rc-component/util': 1.10.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
  1768. clsx: 2.1.1
  1769. dayjs: 1.11.20
  1770. react: 19.2.6
  1771. react-dom: 19.2.6(react@19.2.6)
  1772. scroll-into-view-if-needed: 3.1.0
  1773. throttle-debounce: 5.0.2
  1774. transitivePeerDependencies:
  1775. - date-fns
  1776. - luxon
  1777. - moment
  1778. baseline-browser-mapping@2.10.29: {}
  1779. browserslist@4.28.2:
  1780. dependencies:
  1781. baseline-browser-mapping: 2.10.29
  1782. caniuse-lite: 1.0.30001792
  1783. electron-to-chromium: 1.5.355
  1784. node-releases: 2.0.44
  1785. update-browserslist-db: 1.2.3(browserslist@4.28.2)
  1786. caniuse-lite@1.0.30001792: {}
  1787. clsx@2.1.1: {}
  1788. compute-scroll-into-view@3.1.1: {}
  1789. convert-source-map@2.0.0: {}
  1790. csstype@3.2.3: {}
  1791. dayjs@1.11.20: {}
  1792. debug@4.4.3:
  1793. dependencies:
  1794. ms: 2.1.3
  1795. detect-libc@2.1.2: {}
  1796. electron-to-chromium@1.5.355: {}
  1797. enhanced-resolve@5.21.3:
  1798. dependencies:
  1799. graceful-fs: 4.2.11
  1800. tapable: 2.3.3
  1801. esbuild@0.27.7:
  1802. optionalDependencies:
  1803. '@esbuild/aix-ppc64': 0.27.7
  1804. '@esbuild/android-arm': 0.27.7
  1805. '@esbuild/android-arm64': 0.27.7
  1806. '@esbuild/android-x64': 0.27.7
  1807. '@esbuild/darwin-arm64': 0.27.7
  1808. '@esbuild/darwin-x64': 0.27.7
  1809. '@esbuild/freebsd-arm64': 0.27.7
  1810. '@esbuild/freebsd-x64': 0.27.7
  1811. '@esbuild/linux-arm': 0.27.7
  1812. '@esbuild/linux-arm64': 0.27.7
  1813. '@esbuild/linux-ia32': 0.27.7
  1814. '@esbuild/linux-loong64': 0.27.7
  1815. '@esbuild/linux-mips64el': 0.27.7
  1816. '@esbuild/linux-ppc64': 0.27.7
  1817. '@esbuild/linux-riscv64': 0.27.7
  1818. '@esbuild/linux-s390x': 0.27.7
  1819. '@esbuild/linux-x64': 0.27.7
  1820. '@esbuild/netbsd-arm64': 0.27.7
  1821. '@esbuild/netbsd-x64': 0.27.7
  1822. '@esbuild/openbsd-arm64': 0.27.7
  1823. '@esbuild/openbsd-x64': 0.27.7
  1824. '@esbuild/openharmony-arm64': 0.27.7
  1825. '@esbuild/sunos-x64': 0.27.7
  1826. '@esbuild/win32-arm64': 0.27.7
  1827. '@esbuild/win32-ia32': 0.27.7
  1828. '@esbuild/win32-x64': 0.27.7
  1829. escalade@3.2.0: {}
  1830. fdir@6.5.0(picomatch@4.0.4):
  1831. optionalDependencies:
  1832. picomatch: 4.0.4
  1833. fsevents@2.3.3:
  1834. optional: true
  1835. gensync@1.0.0-beta.2: {}
  1836. graceful-fs@4.2.11: {}
  1837. is-mobile@5.0.0: {}
  1838. jiti@2.7.0: {}
  1839. js-tokens@4.0.0: {}
  1840. jsesc@3.1.0: {}
  1841. json2mq@0.2.0:
  1842. dependencies:
  1843. string-convert: 0.2.1
  1844. json5@2.2.3: {}
  1845. lightningcss-android-arm64@1.32.0:
  1846. optional: true
  1847. lightningcss-darwin-arm64@1.32.0:
  1848. optional: true
  1849. lightningcss-darwin-x64@1.32.0:
  1850. optional: true
  1851. lightningcss-freebsd-x64@1.32.0:
  1852. optional: true
  1853. lightningcss-linux-arm-gnueabihf@1.32.0:
  1854. optional: true
  1855. lightningcss-linux-arm64-gnu@1.32.0:
  1856. optional: true
  1857. lightningcss-linux-arm64-musl@1.32.0:
  1858. optional: true
  1859. lightningcss-linux-x64-gnu@1.32.0:
  1860. optional: true
  1861. lightningcss-linux-x64-musl@1.32.0:
  1862. optional: true
  1863. lightningcss-win32-arm64-msvc@1.32.0:
  1864. optional: true
  1865. lightningcss-win32-x64-msvc@1.32.0:
  1866. optional: true
  1867. lightningcss@1.32.0:
  1868. dependencies:
  1869. detect-libc: 2.1.2
  1870. optionalDependencies:
  1871. lightningcss-android-arm64: 1.32.0
  1872. lightningcss-darwin-arm64: 1.32.0
  1873. lightningcss-darwin-x64: 1.32.0
  1874. lightningcss-freebsd-x64: 1.32.0
  1875. lightningcss-linux-arm-gnueabihf: 1.32.0
  1876. lightningcss-linux-arm64-gnu: 1.32.0
  1877. lightningcss-linux-arm64-musl: 1.32.0
  1878. lightningcss-linux-x64-gnu: 1.32.0
  1879. lightningcss-linux-x64-musl: 1.32.0
  1880. lightningcss-win32-arm64-msvc: 1.32.0
  1881. lightningcss-win32-x64-msvc: 1.32.0
  1882. lru-cache@5.1.1:
  1883. dependencies:
  1884. yallist: 3.1.1
  1885. magic-string@0.30.21:
  1886. dependencies:
  1887. '@jridgewell/sourcemap-codec': 1.5.5
  1888. ms@2.1.3: {}
  1889. nanoid@3.3.12: {}
  1890. node-releases@2.0.44: {}
  1891. picocolors@1.1.1: {}
  1892. picomatch@4.0.4: {}
  1893. postcss@8.5.14:
  1894. dependencies:
  1895. nanoid: 3.3.12
  1896. picocolors: 1.1.1
  1897. source-map-js: 1.2.1
  1898. react-dom@19.2.6(react@19.2.6):
  1899. dependencies:
  1900. react: 19.2.6
  1901. scheduler: 0.27.0
  1902. react-is@18.3.1: {}
  1903. react-refresh@0.17.0: {}
  1904. react@19.2.6: {}
  1905. rollup@4.60.3:
  1906. dependencies:
  1907. '@types/estree': 1.0.8
  1908. optionalDependencies:
  1909. '@rollup/rollup-android-arm-eabi': 4.60.3
  1910. '@rollup/rollup-android-arm64': 4.60.3
  1911. '@rollup/rollup-darwin-arm64': 4.60.3
  1912. '@rollup/rollup-darwin-x64': 4.60.3
  1913. '@rollup/rollup-freebsd-arm64': 4.60.3
  1914. '@rollup/rollup-freebsd-x64': 4.60.3
  1915. '@rollup/rollup-linux-arm-gnueabihf': 4.60.3
  1916. '@rollup/rollup-linux-arm-musleabihf': 4.60.3
  1917. '@rollup/rollup-linux-arm64-gnu': 4.60.3
  1918. '@rollup/rollup-linux-arm64-musl': 4.60.3
  1919. '@rollup/rollup-linux-loong64-gnu': 4.60.3
  1920. '@rollup/rollup-linux-loong64-musl': 4.60.3
  1921. '@rollup/rollup-linux-ppc64-gnu': 4.60.3
  1922. '@rollup/rollup-linux-ppc64-musl': 4.60.3
  1923. '@rollup/rollup-linux-riscv64-gnu': 4.60.3
  1924. '@rollup/rollup-linux-riscv64-musl': 4.60.3
  1925. '@rollup/rollup-linux-s390x-gnu': 4.60.3
  1926. '@rollup/rollup-linux-x64-gnu': 4.60.3
  1927. '@rollup/rollup-linux-x64-musl': 4.60.3
  1928. '@rollup/rollup-openbsd-x64': 4.60.3
  1929. '@rollup/rollup-openharmony-arm64': 4.60.3
  1930. '@rollup/rollup-win32-arm64-msvc': 4.60.3
  1931. '@rollup/rollup-win32-ia32-msvc': 4.60.3
  1932. '@rollup/rollup-win32-x64-gnu': 4.60.3
  1933. '@rollup/rollup-win32-x64-msvc': 4.60.3
  1934. fsevents: 2.3.3
  1935. scheduler@0.27.0: {}
  1936. scroll-into-view-if-needed@3.1.0:
  1937. dependencies:
  1938. compute-scroll-into-view: 3.1.1
  1939. semver@6.3.1: {}
  1940. source-map-js@1.2.1: {}
  1941. string-convert@0.2.1: {}
  1942. stylis@4.4.0: {}
  1943. tailwindcss@4.3.0: {}
  1944. tapable@2.3.3: {}
  1945. throttle-debounce@5.0.2: {}
  1946. tinyglobby@0.2.16:
  1947. dependencies:
  1948. fdir: 6.5.0(picomatch@4.0.4)
  1949. picomatch: 4.0.4
  1950. typescript@5.8.3: {}
  1951. update-browserslist-db@1.2.3(browserslist@4.28.2):
  1952. dependencies:
  1953. browserslist: 4.28.2
  1954. escalade: 3.2.0
  1955. picocolors: 1.1.1
  1956. vite@7.3.3(jiti@2.7.0)(lightningcss@1.32.0):
  1957. dependencies:
  1958. esbuild: 0.27.7
  1959. fdir: 6.5.0(picomatch@4.0.4)
  1960. picomatch: 4.0.4
  1961. postcss: 8.5.14
  1962. rollup: 4.60.3
  1963. tinyglobby: 0.2.16
  1964. optionalDependencies:
  1965. fsevents: 2.3.3
  1966. jiti: 2.7.0
  1967. lightningcss: 1.32.0
  1968. yallist@3.1.1: {}