package-lock.json 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973
  1. {
  2. "name": "mailhub",
  3. "version": "1.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "mailhub",
  9. "version": "1.0.0",
  10. "license": "MIT",
  11. "dependencies": {
  12. "@ant-design/icons": "^6.3.2",
  13. "@ant-design/plots": "^2.6.8",
  14. "antd": "^5.29.3",
  15. "react": "^19.2.7",
  16. "react-dom": "^19.2.7"
  17. },
  18. "devDependencies": {
  19. "@types/react": "^19.2.17",
  20. "@types/react-dom": "^19.2.3",
  21. "@vitejs/plugin-react": "^6.0.3",
  22. "typescript": "^5.9.3",
  23. "vite": "^8.1.3"
  24. },
  25. "engines": {
  26. "node": ">=24.0.0"
  27. }
  28. },
  29. "node_modules/@ant-design/charts-util": {
  30. "version": "0.0.3",
  31. "resolved": "https://registry.npmjs.org/@ant-design/charts-util/-/charts-util-0.0.3.tgz",
  32. "integrity": "sha512-x1H7UT6t4dXAyGRoHqlOnEsEqBSTANFGTZEAMI0CWYhYUpp13n0o9grl9oPtoL6FEQMjUBTY+zGJKlHkz8smMw==",
  33. "license": "MIT",
  34. "dependencies": {
  35. "lodash": "^4.17.21"
  36. },
  37. "peerDependencies": {
  38. "react": ">=16.8.4",
  39. "react-dom": ">=16.8.4"
  40. }
  41. },
  42. "node_modules/@ant-design/colors": {
  43. "version": "8.0.1",
  44. "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-8.0.1.tgz",
  45. "integrity": "sha512-foPVl0+SWIslGUtD/xBr1p9U4AKzPhNYEseXYRRo5QSzGACYZrQbe11AYJbYfAWnWSpGBx6JjBmSeugUsD9vqQ==",
  46. "license": "MIT",
  47. "dependencies": {
  48. "@ant-design/fast-color": "^3.0.0"
  49. }
  50. },
  51. "node_modules/@ant-design/cssinjs": {
  52. "version": "1.24.0",
  53. "resolved": "https://registry.npmjs.org/@ant-design/cssinjs/-/cssinjs-1.24.0.tgz",
  54. "integrity": "sha512-K4cYrJBsgvL+IoozUXYjbT6LHHNt+19a9zkvpBPxLjFHas1UpPM2A5MlhROb0BT8N8WoavM5VsP9MeSeNK/3mg==",
  55. "license": "MIT",
  56. "dependencies": {
  57. "@babel/runtime": "^7.11.1",
  58. "@emotion/hash": "^0.8.0",
  59. "@emotion/unitless": "^0.7.5",
  60. "classnames": "^2.3.1",
  61. "csstype": "^3.1.3",
  62. "rc-util": "^5.35.0",
  63. "stylis": "^4.3.4"
  64. },
  65. "peerDependencies": {
  66. "react": ">=16.0.0",
  67. "react-dom": ">=16.0.0"
  68. }
  69. },
  70. "node_modules/@ant-design/cssinjs-utils": {
  71. "version": "1.1.3",
  72. "resolved": "https://registry.npmjs.org/@ant-design/cssinjs-utils/-/cssinjs-utils-1.1.3.tgz",
  73. "integrity": "sha512-nOoQMLW1l+xR1Co8NFVYiP8pZp3VjIIzqV6D6ShYF2ljtdwWJn5WSsH+7kvCktXL/yhEtWURKOfH5Xz/gzlwsg==",
  74. "license": "MIT",
  75. "dependencies": {
  76. "@ant-design/cssinjs": "^1.21.0",
  77. "@babel/runtime": "^7.23.2",
  78. "rc-util": "^5.38.0"
  79. },
  80. "peerDependencies": {
  81. "react": ">=16.9.0",
  82. "react-dom": ">=16.9.0"
  83. }
  84. },
  85. "node_modules/@ant-design/fast-color": {
  86. "version": "3.0.1",
  87. "resolved": "https://registry.npmjs.org/@ant-design/fast-color/-/fast-color-3.0.1.tgz",
  88. "integrity": "sha512-esKJegpW4nckh0o6kV3Tkb7NPIZYbPnnFxmQDUmL08ukXZAvV85TZBr70eGuke/CIArLaP6aw8lt9KILjnWuOw==",
  89. "license": "MIT",
  90. "engines": {
  91. "node": ">=8.x"
  92. }
  93. },
  94. "node_modules/@ant-design/icons": {
  95. "version": "6.3.2",
  96. "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-6.3.2.tgz",
  97. "integrity": "sha512-B6O5a5XJ4wjtNOfZejXYwHW5zvKV5gYkjGf11dHGLEbKn0ABDGndo41+gfIiXyTFhvESj4XTotuud33mUFid0g==",
  98. "license": "MIT",
  99. "dependencies": {
  100. "@ant-design/colors": "^8.0.1",
  101. "@ant-design/icons-svg": "^4.5.0",
  102. "@rc-component/util": "^1.11.0",
  103. "clsx": "^2.1.1"
  104. },
  105. "engines": {
  106. "node": ">=8"
  107. },
  108. "peerDependencies": {
  109. "react": ">=16.0.0",
  110. "react-dom": ">=16.0.0"
  111. }
  112. },
  113. "node_modules/@ant-design/icons-svg": {
  114. "version": "4.5.0",
  115. "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.5.0.tgz",
  116. "integrity": "sha512-1BTUFyKPTBZ53MuTP8s0k5SFEXL7o3VHEOwLgzaoWKwnBeqIcqUtVshc4SKzhI6uACfqhJqBwBUE9FsWR3uULA==",
  117. "license": "MIT"
  118. },
  119. "node_modules/@ant-design/plots": {
  120. "version": "2.6.8",
  121. "resolved": "https://registry.npmjs.org/@ant-design/plots/-/plots-2.6.8.tgz",
  122. "integrity": "sha512-QsunUs2d5rbq/1BwVhga/siA5H50OaG23YopMYwPD4sPsza6NQzPQ8FM3elNIsD/BIk298tihqX1cJ/MmvVJbQ==",
  123. "license": "MIT",
  124. "dependencies": {
  125. "@ant-design/charts-util": "0.0.3",
  126. "@antv/event-emitter": "^0.1.3",
  127. "@antv/g": "^6.1.7",
  128. "@antv/g2": "^5.2.7",
  129. "@antv/g2-extension-plot": "^0.2.1",
  130. "lodash": "^4.17.21"
  131. },
  132. "peerDependencies": {
  133. "react": ">=16.8.4",
  134. "react-dom": ">=16.8.4"
  135. }
  136. },
  137. "node_modules/@ant-design/react-slick": {
  138. "version": "1.1.2",
  139. "resolved": "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-1.1.2.tgz",
  140. "integrity": "sha512-EzlvzE6xQUBrZuuhSAFTdsr4P2bBBHGZwKFemEfq8gIGyIQCxalYfZW/T2ORbtQx5rU69o+WycP3exY/7T1hGA==",
  141. "license": "MIT",
  142. "dependencies": {
  143. "@babel/runtime": "^7.10.4",
  144. "classnames": "^2.2.5",
  145. "json2mq": "^0.2.0",
  146. "resize-observer-polyfill": "^1.5.1",
  147. "throttle-debounce": "^5.0.0"
  148. },
  149. "peerDependencies": {
  150. "react": ">=16.9.0"
  151. }
  152. },
  153. "node_modules/@antv/component": {
  154. "version": "2.1.11",
  155. "resolved": "https://registry.npmjs.org/@antv/component/-/component-2.1.11.tgz",
  156. "integrity": "sha512-dTdz8VAd3rpjOaGEZTluz82mtzrP4XCtNlNQyrxY7VNRNcjtvpTLDn57bUL2lRu1T+iklKvgbE2llMriWkq9vQ==",
  157. "license": "MIT",
  158. "dependencies": {
  159. "@antv/g": "^6.1.11",
  160. "@antv/scale": "^0.4.16",
  161. "@antv/util": "^3.3.10",
  162. "svg-path-parser": "^1.1.0"
  163. }
  164. },
  165. "node_modules/@antv/component/node_modules/@antv/scale": {
  166. "version": "0.4.16",
  167. "resolved": "https://registry.npmjs.org/@antv/scale/-/scale-0.4.16.tgz",
  168. "integrity": "sha512-5wg/zB5kXHxpTV5OYwJD3ja6R8yTiqIOkjOhmpEJiowkzRlbEC/BOyMvNUq5fqFIHnMCE9woO7+c3zxEQCKPjw==",
  169. "license": "MIT",
  170. "dependencies": {
  171. "@antv/util": "^3.3.7",
  172. "color-string": "^1.5.5",
  173. "fecha": "^4.2.1"
  174. }
  175. },
  176. "node_modules/@antv/coord": {
  177. "version": "0.4.7",
  178. "resolved": "https://registry.npmjs.org/@antv/coord/-/coord-0.4.7.tgz",
  179. "integrity": "sha512-UTbrMLhwJUkKzqJx5KFnSRpU3BqrdLORJbwUbHK2zHSCT3q3bjcFA//ZYLVfIlwqFDXp/hzfMyRtp0c77A9ZVA==",
  180. "license": "MIT",
  181. "dependencies": {
  182. "@antv/scale": "^0.4.12",
  183. "@antv/util": "^2.0.13",
  184. "gl-matrix": "^3.4.3"
  185. }
  186. },
  187. "node_modules/@antv/coord/node_modules/@antv/scale": {
  188. "version": "0.4.16",
  189. "resolved": "https://registry.npmjs.org/@antv/scale/-/scale-0.4.16.tgz",
  190. "integrity": "sha512-5wg/zB5kXHxpTV5OYwJD3ja6R8yTiqIOkjOhmpEJiowkzRlbEC/BOyMvNUq5fqFIHnMCE9woO7+c3zxEQCKPjw==",
  191. "license": "MIT",
  192. "dependencies": {
  193. "@antv/util": "^3.3.7",
  194. "color-string": "^1.5.5",
  195. "fecha": "^4.2.1"
  196. }
  197. },
  198. "node_modules/@antv/coord/node_modules/@antv/scale/node_modules/@antv/util": {
  199. "version": "3.3.11",
  200. "resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.11.tgz",
  201. "integrity": "sha512-FII08DFM4ABh2q5rPYdr0hMtKXRgeZazvXaFYCs7J7uTcWDHUhczab2qOCJLNDugoj8jFag1djb7wS9ehaRYBg==",
  202. "license": "MIT",
  203. "dependencies": {
  204. "fast-deep-equal": "^3.1.3",
  205. "gl-matrix": "^3.3.0",
  206. "tslib": "^2.3.1"
  207. }
  208. },
  209. "node_modules/@antv/coord/node_modules/@antv/util": {
  210. "version": "2.0.17",
  211. "resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
  212. "integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
  213. "license": "ISC",
  214. "dependencies": {
  215. "csstype": "^3.0.8",
  216. "tslib": "^2.0.3"
  217. }
  218. },
  219. "node_modules/@antv/event-emitter": {
  220. "version": "0.1.3",
  221. "resolved": "https://registry.npmjs.org/@antv/event-emitter/-/event-emitter-0.1.3.tgz",
  222. "integrity": "sha512-4ddpsiHN9Pd4UIlWuKVK1C4IiZIdbwQvy9i7DUSI3xNJ89FPUFt8lxDYj8GzzfdllV0NkJTRxnG+FvLk0llidg==",
  223. "license": "MIT"
  224. },
  225. "node_modules/@antv/expr": {
  226. "version": "1.0.2",
  227. "resolved": "https://registry.npmjs.org/@antv/expr/-/expr-1.0.2.tgz",
  228. "integrity": "sha512-vrfdmPHkTuiS5voVutKl2l06w1ihBh9A8SFdQPEE+2KMVpkymzGOF1eWpfkbGZ7tiFE15GodVdhhHomD/hdIwg==",
  229. "license": "MIT"
  230. },
  231. "node_modules/@antv/g": {
  232. "version": "6.3.1",
  233. "resolved": "https://registry.npmjs.org/@antv/g/-/g-6.3.1.tgz",
  234. "integrity": "sha512-WYEKqy86LHB2PzTmrZXrIsIe+3Epeds2f68zceQ+BJtRoGki7Sy4IhlC8LrUMztgfT1t3d/0L745NWZwITroKA==",
  235. "license": "MIT",
  236. "dependencies": {
  237. "@antv/g-lite": "2.7.0",
  238. "@antv/util": "^3.3.5",
  239. "@babel/runtime": "^7.25.6",
  240. "gl-matrix": "^3.4.3",
  241. "html2canvas": "^1.4.1"
  242. }
  243. },
  244. "node_modules/@antv/g-canvas": {
  245. "version": "2.2.0",
  246. "resolved": "https://registry.npmjs.org/@antv/g-canvas/-/g-canvas-2.2.0.tgz",
  247. "integrity": "sha512-h7zVBBo2aO64DuGKvq9sG+yTU3sCUb9DALCVm7nz8qGPs8hhLuFOkKPEzUDNfNYZGJUGzY8UDtJ3QRGRFcvEQg==",
  248. "license": "MIT",
  249. "dependencies": {
  250. "@antv/g-lite": "2.7.0",
  251. "@antv/g-math": "3.1.0",
  252. "@antv/util": "^3.3.5",
  253. "@babel/runtime": "^7.25.6",
  254. "gl-matrix": "^3.4.3",
  255. "tslib": "^2.5.3"
  256. }
  257. },
  258. "node_modules/@antv/g-lite": {
  259. "version": "2.7.0",
  260. "resolved": "https://registry.npmjs.org/@antv/g-lite/-/g-lite-2.7.0.tgz",
  261. "integrity": "sha512-uSzgHYa5bwR5L2Au7/5tsOhFmXKZKLPBH90+Q9bP9teVs5VT4kOAi0isPSpDI8uhdDC2/VrfTWu5K9HhWI6FWw==",
  262. "license": "MIT",
  263. "dependencies": {
  264. "@antv/g-math": "3.1.0",
  265. "@antv/util": "^3.3.5",
  266. "@antv/vendor": "^1.0.3",
  267. "@babel/runtime": "^7.25.6",
  268. "eventemitter3": "^5.0.1",
  269. "gl-matrix": "^3.4.3",
  270. "tslib": "^2.5.3"
  271. }
  272. },
  273. "node_modules/@antv/g-math": {
  274. "version": "3.1.0",
  275. "resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-3.1.0.tgz",
  276. "integrity": "sha512-DtN1Gj/yI0UiK18nSBsZX8RK0LszGwqfb+cBYWgE+ddyTm8dZnW4tPUhV7QXePsS6/A5hHC+JFpAAK7OEGo5ZQ==",
  277. "license": "MIT",
  278. "dependencies": {
  279. "@antv/util": "^3.3.5",
  280. "@babel/runtime": "^7.25.6",
  281. "gl-matrix": "^3.4.3",
  282. "tslib": "^2.5.3"
  283. }
  284. },
  285. "node_modules/@antv/g-plugin-dragndrop": {
  286. "version": "2.1.1",
  287. "resolved": "https://registry.npmjs.org/@antv/g-plugin-dragndrop/-/g-plugin-dragndrop-2.1.1.tgz",
  288. "integrity": "sha512-+aesDUJVQDs6UJ2bOBbDlaGAPCfHmU0MbrMTlQlfpwNplWueqtgVAZ3L57oZ2ZGHRWUHiRwZGPjXMBM3O2LELw==",
  289. "license": "MIT",
  290. "dependencies": {
  291. "@antv/g-lite": "2.7.0",
  292. "@antv/util": "^3.3.5",
  293. "@babel/runtime": "^7.25.6",
  294. "tslib": "^2.5.3"
  295. }
  296. },
  297. "node_modules/@antv/g2": {
  298. "version": "5.4.8",
  299. "resolved": "https://registry.npmjs.org/@antv/g2/-/g2-5.4.8.tgz",
  300. "integrity": "sha512-IvgIpwmT4M5/QAd3Mn2WiHIDeBqFJ4WA2gcZhRRSZuZ2KmgCqZWZwwIT0hc+kIGxwYeDoCQqf//t6FMVu3ryBg==",
  301. "license": "MIT",
  302. "dependencies": {
  303. "@antv/component": "^2.1.9",
  304. "@antv/coord": "^0.4.7",
  305. "@antv/event-emitter": "^0.1.3",
  306. "@antv/expr": "^1.0.2",
  307. "@antv/g": "^6.1.24",
  308. "@antv/g-canvas": "^2.0.43",
  309. "@antv/g-plugin-dragndrop": "^2.0.35",
  310. "@antv/scale": "^0.5.1",
  311. "@antv/util": "^3.3.10",
  312. "@antv/vendor": "^1.0.11",
  313. "flru": "^1.0.2",
  314. "pdfast": "^0.2.0"
  315. }
  316. },
  317. "node_modules/@antv/g2-extension-plot": {
  318. "version": "0.2.2",
  319. "resolved": "https://registry.npmjs.org/@antv/g2-extension-plot/-/g2-extension-plot-0.2.2.tgz",
  320. "integrity": "sha512-KJXCXO7as+h0hDqirGXf1omrNuYzQmY3VmBmp7lIvkepbQ7sz3pPwy895r1FWETGF3vTk5UeFcAF5yzzBHWgbw==",
  321. "dependencies": {
  322. "@antv/g2": "^5.1.8",
  323. "@antv/util": "^3.3.5",
  324. "@antv/vendor": "^1.0.10"
  325. }
  326. },
  327. "node_modules/@antv/scale": {
  328. "version": "0.5.2",
  329. "resolved": "https://registry.npmjs.org/@antv/scale/-/scale-0.5.2.tgz",
  330. "integrity": "sha512-rTHRAwvpHWC5PGZF/mJ2ZuTDqwwvVBDRph0Uu5PV9BXwzV7K8+9lsqGJ+XHVLxe8c6bKog5nlzvV/dcYb0d5Ow==",
  331. "license": "MIT",
  332. "dependencies": {
  333. "@antv/util": "^3.3.7",
  334. "color-string": "^1.5.5",
  335. "fecha": "^4.2.1"
  336. }
  337. },
  338. "node_modules/@antv/util": {
  339. "version": "3.3.11",
  340. "resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.11.tgz",
  341. "integrity": "sha512-FII08DFM4ABh2q5rPYdr0hMtKXRgeZazvXaFYCs7J7uTcWDHUhczab2qOCJLNDugoj8jFag1djb7wS9ehaRYBg==",
  342. "license": "MIT",
  343. "dependencies": {
  344. "fast-deep-equal": "^3.1.3",
  345. "gl-matrix": "^3.3.0",
  346. "tslib": "^2.3.1"
  347. }
  348. },
  349. "node_modules/@antv/vendor": {
  350. "version": "1.0.11",
  351. "resolved": "https://registry.npmjs.org/@antv/vendor/-/vendor-1.0.11.tgz",
  352. "integrity": "sha512-LmhPEQ+aapk3barntaiIxJ5VHno/Tyab2JnfdcPzp5xONh/8VSfed4bo/9xKo5HcUAEydko38vYLfj6lJliLiw==",
  353. "license": "MIT AND ISC",
  354. "dependencies": {
  355. "@types/d3-array": "^3.2.1",
  356. "@types/d3-color": "^3.1.3",
  357. "@types/d3-dispatch": "^3.0.6",
  358. "@types/d3-dsv": "^3.0.7",
  359. "@types/d3-ease": "^3.0.2",
  360. "@types/d3-fetch": "^3.0.7",
  361. "@types/d3-force": "^3.0.10",
  362. "@types/d3-format": "^3.0.4",
  363. "@types/d3-geo": "^3.1.0",
  364. "@types/d3-hierarchy": "^3.1.7",
  365. "@types/d3-interpolate": "^3.0.4",
  366. "@types/d3-path": "^3.1.0",
  367. "@types/d3-quadtree": "^3.0.6",
  368. "@types/d3-random": "^3.0.3",
  369. "@types/d3-scale": "^4.0.9",
  370. "@types/d3-scale-chromatic": "^3.1.0",
  371. "@types/d3-shape": "^3.1.7",
  372. "@types/d3-time": "^3.0.4",
  373. "@types/d3-timer": "^3.0.2",
  374. "d3-array": "^3.2.4",
  375. "d3-color": "^3.1.0",
  376. "d3-dispatch": "^3.0.1",
  377. "d3-dsv": "^3.0.1",
  378. "d3-ease": "^3.0.1",
  379. "d3-fetch": "^3.0.1",
  380. "d3-force": "^3.0.0",
  381. "d3-force-3d": "^3.0.5",
  382. "d3-format": "^3.1.0",
  383. "d3-geo": "^3.1.1",
  384. "d3-geo-projection": "^4.0.0",
  385. "d3-hierarchy": "^3.1.2",
  386. "d3-interpolate": "^3.0.1",
  387. "d3-path": "^3.1.0",
  388. "d3-quadtree": "^3.0.1",
  389. "d3-random": "^3.0.1",
  390. "d3-regression": "^1.3.10",
  391. "d3-scale": "^4.0.2",
  392. "d3-scale-chromatic": "^3.1.0",
  393. "d3-shape": "^3.2.0",
  394. "d3-time": "^3.1.0",
  395. "d3-timer": "^3.0.1"
  396. }
  397. },
  398. "node_modules/@babel/runtime": {
  399. "version": "7.29.7",
  400. "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
  401. "integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
  402. "license": "MIT",
  403. "engines": {
  404. "node": ">=6.9.0"
  405. }
  406. },
  407. "node_modules/@emnapi/core": {
  408. "version": "1.11.2",
  409. "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.2.tgz",
  410. "integrity": "sha512-TC8MkTuZUtcTSiFeuC0ksCh9QIJ5+F21MvZ4Wn4ORfYaFJ/0dsiudv5tVkejgwZlwQ39jL9WWDe2lz8x0WglOA==",
  411. "dev": true,
  412. "license": "MIT",
  413. "optional": true,
  414. "peer": true,
  415. "dependencies": {
  416. "@emnapi/wasi-threads": "1.2.2",
  417. "tslib": "^2.4.0"
  418. }
  419. },
  420. "node_modules/@emnapi/runtime": {
  421. "version": "1.11.2",
  422. "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.2.tgz",
  423. "integrity": "sha512-kyOl3X0DuTiT1h2ft8r2fYO8JYtU9a9Xis/zBSiGArNaagCOWx90N1k2wxp18czFDH+OgcWGb5ZP/XMt3dcyPA==",
  424. "dev": true,
  425. "license": "MIT",
  426. "optional": true,
  427. "peer": true,
  428. "dependencies": {
  429. "tslib": "^2.4.0"
  430. }
  431. },
  432. "node_modules/@emnapi/wasi-threads": {
  433. "version": "1.2.2",
  434. "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
  435. "integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
  436. "dev": true,
  437. "license": "MIT",
  438. "optional": true,
  439. "dependencies": {
  440. "tslib": "^2.4.0"
  441. }
  442. },
  443. "node_modules/@emotion/hash": {
  444. "version": "0.8.0",
  445. "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
  446. "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==",
  447. "license": "MIT"
  448. },
  449. "node_modules/@emotion/unitless": {
  450. "version": "0.7.5",
  451. "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
  452. "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==",
  453. "license": "MIT"
  454. },
  455. "node_modules/@napi-rs/wasm-runtime": {
  456. "version": "1.1.6",
  457. "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz",
  458. "integrity": "sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==",
  459. "dev": true,
  460. "license": "MIT",
  461. "optional": true,
  462. "dependencies": {
  463. "@tybys/wasm-util": "^0.10.3"
  464. },
  465. "funding": {
  466. "type": "github",
  467. "url": "https://github.com/sponsors/Brooooooklyn"
  468. },
  469. "peerDependencies": {
  470. "@emnapi/core": "^1.7.1",
  471. "@emnapi/runtime": "^1.7.1"
  472. }
  473. },
  474. "node_modules/@oxc-project/types": {
  475. "version": "0.138.0",
  476. "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.138.0.tgz",
  477. "integrity": "sha512-1a7ZKmrRTCoN1XMZ4L0PyyqrMnrNlLyPuOkdSX2MZg7IiIGRUyurNhAm73ptDOraoBcIordsIGKNPKUzy3ZmfA==",
  478. "dev": true,
  479. "license": "MIT",
  480. "funding": {
  481. "url": "https://github.com/sponsors/Boshen"
  482. }
  483. },
  484. "node_modules/@rc-component/async-validator": {
  485. "version": "5.1.2",
  486. "resolved": "https://registry.npmjs.org/@rc-component/async-validator/-/async-validator-5.1.2.tgz",
  487. "integrity": "sha512-WYbrZSjzznU1ekD0qFq2qRxt309VoS61MTG5npnFQlKYcoy9IzU8T+ZCIhq5bGAXRbXysABFWTspicMfmWFwow==",
  488. "license": "MIT",
  489. "dependencies": {
  490. "@babel/runtime": "^7.24.4"
  491. },
  492. "engines": {
  493. "node": ">=14.x"
  494. }
  495. },
  496. "node_modules/@rc-component/color-picker": {
  497. "version": "2.0.1",
  498. "resolved": "https://registry.npmjs.org/@rc-component/color-picker/-/color-picker-2.0.1.tgz",
  499. "integrity": "sha512-WcZYwAThV/b2GISQ8F+7650r5ZZJ043E57aVBFkQ+kSY4C6wdofXgB0hBx+GPGpIU0Z81eETNoDUJMr7oy/P8Q==",
  500. "license": "MIT",
  501. "dependencies": {
  502. "@ant-design/fast-color": "^2.0.6",
  503. "@babel/runtime": "^7.23.6",
  504. "classnames": "^2.2.6",
  505. "rc-util": "^5.38.1"
  506. },
  507. "peerDependencies": {
  508. "react": ">=16.9.0",
  509. "react-dom": ">=16.9.0"
  510. }
  511. },
  512. "node_modules/@rc-component/color-picker/node_modules/@ant-design/fast-color": {
  513. "version": "2.0.6",
  514. "resolved": "https://registry.npmjs.org/@ant-design/fast-color/-/fast-color-2.0.6.tgz",
  515. "integrity": "sha512-y2217gk4NqL35giHl72o6Zzqji9O7vHh9YmhUVkPtAOpoTCH4uWxo/pr4VE8t0+ChEPs0qo4eJRC5Q1eXWo3vA==",
  516. "license": "MIT",
  517. "dependencies": {
  518. "@babel/runtime": "^7.24.7"
  519. },
  520. "engines": {
  521. "node": ">=8.x"
  522. }
  523. },
  524. "node_modules/@rc-component/context": {
  525. "version": "1.4.0",
  526. "resolved": "https://registry.npmjs.org/@rc-component/context/-/context-1.4.0.tgz",
  527. "integrity": "sha512-kFcNxg9oLRMoL3qki0OMxK+7g5mypjgaaJp/pkOis/6rVxma9nJBF/8kCIuTYHUQNr0ii7MxqE33wirPZLJQ2w==",
  528. "license": "MIT",
  529. "dependencies": {
  530. "@babel/runtime": "^7.10.1",
  531. "rc-util": "^5.27.0"
  532. },
  533. "peerDependencies": {
  534. "react": ">=16.9.0",
  535. "react-dom": ">=16.9.0"
  536. }
  537. },
  538. "node_modules/@rc-component/mini-decimal": {
  539. "version": "1.1.4",
  540. "resolved": "https://registry.npmjs.org/@rc-component/mini-decimal/-/mini-decimal-1.1.4.tgz",
  541. "integrity": "sha512-xiuXcaCwyOWpD8a8scdExFl+bntNphAW8XeenL1ig2en0AAZY0Pcp4pC0dI22qJ+NvxKn9RoNIoRdqYU3BLH4w==",
  542. "license": "MIT",
  543. "dependencies": {
  544. "@babel/runtime": "^7.18.0"
  545. },
  546. "engines": {
  547. "node": ">=8.x"
  548. }
  549. },
  550. "node_modules/@rc-component/mutate-observer": {
  551. "version": "1.1.0",
  552. "resolved": "https://registry.npmjs.org/@rc-component/mutate-observer/-/mutate-observer-1.1.0.tgz",
  553. "integrity": "sha512-QjrOsDXQusNwGZPf4/qRQasg7UFEj06XiCJ8iuiq/Io7CrHrgVi6Uuetw60WAMG1799v+aM8kyc+1L/GBbHSlw==",
  554. "license": "MIT",
  555. "dependencies": {
  556. "@babel/runtime": "^7.18.0",
  557. "classnames": "^2.3.2",
  558. "rc-util": "^5.24.4"
  559. },
  560. "engines": {
  561. "node": ">=8.x"
  562. },
  563. "peerDependencies": {
  564. "react": ">=16.9.0",
  565. "react-dom": ">=16.9.0"
  566. }
  567. },
  568. "node_modules/@rc-component/portal": {
  569. "version": "1.1.2",
  570. "resolved": "https://registry.npmjs.org/@rc-component/portal/-/portal-1.1.2.tgz",
  571. "integrity": "sha512-6f813C0IsasTZms08kfA8kPAGxbbkYToa8ALaiDIGGECU4i9hj8Plgbx0sNJDrey3EtHO30hmdaxtT0138xZcg==",
  572. "license": "MIT",
  573. "dependencies": {
  574. "@babel/runtime": "^7.18.0",
  575. "classnames": "^2.3.2",
  576. "rc-util": "^5.24.4"
  577. },
  578. "engines": {
  579. "node": ">=8.x"
  580. },
  581. "peerDependencies": {
  582. "react": ">=16.9.0",
  583. "react-dom": ">=16.9.0"
  584. }
  585. },
  586. "node_modules/@rc-component/qrcode": {
  587. "version": "1.1.3",
  588. "resolved": "https://registry.npmjs.org/@rc-component/qrcode/-/qrcode-1.1.3.tgz",
  589. "integrity": "sha512-aGv6alnn4HbDEsURzKP+jv13rbi1VxmAYfBNZr5GKF1iohMNWy5tAVoJ1E3cOvzMB1kbUPvCXchM6zSFlRGPhA==",
  590. "license": "MIT",
  591. "dependencies": {
  592. "@babel/runtime": "^7.24.7"
  593. },
  594. "engines": {
  595. "node": ">=8.x"
  596. },
  597. "peerDependencies": {
  598. "react": ">=16.9.0",
  599. "react-dom": ">=16.9.0"
  600. }
  601. },
  602. "node_modules/@rc-component/tour": {
  603. "version": "1.15.1",
  604. "resolved": "https://registry.npmjs.org/@rc-component/tour/-/tour-1.15.1.tgz",
  605. "integrity": "sha512-Tr2t7J1DKZUpfJuDZWHxyxWpfmj8EZrqSgyMZ+BCdvKZ6r1UDsfU46M/iWAAFBy961Ssfom2kv5f3UcjIL2CmQ==",
  606. "license": "MIT",
  607. "dependencies": {
  608. "@babel/runtime": "^7.18.0",
  609. "@rc-component/portal": "^1.0.0-9",
  610. "@rc-component/trigger": "^2.0.0",
  611. "classnames": "^2.3.2",
  612. "rc-util": "^5.24.4"
  613. },
  614. "engines": {
  615. "node": ">=8.x"
  616. },
  617. "peerDependencies": {
  618. "react": ">=16.9.0",
  619. "react-dom": ">=16.9.0"
  620. }
  621. },
  622. "node_modules/@rc-component/trigger": {
  623. "version": "2.3.1",
  624. "resolved": "https://registry.npmjs.org/@rc-component/trigger/-/trigger-2.3.1.tgz",
  625. "integrity": "sha512-ORENF39PeXTzM+gQEshuk460Z8N4+6DkjpxlpE7Q3gYy1iBpLrx0FOJz3h62ryrJZ/3zCAUIkT1Pb/8hHWpb3A==",
  626. "license": "MIT",
  627. "dependencies": {
  628. "@babel/runtime": "^7.23.2",
  629. "@rc-component/portal": "^1.1.0",
  630. "classnames": "^2.3.2",
  631. "rc-motion": "^2.0.0",
  632. "rc-resize-observer": "^1.3.1",
  633. "rc-util": "^5.44.0"
  634. },
  635. "engines": {
  636. "node": ">=8.x"
  637. },
  638. "peerDependencies": {
  639. "react": ">=16.9.0",
  640. "react-dom": ">=16.9.0"
  641. }
  642. },
  643. "node_modules/@rc-component/util": {
  644. "version": "1.11.1",
  645. "resolved": "https://registry.npmjs.org/@rc-component/util/-/util-1.11.1.tgz",
  646. "integrity": "sha512-awVlI3ub2vqfqkYxOBc/uQ0efm3jw0wcrhtO/YWLyZfxiKXczKwNbVuhlnyxytDt7H9pbbVQiqr+O6MLATtRYg==",
  647. "license": "MIT",
  648. "dependencies": {
  649. "is-mobile": "^5.0.0",
  650. "react-is": "^18.2.0"
  651. },
  652. "peerDependencies": {
  653. "react": ">=18.0.0",
  654. "react-dom": ">=18.0.0"
  655. }
  656. },
  657. "node_modules/@rolldown/binding-android-arm64": {
  658. "version": "1.1.4",
  659. "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.1.4.tgz",
  660. "integrity": "sha512-EZLpf/8y7GXkkra90ML47kzik/GMP3EMcE9bPyHmRfxLC6z9+aW5A8poCsoxjrT5GfEcNAAvWwUHjvP1pUQkfw==",
  661. "cpu": [
  662. "arm64"
  663. ],
  664. "dev": true,
  665. "license": "MIT",
  666. "optional": true,
  667. "os": [
  668. "android"
  669. ],
  670. "engines": {
  671. "node": "^20.19.0 || >=22.12.0"
  672. }
  673. },
  674. "node_modules/@rolldown/binding-darwin-arm64": {
  675. "version": "1.1.4",
  676. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.1.4.tgz",
  677. "integrity": "sha512-aUi+HBvmYb7j8krl1+qJgkG8C17fO79gk3c+jPw4S8glRFc1DTija9S3EyaTSQUm5GJXYKDAsugBEhFHH2vYiQ==",
  678. "cpu": [
  679. "arm64"
  680. ],
  681. "dev": true,
  682. "license": "MIT",
  683. "optional": true,
  684. "os": [
  685. "darwin"
  686. ],
  687. "engines": {
  688. "node": "^20.19.0 || >=22.12.0"
  689. }
  690. },
  691. "node_modules/@rolldown/binding-darwin-x64": {
  692. "version": "1.1.4",
  693. "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.1.4.tgz",
  694. "integrity": "sha512-F7hHC3gwY11+vByKPRWqwGbeXWVgKmL+pTGCinaEhdihzBV2aQ0fvZOch9cXYUOKuKKq429HeYXOqQLc7wFCEg==",
  695. "cpu": [
  696. "x64"
  697. ],
  698. "dev": true,
  699. "license": "MIT",
  700. "optional": true,
  701. "os": [
  702. "darwin"
  703. ],
  704. "engines": {
  705. "node": "^20.19.0 || >=22.12.0"
  706. }
  707. },
  708. "node_modules/@rolldown/binding-freebsd-x64": {
  709. "version": "1.1.4",
  710. "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.1.4.tgz",
  711. "integrity": "sha512-sI5yw+7s92SK6odiEhD5lKCBlWcpjHS5qyqpVQbZAJ0fIzEUXrmbl3DH2ybR3PZogulNJF+COLtmA8hUfvkCCQ==",
  712. "cpu": [
  713. "x64"
  714. ],
  715. "dev": true,
  716. "license": "MIT",
  717. "optional": true,
  718. "os": [
  719. "freebsd"
  720. ],
  721. "engines": {
  722. "node": "^20.19.0 || >=22.12.0"
  723. }
  724. },
  725. "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
  726. "version": "1.1.4",
  727. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.1.4.tgz",
  728. "integrity": "sha512-mCi0OKgEieFircrtVYmQAFGszRtMnZ6fpZAXrxanXAu7lqZcsK1E1RAaZNG0uKAnxox3B1f4EyQNnoyMfN1vAA==",
  729. "cpu": [
  730. "arm"
  731. ],
  732. "dev": true,
  733. "license": "MIT",
  734. "optional": true,
  735. "os": [
  736. "linux"
  737. ],
  738. "engines": {
  739. "node": "^20.19.0 || >=22.12.0"
  740. }
  741. },
  742. "node_modules/@rolldown/binding-linux-arm64-gnu": {
  743. "version": "1.1.4",
  744. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.1.4.tgz",
  745. "integrity": "sha512-B9Ial3Kv5sh0SHnB1g/QWcUQCEvCF6QKGAl4zXypYj65mVI+B4AhFBwPtSN7pDrJeIx8Z7zdy4ntx+wQABom7w==",
  746. "cpu": [
  747. "arm64"
  748. ],
  749. "dev": true,
  750. "license": "MIT",
  751. "optional": true,
  752. "os": [
  753. "linux"
  754. ],
  755. "engines": {
  756. "node": "^20.19.0 || >=22.12.0"
  757. }
  758. },
  759. "node_modules/@rolldown/binding-linux-arm64-musl": {
  760. "version": "1.1.4",
  761. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.1.4.tgz",
  762. "integrity": "sha512-lZVym0PuHE1KZ22gmFTC15lAkrg9iTszR617oYRB/iPY1A56ywoJzVKOJBKaot5RiikCObmur6pogpse3gRcng==",
  763. "cpu": [
  764. "arm64"
  765. ],
  766. "dev": true,
  767. "license": "MIT",
  768. "optional": true,
  769. "os": [
  770. "linux"
  771. ],
  772. "engines": {
  773. "node": "^20.19.0 || >=22.12.0"
  774. }
  775. },
  776. "node_modules/@rolldown/binding-linux-ppc64-gnu": {
  777. "version": "1.1.4",
  778. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.1.4.tgz",
  779. "integrity": "sha512-t2DNiLJWNTbnEHyUzTumldML6ET4/g16467LZoDDJ3tSxGvguL5/NyC2lCsNKuyRycg9XeDQF5SSv+TNOhQEXg==",
  780. "cpu": [
  781. "ppc64"
  782. ],
  783. "dev": true,
  784. "license": "MIT",
  785. "optional": true,
  786. "os": [
  787. "linux"
  788. ],
  789. "engines": {
  790. "node": "^20.19.0 || >=22.12.0"
  791. }
  792. },
  793. "node_modules/@rolldown/binding-linux-s390x-gnu": {
  794. "version": "1.1.4",
  795. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.1.4.tgz",
  796. "integrity": "sha512-0WIRnL1Uw4BvTZRLQt+PVgo6ZKTJadlC2btP+/EOXv2f/DWbY0rEgl+y834mIVwP1FkTlWVTrGGJXf12lru7EQ==",
  797. "cpu": [
  798. "s390x"
  799. ],
  800. "dev": true,
  801. "license": "MIT",
  802. "optional": true,
  803. "os": [
  804. "linux"
  805. ],
  806. "engines": {
  807. "node": "^20.19.0 || >=22.12.0"
  808. }
  809. },
  810. "node_modules/@rolldown/binding-linux-x64-gnu": {
  811. "version": "1.1.4",
  812. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.1.4.tgz",
  813. "integrity": "sha512-JWtGshGfX+oENAKonoNkqEJX+7hC8yfhi9GUyPX1VX4mdh1y5r+ZiJLR5XzAB0aoP6s/PcILsGjKq8O0mm24bw==",
  814. "cpu": [
  815. "x64"
  816. ],
  817. "dev": true,
  818. "license": "MIT",
  819. "optional": true,
  820. "os": [
  821. "linux"
  822. ],
  823. "engines": {
  824. "node": "^20.19.0 || >=22.12.0"
  825. }
  826. },
  827. "node_modules/@rolldown/binding-linux-x64-musl": {
  828. "version": "1.1.4",
  829. "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.1.4.tgz",
  830. "integrity": "sha512-rT6yQcxUuXs4CnbofqwHRRV0iem349rLMYpTjkgQGLjrY4ado/eDzwPZPTCgTOlF6Nkp8NEv70yLMTn6qkWxsQ==",
  831. "cpu": [
  832. "x64"
  833. ],
  834. "dev": true,
  835. "license": "MIT",
  836. "optional": true,
  837. "os": [
  838. "linux"
  839. ],
  840. "engines": {
  841. "node": "^20.19.0 || >=22.12.0"
  842. }
  843. },
  844. "node_modules/@rolldown/binding-openharmony-arm64": {
  845. "version": "1.1.4",
  846. "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.1.4.tgz",
  847. "integrity": "sha512-KXMGoboq5cyaCQjDA4GLuRiOwBQ0EyFnJoVViLeZ45/3rFItRODEr+NdsBcVpll40hhNArlm/speWGRvj08LzA==",
  848. "cpu": [
  849. "arm64"
  850. ],
  851. "dev": true,
  852. "license": "MIT",
  853. "optional": true,
  854. "os": [
  855. "openharmony"
  856. ],
  857. "engines": {
  858. "node": "^20.19.0 || >=22.12.0"
  859. }
  860. },
  861. "node_modules/@rolldown/binding-wasm32-wasi": {
  862. "version": "1.1.4",
  863. "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.1.4.tgz",
  864. "integrity": "sha512-5K83rb36oJiY7BCyE9zLZtGcPV4g5wvq+xwdO0XPIwDVZI8cyB/AUjkNXGb92/rnmezEkjMOpgY61rtwjQtFwg==",
  865. "cpu": [
  866. "wasm32"
  867. ],
  868. "dev": true,
  869. "license": "MIT",
  870. "optional": true,
  871. "dependencies": {
  872. "@emnapi/core": "1.11.1",
  873. "@emnapi/runtime": "1.11.1",
  874. "@napi-rs/wasm-runtime": "^1.1.6"
  875. },
  876. "engines": {
  877. "node": "^20.19.0 || >=22.12.0"
  878. }
  879. },
  880. "node_modules/@rolldown/binding-wasm32-wasi/node_modules/@emnapi/core": {
  881. "version": "1.11.1",
  882. "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.1.tgz",
  883. "integrity": "sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==",
  884. "dev": true,
  885. "license": "MIT",
  886. "optional": true,
  887. "dependencies": {
  888. "@emnapi/wasi-threads": "1.2.2",
  889. "tslib": "^2.4.0"
  890. }
  891. },
  892. "node_modules/@rolldown/binding-wasm32-wasi/node_modules/@emnapi/runtime": {
  893. "version": "1.11.1",
  894. "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
  895. "integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
  896. "dev": true,
  897. "license": "MIT",
  898. "optional": true,
  899. "dependencies": {
  900. "tslib": "^2.4.0"
  901. }
  902. },
  903. "node_modules/@rolldown/binding-win32-arm64-msvc": {
  904. "version": "1.1.4",
  905. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.1.4.tgz",
  906. "integrity": "sha512-PnWBtw3TV5KOg69HQQDR0mnQuyCmSGR2pAB4DC1rPF808fgKeTUMj2EOEyKATpgiuxuR5APQmiDO7PDgEjTFSA==",
  907. "cpu": [
  908. "arm64"
  909. ],
  910. "dev": true,
  911. "license": "MIT",
  912. "optional": true,
  913. "os": [
  914. "win32"
  915. ],
  916. "engines": {
  917. "node": "^20.19.0 || >=22.12.0"
  918. }
  919. },
  920. "node_modules/@rolldown/binding-win32-x64-msvc": {
  921. "version": "1.1.4",
  922. "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.1.4.tgz",
  923. "integrity": "sha512-M1lpniBePobTfsa7Ks9a199e1akxsXn+GYBUKsEzv3YFzOm1HJAMNwKI3qr0Zq+mxwx9gOZoTdP1yXRYsZUocQ==",
  924. "cpu": [
  925. "x64"
  926. ],
  927. "dev": true,
  928. "license": "MIT",
  929. "optional": true,
  930. "os": [
  931. "win32"
  932. ],
  933. "engines": {
  934. "node": "^20.19.0 || >=22.12.0"
  935. }
  936. },
  937. "node_modules/@rolldown/pluginutils": {
  938. "version": "1.0.1",
  939. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
  940. "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
  941. "dev": true,
  942. "license": "MIT"
  943. },
  944. "node_modules/@tybys/wasm-util": {
  945. "version": "0.10.3",
  946. "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz",
  947. "integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==",
  948. "dev": true,
  949. "license": "MIT",
  950. "optional": true,
  951. "dependencies": {
  952. "tslib": "^2.4.0"
  953. }
  954. },
  955. "node_modules/@types/d3-array": {
  956. "version": "3.2.2",
  957. "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz",
  958. "integrity": "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==",
  959. "license": "MIT"
  960. },
  961. "node_modules/@types/d3-color": {
  962. "version": "3.1.3",
  963. "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
  964. "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
  965. "license": "MIT"
  966. },
  967. "node_modules/@types/d3-dispatch": {
  968. "version": "3.0.7",
  969. "resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.7.tgz",
  970. "integrity": "sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA==",
  971. "license": "MIT"
  972. },
  973. "node_modules/@types/d3-dsv": {
  974. "version": "3.0.7",
  975. "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.7.tgz",
  976. "integrity": "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==",
  977. "license": "MIT"
  978. },
  979. "node_modules/@types/d3-ease": {
  980. "version": "3.0.2",
  981. "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz",
  982. "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==",
  983. "license": "MIT"
  984. },
  985. "node_modules/@types/d3-fetch": {
  986. "version": "3.0.7",
  987. "resolved": "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.7.tgz",
  988. "integrity": "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==",
  989. "license": "MIT",
  990. "dependencies": {
  991. "@types/d3-dsv": "*"
  992. }
  993. },
  994. "node_modules/@types/d3-force": {
  995. "version": "3.0.10",
  996. "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz",
  997. "integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==",
  998. "license": "MIT"
  999. },
  1000. "node_modules/@types/d3-format": {
  1001. "version": "3.0.4",
  1002. "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz",
  1003. "integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==",
  1004. "license": "MIT"
  1005. },
  1006. "node_modules/@types/d3-geo": {
  1007. "version": "3.1.0",
  1008. "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.1.0.tgz",
  1009. "integrity": "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==",
  1010. "license": "MIT",
  1011. "dependencies": {
  1012. "@types/geojson": "*"
  1013. }
  1014. },
  1015. "node_modules/@types/d3-hierarchy": {
  1016. "version": "3.1.7",
  1017. "resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz",
  1018. "integrity": "sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==",
  1019. "license": "MIT"
  1020. },
  1021. "node_modules/@types/d3-interpolate": {
  1022. "version": "3.0.4",
  1023. "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
  1024. "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
  1025. "license": "MIT",
  1026. "dependencies": {
  1027. "@types/d3-color": "*"
  1028. }
  1029. },
  1030. "node_modules/@types/d3-path": {
  1031. "version": "3.1.1",
  1032. "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz",
  1033. "integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==",
  1034. "license": "MIT"
  1035. },
  1036. "node_modules/@types/d3-quadtree": {
  1037. "version": "3.0.6",
  1038. "resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz",
  1039. "integrity": "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==",
  1040. "license": "MIT"
  1041. },
  1042. "node_modules/@types/d3-random": {
  1043. "version": "3.0.4",
  1044. "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.4.tgz",
  1045. "integrity": "sha512-UHYId5WTCx4L4YNel7NU00XUXXgvgpgZOvp10PuvsQENjMDXhh2RyFc0KBjO7B45ne4Ha1yVH7ii0vnzKkuzWA==",
  1046. "license": "MIT"
  1047. },
  1048. "node_modules/@types/d3-scale": {
  1049. "version": "4.0.9",
  1050. "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz",
  1051. "integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==",
  1052. "license": "MIT",
  1053. "dependencies": {
  1054. "@types/d3-time": "*"
  1055. }
  1056. },
  1057. "node_modules/@types/d3-scale-chromatic": {
  1058. "version": "3.1.0",
  1059. "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz",
  1060. "integrity": "sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==",
  1061. "license": "MIT"
  1062. },
  1063. "node_modules/@types/d3-shape": {
  1064. "version": "3.1.8",
  1065. "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.8.tgz",
  1066. "integrity": "sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==",
  1067. "license": "MIT",
  1068. "dependencies": {
  1069. "@types/d3-path": "*"
  1070. }
  1071. },
  1072. "node_modules/@types/d3-time": {
  1073. "version": "3.0.4",
  1074. "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz",
  1075. "integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==",
  1076. "license": "MIT"
  1077. },
  1078. "node_modules/@types/d3-timer": {
  1079. "version": "3.0.2",
  1080. "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz",
  1081. "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==",
  1082. "license": "MIT"
  1083. },
  1084. "node_modules/@types/geojson": {
  1085. "version": "7946.0.16",
  1086. "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz",
  1087. "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==",
  1088. "license": "MIT"
  1089. },
  1090. "node_modules/@types/react": {
  1091. "version": "19.2.17",
  1092. "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
  1093. "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
  1094. "dev": true,
  1095. "license": "MIT",
  1096. "dependencies": {
  1097. "csstype": "^3.2.2"
  1098. }
  1099. },
  1100. "node_modules/@types/react-dom": {
  1101. "version": "19.2.3",
  1102. "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
  1103. "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
  1104. "dev": true,
  1105. "license": "MIT",
  1106. "peerDependencies": {
  1107. "@types/react": "^19.2.0"
  1108. }
  1109. },
  1110. "node_modules/@vitejs/plugin-react": {
  1111. "version": "6.0.3",
  1112. "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.3.tgz",
  1113. "integrity": "sha512-vmFvco5/QuC2f9Oj+wTk0+9XeDFkHxSamwZKYc7MxYwKICfvUvlMhqKI0VuICPltGqh1neqBKDvO4kes1ya8vg==",
  1114. "dev": true,
  1115. "license": "MIT",
  1116. "dependencies": {
  1117. "@rolldown/pluginutils": "^1.0.1"
  1118. },
  1119. "engines": {
  1120. "node": "^20.19.0 || >=22.12.0"
  1121. },
  1122. "peerDependencies": {
  1123. "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
  1124. "babel-plugin-react-compiler": "^1.0.0",
  1125. "vite": "^8.0.0"
  1126. },
  1127. "peerDependenciesMeta": {
  1128. "@rolldown/plugin-babel": {
  1129. "optional": true
  1130. },
  1131. "babel-plugin-react-compiler": {
  1132. "optional": true
  1133. }
  1134. }
  1135. },
  1136. "node_modules/antd": {
  1137. "version": "5.29.3",
  1138. "resolved": "https://registry.npmjs.org/antd/-/antd-5.29.3.tgz",
  1139. "integrity": "sha512-3DdbGCa9tWAJGcCJ6rzR8EJFsv2CtyEbkVabZE14pfgUHfCicWCj0/QzQVLDYg8CPfQk9BH7fHCoTXHTy7MP/A==",
  1140. "license": "MIT",
  1141. "dependencies": {
  1142. "@ant-design/colors": "^7.2.1",
  1143. "@ant-design/cssinjs": "^1.23.0",
  1144. "@ant-design/cssinjs-utils": "^1.1.3",
  1145. "@ant-design/fast-color": "^2.0.6",
  1146. "@ant-design/icons": "^5.6.1",
  1147. "@ant-design/react-slick": "~1.1.2",
  1148. "@babel/runtime": "^7.26.0",
  1149. "@rc-component/color-picker": "~2.0.1",
  1150. "@rc-component/mutate-observer": "^1.1.0",
  1151. "@rc-component/qrcode": "~1.1.0",
  1152. "@rc-component/tour": "~1.15.1",
  1153. "@rc-component/trigger": "^2.3.0",
  1154. "classnames": "^2.5.1",
  1155. "copy-to-clipboard": "^3.3.3",
  1156. "dayjs": "^1.11.11",
  1157. "rc-cascader": "~3.34.0",
  1158. "rc-checkbox": "~3.5.0",
  1159. "rc-collapse": "~3.9.0",
  1160. "rc-dialog": "~9.6.0",
  1161. "rc-drawer": "~7.3.0",
  1162. "rc-dropdown": "~4.2.1",
  1163. "rc-field-form": "~2.7.1",
  1164. "rc-image": "~7.12.0",
  1165. "rc-input": "~1.8.0",
  1166. "rc-input-number": "~9.5.0",
  1167. "rc-mentions": "~2.20.0",
  1168. "rc-menu": "~9.16.1",
  1169. "rc-motion": "^2.9.5",
  1170. "rc-notification": "~5.6.4",
  1171. "rc-pagination": "~5.1.0",
  1172. "rc-picker": "~4.11.3",
  1173. "rc-progress": "~4.0.0",
  1174. "rc-rate": "~2.13.1",
  1175. "rc-resize-observer": "^1.4.3",
  1176. "rc-segmented": "~2.7.0",
  1177. "rc-select": "~14.16.8",
  1178. "rc-slider": "~11.1.9",
  1179. "rc-steps": "~6.0.1",
  1180. "rc-switch": "~4.1.0",
  1181. "rc-table": "~7.54.0",
  1182. "rc-tabs": "~15.7.0",
  1183. "rc-textarea": "~1.10.2",
  1184. "rc-tooltip": "~6.4.0",
  1185. "rc-tree": "~5.13.1",
  1186. "rc-tree-select": "~5.27.0",
  1187. "rc-upload": "~4.11.0",
  1188. "rc-util": "^5.44.4",
  1189. "scroll-into-view-if-needed": "^3.1.0",
  1190. "throttle-debounce": "^5.0.2"
  1191. },
  1192. "funding": {
  1193. "type": "opencollective",
  1194. "url": "https://opencollective.com/ant-design"
  1195. },
  1196. "peerDependencies": {
  1197. "react": ">=16.9.0",
  1198. "react-dom": ">=16.9.0"
  1199. }
  1200. },
  1201. "node_modules/antd/node_modules/@ant-design/colors": {
  1202. "version": "7.2.1",
  1203. "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-7.2.1.tgz",
  1204. "integrity": "sha512-lCHDcEzieu4GA3n8ELeZ5VQ8pKQAWcGGLRTQ50aQM2iqPpq2evTxER84jfdPvsPAtEcZ7m44NI45edFMo8oOYQ==",
  1205. "license": "MIT",
  1206. "dependencies": {
  1207. "@ant-design/fast-color": "^2.0.6"
  1208. }
  1209. },
  1210. "node_modules/antd/node_modules/@ant-design/fast-color": {
  1211. "version": "2.0.6",
  1212. "resolved": "https://registry.npmjs.org/@ant-design/fast-color/-/fast-color-2.0.6.tgz",
  1213. "integrity": "sha512-y2217gk4NqL35giHl72o6Zzqji9O7vHh9YmhUVkPtAOpoTCH4uWxo/pr4VE8t0+ChEPs0qo4eJRC5Q1eXWo3vA==",
  1214. "license": "MIT",
  1215. "dependencies": {
  1216. "@babel/runtime": "^7.24.7"
  1217. },
  1218. "engines": {
  1219. "node": ">=8.x"
  1220. }
  1221. },
  1222. "node_modules/antd/node_modules/@ant-design/icons": {
  1223. "version": "5.6.1",
  1224. "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-5.6.1.tgz",
  1225. "integrity": "sha512-0/xS39c91WjPAZOWsvi1//zjx6kAp4kxWwctR6kuU6p133w8RU0D2dSCvZC19uQyharg/sAvYxGYWl01BbZZfg==",
  1226. "license": "MIT",
  1227. "dependencies": {
  1228. "@ant-design/colors": "^7.0.0",
  1229. "@ant-design/icons-svg": "^4.4.0",
  1230. "@babel/runtime": "^7.24.8",
  1231. "classnames": "^2.2.6",
  1232. "rc-util": "^5.31.1"
  1233. },
  1234. "engines": {
  1235. "node": ">=8"
  1236. },
  1237. "peerDependencies": {
  1238. "react": ">=16.0.0",
  1239. "react-dom": ">=16.0.0"
  1240. }
  1241. },
  1242. "node_modules/base64-arraybuffer": {
  1243. "version": "1.0.2",
  1244. "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz",
  1245. "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==",
  1246. "license": "MIT",
  1247. "engines": {
  1248. "node": ">= 0.6.0"
  1249. }
  1250. },
  1251. "node_modules/classnames": {
  1252. "version": "2.5.1",
  1253. "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz",
  1254. "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==",
  1255. "license": "MIT"
  1256. },
  1257. "node_modules/clsx": {
  1258. "version": "2.1.1",
  1259. "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
  1260. "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
  1261. "license": "MIT",
  1262. "engines": {
  1263. "node": ">=6"
  1264. }
  1265. },
  1266. "node_modules/color-name": {
  1267. "version": "1.1.4",
  1268. "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
  1269. "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
  1270. "license": "MIT"
  1271. },
  1272. "node_modules/color-string": {
  1273. "version": "1.9.1",
  1274. "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
  1275. "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
  1276. "license": "MIT",
  1277. "dependencies": {
  1278. "color-name": "^1.0.0",
  1279. "simple-swizzle": "^0.2.2"
  1280. }
  1281. },
  1282. "node_modules/commander": {
  1283. "version": "7.2.0",
  1284. "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
  1285. "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
  1286. "license": "MIT",
  1287. "engines": {
  1288. "node": ">= 10"
  1289. }
  1290. },
  1291. "node_modules/compute-scroll-into-view": {
  1292. "version": "3.1.1",
  1293. "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.1.1.tgz",
  1294. "integrity": "sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==",
  1295. "license": "MIT"
  1296. },
  1297. "node_modules/copy-to-clipboard": {
  1298. "version": "3.3.3",
  1299. "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz",
  1300. "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==",
  1301. "license": "MIT",
  1302. "dependencies": {
  1303. "toggle-selection": "^1.0.6"
  1304. }
  1305. },
  1306. "node_modules/css-line-break": {
  1307. "version": "2.1.0",
  1308. "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz",
  1309. "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==",
  1310. "license": "MIT",
  1311. "dependencies": {
  1312. "utrie": "^1.0.2"
  1313. }
  1314. },
  1315. "node_modules/csstype": {
  1316. "version": "3.2.3",
  1317. "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
  1318. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1319. "license": "MIT"
  1320. },
  1321. "node_modules/d3-array": {
  1322. "version": "3.2.4",
  1323. "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz",
  1324. "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==",
  1325. "license": "ISC",
  1326. "dependencies": {
  1327. "internmap": "1 - 2"
  1328. },
  1329. "engines": {
  1330. "node": ">=12"
  1331. }
  1332. },
  1333. "node_modules/d3-binarytree": {
  1334. "version": "1.0.2",
  1335. "resolved": "https://registry.npmjs.org/d3-binarytree/-/d3-binarytree-1.0.2.tgz",
  1336. "integrity": "sha512-cElUNH+sHu95L04m92pG73t2MEJXKu+GeKUN1TJkFsu93E5W8E9Sc3kHEGJKgenGvj19m6upSn2EunvMgMD2Yw==",
  1337. "license": "MIT"
  1338. },
  1339. "node_modules/d3-color": {
  1340. "version": "3.1.0",
  1341. "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
  1342. "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
  1343. "license": "ISC",
  1344. "engines": {
  1345. "node": ">=12"
  1346. }
  1347. },
  1348. "node_modules/d3-dispatch": {
  1349. "version": "3.0.1",
  1350. "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
  1351. "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
  1352. "license": "ISC",
  1353. "engines": {
  1354. "node": ">=12"
  1355. }
  1356. },
  1357. "node_modules/d3-dsv": {
  1358. "version": "3.0.1",
  1359. "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz",
  1360. "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==",
  1361. "license": "ISC",
  1362. "dependencies": {
  1363. "commander": "7",
  1364. "iconv-lite": "0.6",
  1365. "rw": "1"
  1366. },
  1367. "bin": {
  1368. "csv2json": "bin/dsv2json.js",
  1369. "csv2tsv": "bin/dsv2dsv.js",
  1370. "dsv2dsv": "bin/dsv2dsv.js",
  1371. "dsv2json": "bin/dsv2json.js",
  1372. "json2csv": "bin/json2dsv.js",
  1373. "json2dsv": "bin/json2dsv.js",
  1374. "json2tsv": "bin/json2dsv.js",
  1375. "tsv2csv": "bin/dsv2dsv.js",
  1376. "tsv2json": "bin/dsv2json.js"
  1377. },
  1378. "engines": {
  1379. "node": ">=12"
  1380. }
  1381. },
  1382. "node_modules/d3-ease": {
  1383. "version": "3.0.1",
  1384. "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
  1385. "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
  1386. "license": "BSD-3-Clause",
  1387. "engines": {
  1388. "node": ">=12"
  1389. }
  1390. },
  1391. "node_modules/d3-fetch": {
  1392. "version": "3.0.1",
  1393. "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz",
  1394. "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==",
  1395. "license": "ISC",
  1396. "dependencies": {
  1397. "d3-dsv": "1 - 3"
  1398. },
  1399. "engines": {
  1400. "node": ">=12"
  1401. }
  1402. },
  1403. "node_modules/d3-force": {
  1404. "version": "3.0.0",
  1405. "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz",
  1406. "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
  1407. "license": "ISC",
  1408. "dependencies": {
  1409. "d3-dispatch": "1 - 3",
  1410. "d3-quadtree": "1 - 3",
  1411. "d3-timer": "1 - 3"
  1412. },
  1413. "engines": {
  1414. "node": ">=12"
  1415. }
  1416. },
  1417. "node_modules/d3-force-3d": {
  1418. "version": "3.0.6",
  1419. "resolved": "https://registry.npmjs.org/d3-force-3d/-/d3-force-3d-3.0.6.tgz",
  1420. "integrity": "sha512-4tsKHUPLOVkyfEffZo1v6sFHvGFwAIIjt/W8IThbp08DYAsXZck+2pSHEG5W1+gQgEvFLdZkYvmJAbRM2EzMnA==",
  1421. "license": "MIT",
  1422. "dependencies": {
  1423. "d3-binarytree": "1",
  1424. "d3-dispatch": "1 - 3",
  1425. "d3-octree": "1",
  1426. "d3-quadtree": "1 - 3",
  1427. "d3-timer": "1 - 3"
  1428. },
  1429. "engines": {
  1430. "node": ">=12"
  1431. }
  1432. },
  1433. "node_modules/d3-format": {
  1434. "version": "3.1.2",
  1435. "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.2.tgz",
  1436. "integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==",
  1437. "license": "ISC",
  1438. "engines": {
  1439. "node": ">=12"
  1440. }
  1441. },
  1442. "node_modules/d3-geo": {
  1443. "version": "3.1.1",
  1444. "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz",
  1445. "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==",
  1446. "license": "ISC",
  1447. "dependencies": {
  1448. "d3-array": "2.5.0 - 3"
  1449. },
  1450. "engines": {
  1451. "node": ">=12"
  1452. }
  1453. },
  1454. "node_modules/d3-geo-projection": {
  1455. "version": "4.0.0",
  1456. "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz",
  1457. "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==",
  1458. "license": "ISC",
  1459. "dependencies": {
  1460. "commander": "7",
  1461. "d3-array": "1 - 3",
  1462. "d3-geo": "1.12.0 - 3"
  1463. },
  1464. "bin": {
  1465. "geo2svg": "bin/geo2svg.js",
  1466. "geograticule": "bin/geograticule.js",
  1467. "geoproject": "bin/geoproject.js",
  1468. "geoquantize": "bin/geoquantize.js",
  1469. "geostitch": "bin/geostitch.js"
  1470. },
  1471. "engines": {
  1472. "node": ">=12"
  1473. }
  1474. },
  1475. "node_modules/d3-hierarchy": {
  1476. "version": "3.1.2",
  1477. "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz",
  1478. "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==",
  1479. "license": "ISC",
  1480. "engines": {
  1481. "node": ">=12"
  1482. }
  1483. },
  1484. "node_modules/d3-interpolate": {
  1485. "version": "3.0.1",
  1486. "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
  1487. "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
  1488. "license": "ISC",
  1489. "dependencies": {
  1490. "d3-color": "1 - 3"
  1491. },
  1492. "engines": {
  1493. "node": ">=12"
  1494. }
  1495. },
  1496. "node_modules/d3-octree": {
  1497. "version": "1.1.0",
  1498. "resolved": "https://registry.npmjs.org/d3-octree/-/d3-octree-1.1.0.tgz",
  1499. "integrity": "sha512-F8gPlqpP+HwRPMO/8uOu5wjH110+6q4cgJvgJT6vlpy3BEaDIKlTZrgHKZSp/i1InRpVfh4puY/kvL6MxK930A==",
  1500. "license": "MIT"
  1501. },
  1502. "node_modules/d3-path": {
  1503. "version": "3.1.0",
  1504. "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
  1505. "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
  1506. "license": "ISC",
  1507. "engines": {
  1508. "node": ">=12"
  1509. }
  1510. },
  1511. "node_modules/d3-quadtree": {
  1512. "version": "3.0.1",
  1513. "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
  1514. "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==",
  1515. "license": "ISC",
  1516. "engines": {
  1517. "node": ">=12"
  1518. }
  1519. },
  1520. "node_modules/d3-random": {
  1521. "version": "3.0.1",
  1522. "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz",
  1523. "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==",
  1524. "license": "ISC",
  1525. "engines": {
  1526. "node": ">=12"
  1527. }
  1528. },
  1529. "node_modules/d3-regression": {
  1530. "version": "1.3.10",
  1531. "resolved": "https://registry.npmjs.org/d3-regression/-/d3-regression-1.3.10.tgz",
  1532. "integrity": "sha512-PF8GWEL70cHHWpx2jUQXc68r1pyPHIA+St16muk/XRokETzlegj5LriNKg7o4LR0TySug4nHYPJNNRz/W+/Niw==",
  1533. "license": "BSD-3-Clause"
  1534. },
  1535. "node_modules/d3-scale": {
  1536. "version": "4.0.2",
  1537. "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
  1538. "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
  1539. "license": "ISC",
  1540. "dependencies": {
  1541. "d3-array": "2.10.0 - 3",
  1542. "d3-format": "1 - 3",
  1543. "d3-interpolate": "1.2.0 - 3",
  1544. "d3-time": "2.1.1 - 3",
  1545. "d3-time-format": "2 - 4"
  1546. },
  1547. "engines": {
  1548. "node": ">=12"
  1549. }
  1550. },
  1551. "node_modules/d3-scale-chromatic": {
  1552. "version": "3.1.0",
  1553. "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz",
  1554. "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==",
  1555. "license": "ISC",
  1556. "dependencies": {
  1557. "d3-color": "1 - 3",
  1558. "d3-interpolate": "1 - 3"
  1559. },
  1560. "engines": {
  1561. "node": ">=12"
  1562. }
  1563. },
  1564. "node_modules/d3-shape": {
  1565. "version": "3.2.0",
  1566. "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
  1567. "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
  1568. "license": "ISC",
  1569. "dependencies": {
  1570. "d3-path": "^3.1.0"
  1571. },
  1572. "engines": {
  1573. "node": ">=12"
  1574. }
  1575. },
  1576. "node_modules/d3-time": {
  1577. "version": "3.1.0",
  1578. "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
  1579. "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
  1580. "license": "ISC",
  1581. "dependencies": {
  1582. "d3-array": "2 - 3"
  1583. },
  1584. "engines": {
  1585. "node": ">=12"
  1586. }
  1587. },
  1588. "node_modules/d3-time-format": {
  1589. "version": "4.1.0",
  1590. "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
  1591. "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
  1592. "license": "ISC",
  1593. "dependencies": {
  1594. "d3-time": "1 - 3"
  1595. },
  1596. "engines": {
  1597. "node": ">=12"
  1598. }
  1599. },
  1600. "node_modules/d3-timer": {
  1601. "version": "3.0.1",
  1602. "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
  1603. "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
  1604. "license": "ISC",
  1605. "engines": {
  1606. "node": ">=12"
  1607. }
  1608. },
  1609. "node_modules/dayjs": {
  1610. "version": "1.11.21",
  1611. "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.21.tgz",
  1612. "integrity": "sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==",
  1613. "license": "MIT"
  1614. },
  1615. "node_modules/detect-libc": {
  1616. "version": "2.1.2",
  1617. "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
  1618. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  1619. "dev": true,
  1620. "license": "Apache-2.0",
  1621. "engines": {
  1622. "node": ">=8"
  1623. }
  1624. },
  1625. "node_modules/eventemitter3": {
  1626. "version": "5.0.4",
  1627. "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz",
  1628. "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
  1629. "license": "MIT"
  1630. },
  1631. "node_modules/fast-deep-equal": {
  1632. "version": "3.1.3",
  1633. "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
  1634. "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
  1635. "license": "MIT"
  1636. },
  1637. "node_modules/fdir": {
  1638. "version": "6.5.0",
  1639. "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
  1640. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1641. "dev": true,
  1642. "license": "MIT",
  1643. "engines": {
  1644. "node": ">=12.0.0"
  1645. },
  1646. "peerDependencies": {
  1647. "picomatch": "^3 || ^4"
  1648. },
  1649. "peerDependenciesMeta": {
  1650. "picomatch": {
  1651. "optional": true
  1652. }
  1653. }
  1654. },
  1655. "node_modules/fecha": {
  1656. "version": "4.2.3",
  1657. "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz",
  1658. "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==",
  1659. "license": "MIT"
  1660. },
  1661. "node_modules/flru": {
  1662. "version": "1.0.2",
  1663. "resolved": "https://registry.npmjs.org/flru/-/flru-1.0.2.tgz",
  1664. "integrity": "sha512-kWyh8ADvHBFz6ua5xYOPnUroZTT/bwWfrCeL0Wj1dzG4/YOmOcfJ99W8dOVyyynJN35rZ9aCOtHChqQovV7yog==",
  1665. "license": "MIT",
  1666. "engines": {
  1667. "node": ">=6"
  1668. }
  1669. },
  1670. "node_modules/fsevents": {
  1671. "version": "2.3.3",
  1672. "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  1673. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1674. "dev": true,
  1675. "hasInstallScript": true,
  1676. "license": "MIT",
  1677. "optional": true,
  1678. "os": [
  1679. "darwin"
  1680. ],
  1681. "engines": {
  1682. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1683. }
  1684. },
  1685. "node_modules/gl-matrix": {
  1686. "version": "3.4.4",
  1687. "resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.4.tgz",
  1688. "integrity": "sha512-latSnyDNt/8zYUB6VIJ6PCh2jBjJX6gnDsoCZ7LyW7GkqrD51EWwa9qCoGixj8YqBtETQK/xY7OmpTF8xz1DdQ==",
  1689. "license": "MIT"
  1690. },
  1691. "node_modules/html2canvas": {
  1692. "version": "1.4.1",
  1693. "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz",
  1694. "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==",
  1695. "license": "MIT",
  1696. "dependencies": {
  1697. "css-line-break": "^2.1.0",
  1698. "text-segmentation": "^1.0.3"
  1699. },
  1700. "engines": {
  1701. "node": ">=8.0.0"
  1702. }
  1703. },
  1704. "node_modules/iconv-lite": {
  1705. "version": "0.6.3",
  1706. "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
  1707. "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
  1708. "license": "MIT",
  1709. "dependencies": {
  1710. "safer-buffer": ">= 2.1.2 < 3.0.0"
  1711. },
  1712. "engines": {
  1713. "node": ">=0.10.0"
  1714. }
  1715. },
  1716. "node_modules/internmap": {
  1717. "version": "2.0.3",
  1718. "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
  1719. "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
  1720. "license": "ISC",
  1721. "engines": {
  1722. "node": ">=12"
  1723. }
  1724. },
  1725. "node_modules/is-arrayish": {
  1726. "version": "0.3.4",
  1727. "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.4.tgz",
  1728. "integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==",
  1729. "license": "MIT"
  1730. },
  1731. "node_modules/is-mobile": {
  1732. "version": "5.0.0",
  1733. "resolved": "https://registry.npmjs.org/is-mobile/-/is-mobile-5.0.0.tgz",
  1734. "integrity": "sha512-Tz/yndySvLAEXh+Uk8liFCxOwVH6YutuR74utvOcu7I9Di+DwM0mtdPVZNaVvvBUM2OXxne/NhOs1zAO7riusQ==",
  1735. "license": "MIT"
  1736. },
  1737. "node_modules/json2mq": {
  1738. "version": "0.2.0",
  1739. "resolved": "https://registry.npmjs.org/json2mq/-/json2mq-0.2.0.tgz",
  1740. "integrity": "sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==",
  1741. "license": "MIT",
  1742. "dependencies": {
  1743. "string-convert": "^0.2.0"
  1744. }
  1745. },
  1746. "node_modules/lightningcss": {
  1747. "version": "1.32.0",
  1748. "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
  1749. "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
  1750. "dev": true,
  1751. "license": "MPL-2.0",
  1752. "dependencies": {
  1753. "detect-libc": "^2.0.3"
  1754. },
  1755. "engines": {
  1756. "node": ">= 12.0.0"
  1757. },
  1758. "funding": {
  1759. "type": "opencollective",
  1760. "url": "https://opencollective.com/parcel"
  1761. },
  1762. "optionalDependencies": {
  1763. "lightningcss-android-arm64": "1.32.0",
  1764. "lightningcss-darwin-arm64": "1.32.0",
  1765. "lightningcss-darwin-x64": "1.32.0",
  1766. "lightningcss-freebsd-x64": "1.32.0",
  1767. "lightningcss-linux-arm-gnueabihf": "1.32.0",
  1768. "lightningcss-linux-arm64-gnu": "1.32.0",
  1769. "lightningcss-linux-arm64-musl": "1.32.0",
  1770. "lightningcss-linux-x64-gnu": "1.32.0",
  1771. "lightningcss-linux-x64-musl": "1.32.0",
  1772. "lightningcss-win32-arm64-msvc": "1.32.0",
  1773. "lightningcss-win32-x64-msvc": "1.32.0"
  1774. }
  1775. },
  1776. "node_modules/lightningcss-android-arm64": {
  1777. "version": "1.32.0",
  1778. "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
  1779. "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
  1780. "cpu": [
  1781. "arm64"
  1782. ],
  1783. "dev": true,
  1784. "license": "MPL-2.0",
  1785. "optional": true,
  1786. "os": [
  1787. "android"
  1788. ],
  1789. "engines": {
  1790. "node": ">= 12.0.0"
  1791. },
  1792. "funding": {
  1793. "type": "opencollective",
  1794. "url": "https://opencollective.com/parcel"
  1795. }
  1796. },
  1797. "node_modules/lightningcss-darwin-arm64": {
  1798. "version": "1.32.0",
  1799. "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
  1800. "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
  1801. "cpu": [
  1802. "arm64"
  1803. ],
  1804. "dev": true,
  1805. "license": "MPL-2.0",
  1806. "optional": true,
  1807. "os": [
  1808. "darwin"
  1809. ],
  1810. "engines": {
  1811. "node": ">= 12.0.0"
  1812. },
  1813. "funding": {
  1814. "type": "opencollective",
  1815. "url": "https://opencollective.com/parcel"
  1816. }
  1817. },
  1818. "node_modules/lightningcss-darwin-x64": {
  1819. "version": "1.32.0",
  1820. "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
  1821. "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
  1822. "cpu": [
  1823. "x64"
  1824. ],
  1825. "dev": true,
  1826. "license": "MPL-2.0",
  1827. "optional": true,
  1828. "os": [
  1829. "darwin"
  1830. ],
  1831. "engines": {
  1832. "node": ">= 12.0.0"
  1833. },
  1834. "funding": {
  1835. "type": "opencollective",
  1836. "url": "https://opencollective.com/parcel"
  1837. }
  1838. },
  1839. "node_modules/lightningcss-freebsd-x64": {
  1840. "version": "1.32.0",
  1841. "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
  1842. "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
  1843. "cpu": [
  1844. "x64"
  1845. ],
  1846. "dev": true,
  1847. "license": "MPL-2.0",
  1848. "optional": true,
  1849. "os": [
  1850. "freebsd"
  1851. ],
  1852. "engines": {
  1853. "node": ">= 12.0.0"
  1854. },
  1855. "funding": {
  1856. "type": "opencollective",
  1857. "url": "https://opencollective.com/parcel"
  1858. }
  1859. },
  1860. "node_modules/lightningcss-linux-arm-gnueabihf": {
  1861. "version": "1.32.0",
  1862. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
  1863. "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
  1864. "cpu": [
  1865. "arm"
  1866. ],
  1867. "dev": true,
  1868. "license": "MPL-2.0",
  1869. "optional": true,
  1870. "os": [
  1871. "linux"
  1872. ],
  1873. "engines": {
  1874. "node": ">= 12.0.0"
  1875. },
  1876. "funding": {
  1877. "type": "opencollective",
  1878. "url": "https://opencollective.com/parcel"
  1879. }
  1880. },
  1881. "node_modules/lightningcss-linux-arm64-gnu": {
  1882. "version": "1.32.0",
  1883. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
  1884. "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
  1885. "cpu": [
  1886. "arm64"
  1887. ],
  1888. "dev": true,
  1889. "license": "MPL-2.0",
  1890. "optional": true,
  1891. "os": [
  1892. "linux"
  1893. ],
  1894. "engines": {
  1895. "node": ">= 12.0.0"
  1896. },
  1897. "funding": {
  1898. "type": "opencollective",
  1899. "url": "https://opencollective.com/parcel"
  1900. }
  1901. },
  1902. "node_modules/lightningcss-linux-arm64-musl": {
  1903. "version": "1.32.0",
  1904. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
  1905. "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
  1906. "cpu": [
  1907. "arm64"
  1908. ],
  1909. "dev": true,
  1910. "license": "MPL-2.0",
  1911. "optional": true,
  1912. "os": [
  1913. "linux"
  1914. ],
  1915. "engines": {
  1916. "node": ">= 12.0.0"
  1917. },
  1918. "funding": {
  1919. "type": "opencollective",
  1920. "url": "https://opencollective.com/parcel"
  1921. }
  1922. },
  1923. "node_modules/lightningcss-linux-x64-gnu": {
  1924. "version": "1.32.0",
  1925. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
  1926. "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
  1927. "cpu": [
  1928. "x64"
  1929. ],
  1930. "dev": true,
  1931. "license": "MPL-2.0",
  1932. "optional": true,
  1933. "os": [
  1934. "linux"
  1935. ],
  1936. "engines": {
  1937. "node": ">= 12.0.0"
  1938. },
  1939. "funding": {
  1940. "type": "opencollective",
  1941. "url": "https://opencollective.com/parcel"
  1942. }
  1943. },
  1944. "node_modules/lightningcss-linux-x64-musl": {
  1945. "version": "1.32.0",
  1946. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
  1947. "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
  1948. "cpu": [
  1949. "x64"
  1950. ],
  1951. "dev": true,
  1952. "license": "MPL-2.0",
  1953. "optional": true,
  1954. "os": [
  1955. "linux"
  1956. ],
  1957. "engines": {
  1958. "node": ">= 12.0.0"
  1959. },
  1960. "funding": {
  1961. "type": "opencollective",
  1962. "url": "https://opencollective.com/parcel"
  1963. }
  1964. },
  1965. "node_modules/lightningcss-win32-arm64-msvc": {
  1966. "version": "1.32.0",
  1967. "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
  1968. "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
  1969. "cpu": [
  1970. "arm64"
  1971. ],
  1972. "dev": true,
  1973. "license": "MPL-2.0",
  1974. "optional": true,
  1975. "os": [
  1976. "win32"
  1977. ],
  1978. "engines": {
  1979. "node": ">= 12.0.0"
  1980. },
  1981. "funding": {
  1982. "type": "opencollective",
  1983. "url": "https://opencollective.com/parcel"
  1984. }
  1985. },
  1986. "node_modules/lightningcss-win32-x64-msvc": {
  1987. "version": "1.32.0",
  1988. "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
  1989. "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
  1990. "cpu": [
  1991. "x64"
  1992. ],
  1993. "dev": true,
  1994. "license": "MPL-2.0",
  1995. "optional": true,
  1996. "os": [
  1997. "win32"
  1998. ],
  1999. "engines": {
  2000. "node": ">= 12.0.0"
  2001. },
  2002. "funding": {
  2003. "type": "opencollective",
  2004. "url": "https://opencollective.com/parcel"
  2005. }
  2006. },
  2007. "node_modules/lodash": {
  2008. "version": "4.18.1",
  2009. "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz",
  2010. "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
  2011. "license": "MIT"
  2012. },
  2013. "node_modules/nanoid": {
  2014. "version": "3.3.15",
  2015. "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.15.tgz",
  2016. "integrity": "sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==",
  2017. "dev": true,
  2018. "funding": [
  2019. {
  2020. "type": "github",
  2021. "url": "https://github.com/sponsors/ai"
  2022. }
  2023. ],
  2024. "license": "MIT",
  2025. "bin": {
  2026. "nanoid": "bin/nanoid.cjs"
  2027. },
  2028. "engines": {
  2029. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2030. }
  2031. },
  2032. "node_modules/pdfast": {
  2033. "version": "0.2.0",
  2034. "resolved": "https://registry.npmjs.org/pdfast/-/pdfast-0.2.0.tgz",
  2035. "integrity": "sha512-cq6TTu6qKSFUHwEahi68k/kqN2mfepjkGrG9Un70cgdRRKLKY6Rf8P8uvP2NvZktaQZNF3YE7agEkLj0vGK9bA==",
  2036. "license": "MIT"
  2037. },
  2038. "node_modules/picocolors": {
  2039. "version": "1.1.1",
  2040. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  2041. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2042. "dev": true,
  2043. "license": "ISC"
  2044. },
  2045. "node_modules/picomatch": {
  2046. "version": "4.0.5",
  2047. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
  2048. "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
  2049. "dev": true,
  2050. "license": "MIT",
  2051. "engines": {
  2052. "node": ">=12"
  2053. },
  2054. "funding": {
  2055. "url": "https://github.com/sponsors/jonschlinkert"
  2056. }
  2057. },
  2058. "node_modules/postcss": {
  2059. "version": "8.5.16",
  2060. "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.16.tgz",
  2061. "integrity": "sha512-vuwillviilfKZsg0VGj5R/YwwcHx4SLsIOI/7K6mQkWx+l5cUHTjj5g0AasTBcyXsbfTgrwsUNmVUb5xVwyPwg==",
  2062. "dev": true,
  2063. "funding": [
  2064. {
  2065. "type": "opencollective",
  2066. "url": "https://opencollective.com/postcss/"
  2067. },
  2068. {
  2069. "type": "tidelift",
  2070. "url": "https://tidelift.com/funding/github/npm/postcss"
  2071. },
  2072. {
  2073. "type": "github",
  2074. "url": "https://github.com/sponsors/ai"
  2075. }
  2076. ],
  2077. "license": "MIT",
  2078. "dependencies": {
  2079. "nanoid": "^3.3.12",
  2080. "picocolors": "^1.1.1",
  2081. "source-map-js": "^1.2.1"
  2082. },
  2083. "engines": {
  2084. "node": "^10 || ^12 || >=14"
  2085. }
  2086. },
  2087. "node_modules/rc-cascader": {
  2088. "version": "3.34.0",
  2089. "resolved": "https://registry.npmjs.org/rc-cascader/-/rc-cascader-3.34.0.tgz",
  2090. "integrity": "sha512-KpXypcvju9ptjW9FaN2NFcA2QH9E9LHKq169Y0eWtH4e/wHQ5Wh5qZakAgvb8EKZ736WZ3B0zLLOBsrsja5Dag==",
  2091. "license": "MIT",
  2092. "dependencies": {
  2093. "@babel/runtime": "^7.25.7",
  2094. "classnames": "^2.3.1",
  2095. "rc-select": "~14.16.2",
  2096. "rc-tree": "~5.13.0",
  2097. "rc-util": "^5.43.0"
  2098. },
  2099. "peerDependencies": {
  2100. "react": ">=16.9.0",
  2101. "react-dom": ">=16.9.0"
  2102. }
  2103. },
  2104. "node_modules/rc-checkbox": {
  2105. "version": "3.5.0",
  2106. "resolved": "https://registry.npmjs.org/rc-checkbox/-/rc-checkbox-3.5.0.tgz",
  2107. "integrity": "sha512-aOAQc3E98HteIIsSqm6Xk2FPKIER6+5vyEFMZfo73TqM+VVAIqOkHoPjgKLqSNtVLWScoaM7vY2ZrGEheI79yg==",
  2108. "license": "MIT",
  2109. "dependencies": {
  2110. "@babel/runtime": "^7.10.1",
  2111. "classnames": "^2.3.2",
  2112. "rc-util": "^5.25.2"
  2113. },
  2114. "peerDependencies": {
  2115. "react": ">=16.9.0",
  2116. "react-dom": ">=16.9.0"
  2117. }
  2118. },
  2119. "node_modules/rc-collapse": {
  2120. "version": "3.9.0",
  2121. "resolved": "https://registry.npmjs.org/rc-collapse/-/rc-collapse-3.9.0.tgz",
  2122. "integrity": "sha512-swDdz4QZ4dFTo4RAUMLL50qP0EY62N2kvmk2We5xYdRwcRn8WcYtuetCJpwpaCbUfUt5+huLpVxhvmnK+PHrkA==",
  2123. "license": "MIT",
  2124. "dependencies": {
  2125. "@babel/runtime": "^7.10.1",
  2126. "classnames": "2.x",
  2127. "rc-motion": "^2.3.4",
  2128. "rc-util": "^5.27.0"
  2129. },
  2130. "peerDependencies": {
  2131. "react": ">=16.9.0",
  2132. "react-dom": ">=16.9.0"
  2133. }
  2134. },
  2135. "node_modules/rc-dialog": {
  2136. "version": "9.6.0",
  2137. "resolved": "https://registry.npmjs.org/rc-dialog/-/rc-dialog-9.6.0.tgz",
  2138. "integrity": "sha512-ApoVi9Z8PaCQg6FsUzS8yvBEQy0ZL2PkuvAgrmohPkN3okps5WZ5WQWPc1RNuiOKaAYv8B97ACdsFU5LizzCqg==",
  2139. "license": "MIT",
  2140. "dependencies": {
  2141. "@babel/runtime": "^7.10.1",
  2142. "@rc-component/portal": "^1.0.0-8",
  2143. "classnames": "^2.2.6",
  2144. "rc-motion": "^2.3.0",
  2145. "rc-util": "^5.21.0"
  2146. },
  2147. "peerDependencies": {
  2148. "react": ">=16.9.0",
  2149. "react-dom": ">=16.9.0"
  2150. }
  2151. },
  2152. "node_modules/rc-drawer": {
  2153. "version": "7.3.0",
  2154. "resolved": "https://registry.npmjs.org/rc-drawer/-/rc-drawer-7.3.0.tgz",
  2155. "integrity": "sha512-DX6CIgiBWNpJIMGFO8BAISFkxiuKitoizooj4BDyee8/SnBn0zwO2FHrNDpqqepj0E/TFTDpmEBCyFuTgC7MOg==",
  2156. "license": "MIT",
  2157. "dependencies": {
  2158. "@babel/runtime": "^7.23.9",
  2159. "@rc-component/portal": "^1.1.1",
  2160. "classnames": "^2.2.6",
  2161. "rc-motion": "^2.6.1",
  2162. "rc-util": "^5.38.1"
  2163. },
  2164. "peerDependencies": {
  2165. "react": ">=16.9.0",
  2166. "react-dom": ">=16.9.0"
  2167. }
  2168. },
  2169. "node_modules/rc-dropdown": {
  2170. "version": "4.2.1",
  2171. "resolved": "https://registry.npmjs.org/rc-dropdown/-/rc-dropdown-4.2.1.tgz",
  2172. "integrity": "sha512-YDAlXsPv3I1n42dv1JpdM7wJ+gSUBfeyPK59ZpBD9jQhK9jVuxpjj3NmWQHOBceA1zEPVX84T2wbdb2SD0UjmA==",
  2173. "license": "MIT",
  2174. "dependencies": {
  2175. "@babel/runtime": "^7.18.3",
  2176. "@rc-component/trigger": "^2.0.0",
  2177. "classnames": "^2.2.6",
  2178. "rc-util": "^5.44.1"
  2179. },
  2180. "peerDependencies": {
  2181. "react": ">=16.11.0",
  2182. "react-dom": ">=16.11.0"
  2183. }
  2184. },
  2185. "node_modules/rc-field-form": {
  2186. "version": "2.7.1",
  2187. "resolved": "https://registry.npmjs.org/rc-field-form/-/rc-field-form-2.7.1.tgz",
  2188. "integrity": "sha512-vKeSifSJ6HoLaAB+B8aq/Qgm8a3dyxROzCtKNCsBQgiverpc4kWDQihoUwzUj+zNWJOykwSY4dNX3QrGwtVb9A==",
  2189. "license": "MIT",
  2190. "dependencies": {
  2191. "@babel/runtime": "^7.18.0",
  2192. "@rc-component/async-validator": "^5.0.3",
  2193. "rc-util": "^5.32.2"
  2194. },
  2195. "engines": {
  2196. "node": ">=8.x"
  2197. },
  2198. "peerDependencies": {
  2199. "react": ">=16.9.0",
  2200. "react-dom": ">=16.9.0"
  2201. }
  2202. },
  2203. "node_modules/rc-image": {
  2204. "version": "7.12.0",
  2205. "resolved": "https://registry.npmjs.org/rc-image/-/rc-image-7.12.0.tgz",
  2206. "integrity": "sha512-cZ3HTyyckPnNnUb9/DRqduqzLfrQRyi+CdHjdqgsyDpI3Ln5UX1kXnAhPBSJj9pVRzwRFgqkN7p9b6HBDjmu/Q==",
  2207. "license": "MIT",
  2208. "dependencies": {
  2209. "@babel/runtime": "^7.11.2",
  2210. "@rc-component/portal": "^1.0.2",
  2211. "classnames": "^2.2.6",
  2212. "rc-dialog": "~9.6.0",
  2213. "rc-motion": "^2.6.2",
  2214. "rc-util": "^5.34.1"
  2215. },
  2216. "peerDependencies": {
  2217. "react": ">=16.9.0",
  2218. "react-dom": ">=16.9.0"
  2219. }
  2220. },
  2221. "node_modules/rc-input": {
  2222. "version": "1.8.0",
  2223. "resolved": "https://registry.npmjs.org/rc-input/-/rc-input-1.8.0.tgz",
  2224. "integrity": "sha512-KXvaTbX+7ha8a/k+eg6SYRVERK0NddX8QX7a7AnRvUa/rEH0CNMlpcBzBkhI0wp2C8C4HlMoYl8TImSN+fuHKA==",
  2225. "license": "MIT",
  2226. "dependencies": {
  2227. "@babel/runtime": "^7.11.1",
  2228. "classnames": "^2.2.1",
  2229. "rc-util": "^5.18.1"
  2230. },
  2231. "peerDependencies": {
  2232. "react": ">=16.0.0",
  2233. "react-dom": ">=16.0.0"
  2234. }
  2235. },
  2236. "node_modules/rc-input-number": {
  2237. "version": "9.5.0",
  2238. "resolved": "https://registry.npmjs.org/rc-input-number/-/rc-input-number-9.5.0.tgz",
  2239. "integrity": "sha512-bKaEvB5tHebUURAEXw35LDcnRZLq3x1k7GxfAqBMzmpHkDGzjAtnUL8y4y5N15rIFIg5IJgwr211jInl3cipag==",
  2240. "license": "MIT",
  2241. "dependencies": {
  2242. "@babel/runtime": "^7.10.1",
  2243. "@rc-component/mini-decimal": "^1.0.1",
  2244. "classnames": "^2.2.5",
  2245. "rc-input": "~1.8.0",
  2246. "rc-util": "^5.40.1"
  2247. },
  2248. "peerDependencies": {
  2249. "react": ">=16.9.0",
  2250. "react-dom": ">=16.9.0"
  2251. }
  2252. },
  2253. "node_modules/rc-mentions": {
  2254. "version": "2.20.0",
  2255. "resolved": "https://registry.npmjs.org/rc-mentions/-/rc-mentions-2.20.0.tgz",
  2256. "integrity": "sha512-w8HCMZEh3f0nR8ZEd466ATqmXFCMGMN5UFCzEUL0bM/nGw/wOS2GgRzKBcm19K++jDyuWCOJOdgcKGXU3fXfbQ==",
  2257. "license": "MIT",
  2258. "dependencies": {
  2259. "@babel/runtime": "^7.22.5",
  2260. "@rc-component/trigger": "^2.0.0",
  2261. "classnames": "^2.2.6",
  2262. "rc-input": "~1.8.0",
  2263. "rc-menu": "~9.16.0",
  2264. "rc-textarea": "~1.10.0",
  2265. "rc-util": "^5.34.1"
  2266. },
  2267. "peerDependencies": {
  2268. "react": ">=16.9.0",
  2269. "react-dom": ">=16.9.0"
  2270. }
  2271. },
  2272. "node_modules/rc-menu": {
  2273. "version": "9.16.1",
  2274. "resolved": "https://registry.npmjs.org/rc-menu/-/rc-menu-9.16.1.tgz",
  2275. "integrity": "sha512-ghHx6/6Dvp+fw8CJhDUHFHDJ84hJE3BXNCzSgLdmNiFErWSOaZNsihDAsKq9ByTALo/xkNIwtDFGIl6r+RPXBg==",
  2276. "license": "MIT",
  2277. "dependencies": {
  2278. "@babel/runtime": "^7.10.1",
  2279. "@rc-component/trigger": "^2.0.0",
  2280. "classnames": "2.x",
  2281. "rc-motion": "^2.4.3",
  2282. "rc-overflow": "^1.3.1",
  2283. "rc-util": "^5.27.0"
  2284. },
  2285. "peerDependencies": {
  2286. "react": ">=16.9.0",
  2287. "react-dom": ">=16.9.0"
  2288. }
  2289. },
  2290. "node_modules/rc-motion": {
  2291. "version": "2.9.5",
  2292. "resolved": "https://registry.npmjs.org/rc-motion/-/rc-motion-2.9.5.tgz",
  2293. "integrity": "sha512-w+XTUrfh7ArbYEd2582uDrEhmBHwK1ZENJiSJVb7uRxdE7qJSYjbO2eksRXmndqyKqKoYPc9ClpPh5242mV1vA==",
  2294. "license": "MIT",
  2295. "dependencies": {
  2296. "@babel/runtime": "^7.11.1",
  2297. "classnames": "^2.2.1",
  2298. "rc-util": "^5.44.0"
  2299. },
  2300. "peerDependencies": {
  2301. "react": ">=16.9.0",
  2302. "react-dom": ">=16.9.0"
  2303. }
  2304. },
  2305. "node_modules/rc-notification": {
  2306. "version": "5.6.4",
  2307. "resolved": "https://registry.npmjs.org/rc-notification/-/rc-notification-5.6.4.tgz",
  2308. "integrity": "sha512-KcS4O6B4qzM3KH7lkwOB7ooLPZ4b6J+VMmQgT51VZCeEcmghdeR4IrMcFq0LG+RPdnbe/ArT086tGM8Snimgiw==",
  2309. "license": "MIT",
  2310. "dependencies": {
  2311. "@babel/runtime": "^7.10.1",
  2312. "classnames": "2.x",
  2313. "rc-motion": "^2.9.0",
  2314. "rc-util": "^5.20.1"
  2315. },
  2316. "engines": {
  2317. "node": ">=8.x"
  2318. },
  2319. "peerDependencies": {
  2320. "react": ">=16.9.0",
  2321. "react-dom": ">=16.9.0"
  2322. }
  2323. },
  2324. "node_modules/rc-overflow": {
  2325. "version": "1.5.0",
  2326. "resolved": "https://registry.npmjs.org/rc-overflow/-/rc-overflow-1.5.0.tgz",
  2327. "integrity": "sha512-Lm/v9h0LymeUYJf0x39OveU52InkdRXqnn2aYXfWmo8WdOonIKB2kfau+GF0fWq6jPgtdO9yMqveGcK6aIhJmg==",
  2328. "license": "MIT",
  2329. "dependencies": {
  2330. "@babel/runtime": "^7.11.1",
  2331. "classnames": "^2.2.1",
  2332. "rc-resize-observer": "^1.0.0",
  2333. "rc-util": "^5.37.0"
  2334. },
  2335. "peerDependencies": {
  2336. "react": ">=16.9.0",
  2337. "react-dom": ">=16.9.0"
  2338. }
  2339. },
  2340. "node_modules/rc-pagination": {
  2341. "version": "5.1.0",
  2342. "resolved": "https://registry.npmjs.org/rc-pagination/-/rc-pagination-5.1.0.tgz",
  2343. "integrity": "sha512-8416Yip/+eclTFdHXLKTxZvn70duYVGTvUUWbckCCZoIl3jagqke3GLsFrMs0bsQBikiYpZLD9206Ej4SOdOXQ==",
  2344. "license": "MIT",
  2345. "dependencies": {
  2346. "@babel/runtime": "^7.10.1",
  2347. "classnames": "^2.3.2",
  2348. "rc-util": "^5.38.0"
  2349. },
  2350. "peerDependencies": {
  2351. "react": ">=16.9.0",
  2352. "react-dom": ">=16.9.0"
  2353. }
  2354. },
  2355. "node_modules/rc-picker": {
  2356. "version": "4.11.3",
  2357. "resolved": "https://registry.npmjs.org/rc-picker/-/rc-picker-4.11.3.tgz",
  2358. "integrity": "sha512-MJ5teb7FlNE0NFHTncxXQ62Y5lytq6sh5nUw0iH8OkHL/TjARSEvSHpr940pWgjGANpjCwyMdvsEV55l5tYNSg==",
  2359. "license": "MIT",
  2360. "dependencies": {
  2361. "@babel/runtime": "^7.24.7",
  2362. "@rc-component/trigger": "^2.0.0",
  2363. "classnames": "^2.2.1",
  2364. "rc-overflow": "^1.3.2",
  2365. "rc-resize-observer": "^1.4.0",
  2366. "rc-util": "^5.43.0"
  2367. },
  2368. "engines": {
  2369. "node": ">=8.x"
  2370. },
  2371. "peerDependencies": {
  2372. "date-fns": ">= 2.x",
  2373. "dayjs": ">= 1.x",
  2374. "luxon": ">= 3.x",
  2375. "moment": ">= 2.x",
  2376. "react": ">=16.9.0",
  2377. "react-dom": ">=16.9.0"
  2378. },
  2379. "peerDependenciesMeta": {
  2380. "date-fns": {
  2381. "optional": true
  2382. },
  2383. "dayjs": {
  2384. "optional": true
  2385. },
  2386. "luxon": {
  2387. "optional": true
  2388. },
  2389. "moment": {
  2390. "optional": true
  2391. }
  2392. }
  2393. },
  2394. "node_modules/rc-progress": {
  2395. "version": "4.0.0",
  2396. "resolved": "https://registry.npmjs.org/rc-progress/-/rc-progress-4.0.0.tgz",
  2397. "integrity": "sha512-oofVMMafOCokIUIBnZLNcOZFsABaUw8PPrf1/y0ZBvKZNpOiu5h4AO9vv11Sw0p4Hb3D0yGWuEattcQGtNJ/aw==",
  2398. "license": "MIT",
  2399. "dependencies": {
  2400. "@babel/runtime": "^7.10.1",
  2401. "classnames": "^2.2.6",
  2402. "rc-util": "^5.16.1"
  2403. },
  2404. "peerDependencies": {
  2405. "react": ">=16.9.0",
  2406. "react-dom": ">=16.9.0"
  2407. }
  2408. },
  2409. "node_modules/rc-rate": {
  2410. "version": "2.13.1",
  2411. "resolved": "https://registry.npmjs.org/rc-rate/-/rc-rate-2.13.1.tgz",
  2412. "integrity": "sha512-QUhQ9ivQ8Gy7mtMZPAjLbxBt5y9GRp65VcUyGUMF3N3fhiftivPHdpuDIaWIMOTEprAjZPC08bls1dQB+I1F2Q==",
  2413. "license": "MIT",
  2414. "dependencies": {
  2415. "@babel/runtime": "^7.10.1",
  2416. "classnames": "^2.2.5",
  2417. "rc-util": "^5.0.1"
  2418. },
  2419. "engines": {
  2420. "node": ">=8.x"
  2421. },
  2422. "peerDependencies": {
  2423. "react": ">=16.9.0",
  2424. "react-dom": ">=16.9.0"
  2425. }
  2426. },
  2427. "node_modules/rc-resize-observer": {
  2428. "version": "1.4.3",
  2429. "resolved": "https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-1.4.3.tgz",
  2430. "integrity": "sha512-YZLjUbyIWox8E9i9C3Tm7ia+W7euPItNWSPX5sCcQTYbnwDb5uNpnLHQCG1f22oZWUhLw4Mv2tFmeWe68CDQRQ==",
  2431. "license": "MIT",
  2432. "dependencies": {
  2433. "@babel/runtime": "^7.20.7",
  2434. "classnames": "^2.2.1",
  2435. "rc-util": "^5.44.1",
  2436. "resize-observer-polyfill": "^1.5.1"
  2437. },
  2438. "peerDependencies": {
  2439. "react": ">=16.9.0",
  2440. "react-dom": ">=16.9.0"
  2441. }
  2442. },
  2443. "node_modules/rc-segmented": {
  2444. "version": "2.7.1",
  2445. "resolved": "https://registry.npmjs.org/rc-segmented/-/rc-segmented-2.7.1.tgz",
  2446. "integrity": "sha512-izj1Nw/Dw2Vb7EVr+D/E9lUTkBe+kKC+SAFSU9zqr7WV2W5Ktaa9Gc7cB2jTqgk8GROJayltaec+DBlYKc6d+g==",
  2447. "license": "MIT",
  2448. "dependencies": {
  2449. "@babel/runtime": "^7.11.1",
  2450. "classnames": "^2.2.1",
  2451. "rc-motion": "^2.4.4",
  2452. "rc-util": "^5.17.0"
  2453. },
  2454. "peerDependencies": {
  2455. "react": ">=16.0.0",
  2456. "react-dom": ">=16.0.0"
  2457. }
  2458. },
  2459. "node_modules/rc-select": {
  2460. "version": "14.16.8",
  2461. "resolved": "https://registry.npmjs.org/rc-select/-/rc-select-14.16.8.tgz",
  2462. "integrity": "sha512-NOV5BZa1wZrsdkKaiK7LHRuo5ZjZYMDxPP6/1+09+FB4KoNi8jcG1ZqLE3AVCxEsYMBe65OBx71wFoHRTP3LRg==",
  2463. "license": "MIT",
  2464. "dependencies": {
  2465. "@babel/runtime": "^7.10.1",
  2466. "@rc-component/trigger": "^2.1.1",
  2467. "classnames": "2.x",
  2468. "rc-motion": "^2.0.1",
  2469. "rc-overflow": "^1.3.1",
  2470. "rc-util": "^5.16.1",
  2471. "rc-virtual-list": "^3.5.2"
  2472. },
  2473. "engines": {
  2474. "node": ">=8.x"
  2475. },
  2476. "peerDependencies": {
  2477. "react": "*",
  2478. "react-dom": "*"
  2479. }
  2480. },
  2481. "node_modules/rc-slider": {
  2482. "version": "11.1.9",
  2483. "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-11.1.9.tgz",
  2484. "integrity": "sha512-h8IknhzSh3FEM9u8ivkskh+Ef4Yo4JRIY2nj7MrH6GQmrwV6mcpJf5/4KgH5JaVI1H3E52yCdpOlVyGZIeph5A==",
  2485. "license": "MIT",
  2486. "dependencies": {
  2487. "@babel/runtime": "^7.10.1",
  2488. "classnames": "^2.2.5",
  2489. "rc-util": "^5.36.0"
  2490. },
  2491. "engines": {
  2492. "node": ">=8.x"
  2493. },
  2494. "peerDependencies": {
  2495. "react": ">=16.9.0",
  2496. "react-dom": ">=16.9.0"
  2497. }
  2498. },
  2499. "node_modules/rc-steps": {
  2500. "version": "6.0.1",
  2501. "resolved": "https://registry.npmjs.org/rc-steps/-/rc-steps-6.0.1.tgz",
  2502. "integrity": "sha512-lKHL+Sny0SeHkQKKDJlAjV5oZ8DwCdS2hFhAkIjuQt1/pB81M0cA0ErVFdHq9+jmPmFw1vJB2F5NBzFXLJxV+g==",
  2503. "license": "MIT",
  2504. "dependencies": {
  2505. "@babel/runtime": "^7.16.7",
  2506. "classnames": "^2.2.3",
  2507. "rc-util": "^5.16.1"
  2508. },
  2509. "engines": {
  2510. "node": ">=8.x"
  2511. },
  2512. "peerDependencies": {
  2513. "react": ">=16.9.0",
  2514. "react-dom": ">=16.9.0"
  2515. }
  2516. },
  2517. "node_modules/rc-switch": {
  2518. "version": "4.1.0",
  2519. "resolved": "https://registry.npmjs.org/rc-switch/-/rc-switch-4.1.0.tgz",
  2520. "integrity": "sha512-TI8ufP2Az9oEbvyCeVE4+90PDSljGyuwix3fV58p7HV2o4wBnVToEyomJRVyTaZeqNPAp+vqeo4Wnj5u0ZZQBg==",
  2521. "license": "MIT",
  2522. "dependencies": {
  2523. "@babel/runtime": "^7.21.0",
  2524. "classnames": "^2.2.1",
  2525. "rc-util": "^5.30.0"
  2526. },
  2527. "peerDependencies": {
  2528. "react": ">=16.9.0",
  2529. "react-dom": ">=16.9.0"
  2530. }
  2531. },
  2532. "node_modules/rc-table": {
  2533. "version": "7.54.0",
  2534. "resolved": "https://registry.npmjs.org/rc-table/-/rc-table-7.54.0.tgz",
  2535. "integrity": "sha512-/wDTkki6wBTjwylwAGjpLKYklKo9YgjZwAU77+7ME5mBoS32Q4nAwoqhA2lSge6fobLW3Tap6uc5xfwaL2p0Sw==",
  2536. "license": "MIT",
  2537. "dependencies": {
  2538. "@babel/runtime": "^7.10.1",
  2539. "@rc-component/context": "^1.4.0",
  2540. "classnames": "^2.2.5",
  2541. "rc-resize-observer": "^1.1.0",
  2542. "rc-util": "^5.44.3",
  2543. "rc-virtual-list": "^3.14.2"
  2544. },
  2545. "engines": {
  2546. "node": ">=8.x"
  2547. },
  2548. "peerDependencies": {
  2549. "react": ">=16.9.0",
  2550. "react-dom": ">=16.9.0"
  2551. }
  2552. },
  2553. "node_modules/rc-tabs": {
  2554. "version": "15.7.0",
  2555. "resolved": "https://registry.npmjs.org/rc-tabs/-/rc-tabs-15.7.0.tgz",
  2556. "integrity": "sha512-ZepiE+6fmozYdWf/9gVp7k56PKHB1YYoDsKeQA1CBlJ/POIhjkcYiv0AGP0w2Jhzftd3AVvZP/K+V+Lpi2ankA==",
  2557. "license": "MIT",
  2558. "dependencies": {
  2559. "@babel/runtime": "^7.11.2",
  2560. "classnames": "2.x",
  2561. "rc-dropdown": "~4.2.0",
  2562. "rc-menu": "~9.16.0",
  2563. "rc-motion": "^2.6.2",
  2564. "rc-resize-observer": "^1.0.0",
  2565. "rc-util": "^5.34.1"
  2566. },
  2567. "engines": {
  2568. "node": ">=8.x"
  2569. },
  2570. "peerDependencies": {
  2571. "react": ">=16.9.0",
  2572. "react-dom": ">=16.9.0"
  2573. }
  2574. },
  2575. "node_modules/rc-textarea": {
  2576. "version": "1.10.2",
  2577. "resolved": "https://registry.npmjs.org/rc-textarea/-/rc-textarea-1.10.2.tgz",
  2578. "integrity": "sha512-HfaeXiaSlpiSp0I/pvWpecFEHpVysZ9tpDLNkxQbMvMz6gsr7aVZ7FpWP9kt4t7DB+jJXesYS0us1uPZnlRnwQ==",
  2579. "license": "MIT",
  2580. "dependencies": {
  2581. "@babel/runtime": "^7.10.1",
  2582. "classnames": "^2.2.1",
  2583. "rc-input": "~1.8.0",
  2584. "rc-resize-observer": "^1.0.0",
  2585. "rc-util": "^5.27.0"
  2586. },
  2587. "peerDependencies": {
  2588. "react": ">=16.9.0",
  2589. "react-dom": ">=16.9.0"
  2590. }
  2591. },
  2592. "node_modules/rc-tooltip": {
  2593. "version": "6.4.0",
  2594. "resolved": "https://registry.npmjs.org/rc-tooltip/-/rc-tooltip-6.4.0.tgz",
  2595. "integrity": "sha512-kqyivim5cp8I5RkHmpsp1Nn/Wk+1oeloMv9c7LXNgDxUpGm+RbXJGL+OPvDlcRnx9DBeOe4wyOIl4OKUERyH1g==",
  2596. "license": "MIT",
  2597. "dependencies": {
  2598. "@babel/runtime": "^7.11.2",
  2599. "@rc-component/trigger": "^2.0.0",
  2600. "classnames": "^2.3.1",
  2601. "rc-util": "^5.44.3"
  2602. },
  2603. "peerDependencies": {
  2604. "react": ">=16.9.0",
  2605. "react-dom": ">=16.9.0"
  2606. }
  2607. },
  2608. "node_modules/rc-tree": {
  2609. "version": "5.13.1",
  2610. "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-5.13.1.tgz",
  2611. "integrity": "sha512-FNhIefhftobCdUJshO7M8uZTA9F4OPGVXqGfZkkD/5soDeOhwO06T/aKTrg0WD8gRg/pyfq+ql3aMymLHCTC4A==",
  2612. "license": "MIT",
  2613. "dependencies": {
  2614. "@babel/runtime": "^7.10.1",
  2615. "classnames": "2.x",
  2616. "rc-motion": "^2.0.1",
  2617. "rc-util": "^5.16.1",
  2618. "rc-virtual-list": "^3.5.1"
  2619. },
  2620. "engines": {
  2621. "node": ">=10.x"
  2622. },
  2623. "peerDependencies": {
  2624. "react": "*",
  2625. "react-dom": "*"
  2626. }
  2627. },
  2628. "node_modules/rc-tree-select": {
  2629. "version": "5.27.0",
  2630. "resolved": "https://registry.npmjs.org/rc-tree-select/-/rc-tree-select-5.27.0.tgz",
  2631. "integrity": "sha512-2qTBTzwIT7LRI1o7zLyrCzmo5tQanmyGbSaGTIf7sYimCklAToVVfpMC6OAldSKolcnjorBYPNSKQqJmN3TCww==",
  2632. "license": "MIT",
  2633. "dependencies": {
  2634. "@babel/runtime": "^7.25.7",
  2635. "classnames": "2.x",
  2636. "rc-select": "~14.16.2",
  2637. "rc-tree": "~5.13.0",
  2638. "rc-util": "^5.43.0"
  2639. },
  2640. "peerDependencies": {
  2641. "react": "*",
  2642. "react-dom": "*"
  2643. }
  2644. },
  2645. "node_modules/rc-upload": {
  2646. "version": "4.11.0",
  2647. "resolved": "https://registry.npmjs.org/rc-upload/-/rc-upload-4.11.0.tgz",
  2648. "integrity": "sha512-ZUyT//2JAehfHzjWowqROcwYJKnZkIUGWaTE/VogVrepSl7AFNbQf4+zGfX4zl9Vrj/Jm8scLO0R6UlPDKK4wA==",
  2649. "license": "MIT",
  2650. "dependencies": {
  2651. "@babel/runtime": "^7.18.3",
  2652. "classnames": "^2.2.5",
  2653. "rc-util": "^5.2.0"
  2654. },
  2655. "peerDependencies": {
  2656. "react": ">=16.9.0",
  2657. "react-dom": ">=16.9.0"
  2658. }
  2659. },
  2660. "node_modules/rc-util": {
  2661. "version": "5.44.4",
  2662. "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.44.4.tgz",
  2663. "integrity": "sha512-resueRJzmHG9Q6rI/DfK6Kdv9/Lfls05vzMs1Sk3M2P+3cJa+MakaZyWY8IPfehVuhPJFKrIY1IK4GqbiaiY5w==",
  2664. "license": "MIT",
  2665. "dependencies": {
  2666. "@babel/runtime": "^7.18.3",
  2667. "react-is": "^18.2.0"
  2668. },
  2669. "peerDependencies": {
  2670. "react": ">=16.9.0",
  2671. "react-dom": ">=16.9.0"
  2672. }
  2673. },
  2674. "node_modules/rc-virtual-list": {
  2675. "version": "3.19.2",
  2676. "resolved": "https://registry.npmjs.org/rc-virtual-list/-/rc-virtual-list-3.19.2.tgz",
  2677. "integrity": "sha512-Ys6NcjwGkuwkeaWBDqfI3xWuZ7rDiQXlH1o2zLfFzATfEgXcqpk8CkgMfbJD81McqjcJVez25a3kPxCR807evA==",
  2678. "license": "MIT",
  2679. "dependencies": {
  2680. "@babel/runtime": "^7.20.0",
  2681. "classnames": "^2.2.6",
  2682. "rc-resize-observer": "^1.0.0",
  2683. "rc-util": "^5.36.0"
  2684. },
  2685. "engines": {
  2686. "node": ">=8.x"
  2687. },
  2688. "peerDependencies": {
  2689. "react": ">=16.9.0",
  2690. "react-dom": ">=16.9.0"
  2691. }
  2692. },
  2693. "node_modules/react": {
  2694. "version": "19.2.7",
  2695. "resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
  2696. "integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
  2697. "license": "MIT",
  2698. "engines": {
  2699. "node": ">=0.10.0"
  2700. }
  2701. },
  2702. "node_modules/react-dom": {
  2703. "version": "19.2.7",
  2704. "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
  2705. "integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
  2706. "license": "MIT",
  2707. "dependencies": {
  2708. "scheduler": "^0.27.0"
  2709. },
  2710. "peerDependencies": {
  2711. "react": "^19.2.7"
  2712. }
  2713. },
  2714. "node_modules/react-is": {
  2715. "version": "18.3.1",
  2716. "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
  2717. "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
  2718. "license": "MIT"
  2719. },
  2720. "node_modules/resize-observer-polyfill": {
  2721. "version": "1.5.1",
  2722. "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz",
  2723. "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==",
  2724. "license": "MIT"
  2725. },
  2726. "node_modules/rolldown": {
  2727. "version": "1.1.4",
  2728. "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.1.4.tgz",
  2729. "integrity": "sha512-IjZYiLxZwpnhwhdBH2ugdTGVSdhCQUmLxLoqyjiL0JxYjyRst+5a0P3xfrTxJ5F638j4Mvvw5FAX5XE6eHpXbA==",
  2730. "dev": true,
  2731. "license": "MIT",
  2732. "dependencies": {
  2733. "@oxc-project/types": "=0.138.0",
  2734. "@rolldown/pluginutils": "^1.0.0"
  2735. },
  2736. "bin": {
  2737. "rolldown": "bin/cli.mjs"
  2738. },
  2739. "engines": {
  2740. "node": "^20.19.0 || >=22.12.0"
  2741. },
  2742. "optionalDependencies": {
  2743. "@rolldown/binding-android-arm64": "1.1.4",
  2744. "@rolldown/binding-darwin-arm64": "1.1.4",
  2745. "@rolldown/binding-darwin-x64": "1.1.4",
  2746. "@rolldown/binding-freebsd-x64": "1.1.4",
  2747. "@rolldown/binding-linux-arm-gnueabihf": "1.1.4",
  2748. "@rolldown/binding-linux-arm64-gnu": "1.1.4",
  2749. "@rolldown/binding-linux-arm64-musl": "1.1.4",
  2750. "@rolldown/binding-linux-ppc64-gnu": "1.1.4",
  2751. "@rolldown/binding-linux-s390x-gnu": "1.1.4",
  2752. "@rolldown/binding-linux-x64-gnu": "1.1.4",
  2753. "@rolldown/binding-linux-x64-musl": "1.1.4",
  2754. "@rolldown/binding-openharmony-arm64": "1.1.4",
  2755. "@rolldown/binding-wasm32-wasi": "1.1.4",
  2756. "@rolldown/binding-win32-arm64-msvc": "1.1.4",
  2757. "@rolldown/binding-win32-x64-msvc": "1.1.4"
  2758. }
  2759. },
  2760. "node_modules/rw": {
  2761. "version": "1.3.3",
  2762. "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz",
  2763. "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==",
  2764. "license": "BSD-3-Clause"
  2765. },
  2766. "node_modules/safer-buffer": {
  2767. "version": "2.1.2",
  2768. "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
  2769. "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
  2770. "license": "MIT"
  2771. },
  2772. "node_modules/scheduler": {
  2773. "version": "0.27.0",
  2774. "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
  2775. "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
  2776. "license": "MIT"
  2777. },
  2778. "node_modules/scroll-into-view-if-needed": {
  2779. "version": "3.1.0",
  2780. "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.1.0.tgz",
  2781. "integrity": "sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==",
  2782. "license": "MIT",
  2783. "dependencies": {
  2784. "compute-scroll-into-view": "^3.0.2"
  2785. }
  2786. },
  2787. "node_modules/simple-swizzle": {
  2788. "version": "0.2.4",
  2789. "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.4.tgz",
  2790. "integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
  2791. "license": "MIT",
  2792. "dependencies": {
  2793. "is-arrayish": "^0.3.1"
  2794. }
  2795. },
  2796. "node_modules/source-map-js": {
  2797. "version": "1.2.1",
  2798. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  2799. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2800. "dev": true,
  2801. "license": "BSD-3-Clause",
  2802. "engines": {
  2803. "node": ">=0.10.0"
  2804. }
  2805. },
  2806. "node_modules/string-convert": {
  2807. "version": "0.2.1",
  2808. "resolved": "https://registry.npmjs.org/string-convert/-/string-convert-0.2.1.tgz",
  2809. "integrity": "sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A==",
  2810. "license": "MIT"
  2811. },
  2812. "node_modules/stylis": {
  2813. "version": "4.4.0",
  2814. "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.4.0.tgz",
  2815. "integrity": "sha512-5Z9ZpRzfuH6l/UAvCPAPUo3665Nk2wLaZU3x+TLHKVzIz33+sbJqbtrYoC3KD4/uVOr2Zp+L0LySezP9OHV9yA==",
  2816. "license": "MIT"
  2817. },
  2818. "node_modules/svg-path-parser": {
  2819. "version": "1.1.0",
  2820. "resolved": "https://registry.npmjs.org/svg-path-parser/-/svg-path-parser-1.1.0.tgz",
  2821. "integrity": "sha512-jGCUqcQyXpfe38R7RFfhrMyfXcBmpMNJI/B+4CE9/Unkh98UporAc461GTthv+TVDuZXsBx7/WiwJb1Oh4tt4A==",
  2822. "license": "MIT"
  2823. },
  2824. "node_modules/text-segmentation": {
  2825. "version": "1.0.3",
  2826. "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz",
  2827. "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==",
  2828. "license": "MIT",
  2829. "dependencies": {
  2830. "utrie": "^1.0.2"
  2831. }
  2832. },
  2833. "node_modules/throttle-debounce": {
  2834. "version": "5.0.2",
  2835. "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-5.0.2.tgz",
  2836. "integrity": "sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==",
  2837. "license": "MIT",
  2838. "engines": {
  2839. "node": ">=12.22"
  2840. }
  2841. },
  2842. "node_modules/tinyglobby": {
  2843. "version": "0.2.17",
  2844. "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
  2845. "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
  2846. "dev": true,
  2847. "license": "MIT",
  2848. "dependencies": {
  2849. "fdir": "^6.5.0",
  2850. "picomatch": "^4.0.4"
  2851. },
  2852. "engines": {
  2853. "node": ">=12.0.0"
  2854. },
  2855. "funding": {
  2856. "url": "https://github.com/sponsors/SuperchupuDev"
  2857. }
  2858. },
  2859. "node_modules/toggle-selection": {
  2860. "version": "1.0.6",
  2861. "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz",
  2862. "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==",
  2863. "license": "MIT"
  2864. },
  2865. "node_modules/tslib": {
  2866. "version": "2.8.1",
  2867. "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
  2868. "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
  2869. "license": "0BSD"
  2870. },
  2871. "node_modules/typescript": {
  2872. "version": "5.9.3",
  2873. "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
  2874. "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
  2875. "dev": true,
  2876. "license": "Apache-2.0",
  2877. "bin": {
  2878. "tsc": "bin/tsc",
  2879. "tsserver": "bin/tsserver"
  2880. },
  2881. "engines": {
  2882. "node": ">=14.17"
  2883. }
  2884. },
  2885. "node_modules/utrie": {
  2886. "version": "1.0.2",
  2887. "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz",
  2888. "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==",
  2889. "license": "MIT",
  2890. "dependencies": {
  2891. "base64-arraybuffer": "^1.0.2"
  2892. }
  2893. },
  2894. "node_modules/vite": {
  2895. "version": "8.1.3",
  2896. "resolved": "https://registry.npmjs.org/vite/-/vite-8.1.3.tgz",
  2897. "integrity": "sha512-Ds+gBRbj0lwRO2Y5hwnUBdxSwlAve9LeRyU4sNnAr0ewW0gWF0n5bgXgUzbgZ49MV9BVUAQUFYVcDUcilUExMA==",
  2898. "dev": true,
  2899. "license": "MIT",
  2900. "dependencies": {
  2901. "lightningcss": "^1.32.0",
  2902. "picomatch": "^4.0.4",
  2903. "postcss": "^8.5.16",
  2904. "rolldown": "~1.1.3",
  2905. "tinyglobby": "^0.2.17"
  2906. },
  2907. "bin": {
  2908. "vite": "bin/vite.js"
  2909. },
  2910. "engines": {
  2911. "node": "^20.19.0 || >=22.12.0"
  2912. },
  2913. "funding": {
  2914. "url": "https://github.com/vitejs/vite?sponsor=1"
  2915. },
  2916. "optionalDependencies": {
  2917. "fsevents": "~2.3.3"
  2918. },
  2919. "peerDependencies": {
  2920. "@types/node": "^20.19.0 || >=22.12.0",
  2921. "@vitejs/devtools": "^0.3.0",
  2922. "esbuild": "^0.27.0 || ^0.28.0",
  2923. "jiti": ">=1.21.0",
  2924. "less": "^4.0.0",
  2925. "sass": "^1.70.0",
  2926. "sass-embedded": "^1.70.0",
  2927. "stylus": ">=0.54.8",
  2928. "sugarss": "^5.0.0",
  2929. "terser": "^5.16.0",
  2930. "tsx": "^4.8.1",
  2931. "yaml": "^2.4.2"
  2932. },
  2933. "peerDependenciesMeta": {
  2934. "@types/node": {
  2935. "optional": true
  2936. },
  2937. "@vitejs/devtools": {
  2938. "optional": true
  2939. },
  2940. "esbuild": {
  2941. "optional": true
  2942. },
  2943. "jiti": {
  2944. "optional": true
  2945. },
  2946. "less": {
  2947. "optional": true
  2948. },
  2949. "sass": {
  2950. "optional": true
  2951. },
  2952. "sass-embedded": {
  2953. "optional": true
  2954. },
  2955. "stylus": {
  2956. "optional": true
  2957. },
  2958. "sugarss": {
  2959. "optional": true
  2960. },
  2961. "terser": {
  2962. "optional": true
  2963. },
  2964. "tsx": {
  2965. "optional": true
  2966. },
  2967. "yaml": {
  2968. "optional": true
  2969. }
  2970. }
  2971. }
  2972. }
  2973. }