package-lock.json 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835
  1. {
  2. "name": "h5sdk",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "h5sdk",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "axios": "^1.13.6",
  12. "clsx": "^2.1.1",
  13. "crypto-js": "^4.2.0",
  14. "jotai": "^2.18.1",
  15. "lucide-react": "^0.577.0",
  16. "react": "^19.2.4",
  17. "react-dom": "^19.2.4",
  18. "react-draggable": "^4.5.0",
  19. "tailwind-merge": "^3.5.0"
  20. },
  21. "devDependencies": {
  22. "@tailwindcss/vite": "^4.2.1",
  23. "@types/crypto-js": "^4.2.2",
  24. "@types/react": "^19.2.14",
  25. "@types/react-dom": "^19.2.3",
  26. "@vitejs/plugin-react": "^5.1.4",
  27. "tailwindcss": "^4.2.1",
  28. "typescript": "~5.9.3",
  29. "vite": "^7.3.1"
  30. }
  31. },
  32. "node_modules/@babel/code-frame": {
  33. "version": "7.29.0",
  34. "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
  35. "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
  36. "devOptional": true,
  37. "license": "MIT",
  38. "dependencies": {
  39. "@babel/helper-validator-identifier": "^7.28.5",
  40. "js-tokens": "^4.0.0",
  41. "picocolors": "^1.1.1"
  42. },
  43. "engines": {
  44. "node": ">=6.9.0"
  45. }
  46. },
  47. "node_modules/@babel/compat-data": {
  48. "version": "7.29.0",
  49. "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
  50. "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
  51. "devOptional": true,
  52. "license": "MIT",
  53. "engines": {
  54. "node": ">=6.9.0"
  55. }
  56. },
  57. "node_modules/@babel/core": {
  58. "version": "7.29.0",
  59. "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
  60. "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
  61. "devOptional": true,
  62. "license": "MIT",
  63. "dependencies": {
  64. "@babel/code-frame": "^7.29.0",
  65. "@babel/generator": "^7.29.0",
  66. "@babel/helper-compilation-targets": "^7.28.6",
  67. "@babel/helper-module-transforms": "^7.28.6",
  68. "@babel/helpers": "^7.28.6",
  69. "@babel/parser": "^7.29.0",
  70. "@babel/template": "^7.28.6",
  71. "@babel/traverse": "^7.29.0",
  72. "@babel/types": "^7.29.0",
  73. "@jridgewell/remapping": "^2.3.5",
  74. "convert-source-map": "^2.0.0",
  75. "debug": "^4.1.0",
  76. "gensync": "^1.0.0-beta.2",
  77. "json5": "^2.2.3",
  78. "semver": "^6.3.1"
  79. },
  80. "engines": {
  81. "node": ">=6.9.0"
  82. },
  83. "funding": {
  84. "type": "opencollective",
  85. "url": "https://opencollective.com/babel"
  86. }
  87. },
  88. "node_modules/@babel/generator": {
  89. "version": "7.29.1",
  90. "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
  91. "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
  92. "devOptional": true,
  93. "license": "MIT",
  94. "dependencies": {
  95. "@babel/parser": "^7.29.0",
  96. "@babel/types": "^7.29.0",
  97. "@jridgewell/gen-mapping": "^0.3.12",
  98. "@jridgewell/trace-mapping": "^0.3.28",
  99. "jsesc": "^3.0.2"
  100. },
  101. "engines": {
  102. "node": ">=6.9.0"
  103. }
  104. },
  105. "node_modules/@babel/helper-compilation-targets": {
  106. "version": "7.28.6",
  107. "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
  108. "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
  109. "devOptional": true,
  110. "license": "MIT",
  111. "dependencies": {
  112. "@babel/compat-data": "^7.28.6",
  113. "@babel/helper-validator-option": "^7.27.1",
  114. "browserslist": "^4.24.0",
  115. "lru-cache": "^5.1.1",
  116. "semver": "^6.3.1"
  117. },
  118. "engines": {
  119. "node": ">=6.9.0"
  120. }
  121. },
  122. "node_modules/@babel/helper-globals": {
  123. "version": "7.28.0",
  124. "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
  125. "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
  126. "devOptional": true,
  127. "license": "MIT",
  128. "engines": {
  129. "node": ">=6.9.0"
  130. }
  131. },
  132. "node_modules/@babel/helper-module-imports": {
  133. "version": "7.28.6",
  134. "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
  135. "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
  136. "devOptional": true,
  137. "license": "MIT",
  138. "dependencies": {
  139. "@babel/traverse": "^7.28.6",
  140. "@babel/types": "^7.28.6"
  141. },
  142. "engines": {
  143. "node": ">=6.9.0"
  144. }
  145. },
  146. "node_modules/@babel/helper-module-transforms": {
  147. "version": "7.28.6",
  148. "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
  149. "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
  150. "devOptional": true,
  151. "license": "MIT",
  152. "dependencies": {
  153. "@babel/helper-module-imports": "^7.28.6",
  154. "@babel/helper-validator-identifier": "^7.28.5",
  155. "@babel/traverse": "^7.28.6"
  156. },
  157. "engines": {
  158. "node": ">=6.9.0"
  159. },
  160. "peerDependencies": {
  161. "@babel/core": "^7.0.0"
  162. }
  163. },
  164. "node_modules/@babel/helper-plugin-utils": {
  165. "version": "7.28.6",
  166. "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
  167. "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
  168. "dev": true,
  169. "license": "MIT",
  170. "engines": {
  171. "node": ">=6.9.0"
  172. }
  173. },
  174. "node_modules/@babel/helper-string-parser": {
  175. "version": "7.27.1",
  176. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  177. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  178. "devOptional": true,
  179. "license": "MIT",
  180. "engines": {
  181. "node": ">=6.9.0"
  182. }
  183. },
  184. "node_modules/@babel/helper-validator-identifier": {
  185. "version": "7.28.5",
  186. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  187. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  188. "devOptional": true,
  189. "license": "MIT",
  190. "engines": {
  191. "node": ">=6.9.0"
  192. }
  193. },
  194. "node_modules/@babel/helper-validator-option": {
  195. "version": "7.27.1",
  196. "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
  197. "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
  198. "devOptional": true,
  199. "license": "MIT",
  200. "engines": {
  201. "node": ">=6.9.0"
  202. }
  203. },
  204. "node_modules/@babel/helpers": {
  205. "version": "7.28.6",
  206. "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz",
  207. "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
  208. "devOptional": true,
  209. "license": "MIT",
  210. "dependencies": {
  211. "@babel/template": "^7.28.6",
  212. "@babel/types": "^7.28.6"
  213. },
  214. "engines": {
  215. "node": ">=6.9.0"
  216. }
  217. },
  218. "node_modules/@babel/parser": {
  219. "version": "7.29.0",
  220. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
  221. "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
  222. "devOptional": true,
  223. "license": "MIT",
  224. "dependencies": {
  225. "@babel/types": "^7.29.0"
  226. },
  227. "bin": {
  228. "parser": "bin/babel-parser.js"
  229. },
  230. "engines": {
  231. "node": ">=6.0.0"
  232. }
  233. },
  234. "node_modules/@babel/plugin-transform-react-jsx-self": {
  235. "version": "7.27.1",
  236. "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
  237. "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
  238. "dev": true,
  239. "license": "MIT",
  240. "dependencies": {
  241. "@babel/helper-plugin-utils": "^7.27.1"
  242. },
  243. "engines": {
  244. "node": ">=6.9.0"
  245. },
  246. "peerDependencies": {
  247. "@babel/core": "^7.0.0-0"
  248. }
  249. },
  250. "node_modules/@babel/plugin-transform-react-jsx-source": {
  251. "version": "7.27.1",
  252. "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
  253. "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
  254. "dev": true,
  255. "license": "MIT",
  256. "dependencies": {
  257. "@babel/helper-plugin-utils": "^7.27.1"
  258. },
  259. "engines": {
  260. "node": ">=6.9.0"
  261. },
  262. "peerDependencies": {
  263. "@babel/core": "^7.0.0-0"
  264. }
  265. },
  266. "node_modules/@babel/template": {
  267. "version": "7.28.6",
  268. "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
  269. "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
  270. "devOptional": true,
  271. "license": "MIT",
  272. "dependencies": {
  273. "@babel/code-frame": "^7.28.6",
  274. "@babel/parser": "^7.28.6",
  275. "@babel/types": "^7.28.6"
  276. },
  277. "engines": {
  278. "node": ">=6.9.0"
  279. }
  280. },
  281. "node_modules/@babel/traverse": {
  282. "version": "7.29.0",
  283. "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
  284. "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
  285. "devOptional": true,
  286. "license": "MIT",
  287. "dependencies": {
  288. "@babel/code-frame": "^7.29.0",
  289. "@babel/generator": "^7.29.0",
  290. "@babel/helper-globals": "^7.28.0",
  291. "@babel/parser": "^7.29.0",
  292. "@babel/template": "^7.28.6",
  293. "@babel/types": "^7.29.0",
  294. "debug": "^4.3.1"
  295. },
  296. "engines": {
  297. "node": ">=6.9.0"
  298. }
  299. },
  300. "node_modules/@babel/types": {
  301. "version": "7.29.0",
  302. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
  303. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  304. "devOptional": true,
  305. "license": "MIT",
  306. "dependencies": {
  307. "@babel/helper-string-parser": "^7.27.1",
  308. "@babel/helper-validator-identifier": "^7.28.5"
  309. },
  310. "engines": {
  311. "node": ">=6.9.0"
  312. }
  313. },
  314. "node_modules/@esbuild/aix-ppc64": {
  315. "version": "0.27.3",
  316. "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
  317. "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
  318. "cpu": [
  319. "ppc64"
  320. ],
  321. "dev": true,
  322. "license": "MIT",
  323. "optional": true,
  324. "os": [
  325. "aix"
  326. ],
  327. "engines": {
  328. "node": ">=18"
  329. }
  330. },
  331. "node_modules/@esbuild/android-arm": {
  332. "version": "0.27.3",
  333. "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
  334. "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
  335. "cpu": [
  336. "arm"
  337. ],
  338. "dev": true,
  339. "license": "MIT",
  340. "optional": true,
  341. "os": [
  342. "android"
  343. ],
  344. "engines": {
  345. "node": ">=18"
  346. }
  347. },
  348. "node_modules/@esbuild/android-arm64": {
  349. "version": "0.27.3",
  350. "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
  351. "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
  352. "cpu": [
  353. "arm64"
  354. ],
  355. "dev": true,
  356. "license": "MIT",
  357. "optional": true,
  358. "os": [
  359. "android"
  360. ],
  361. "engines": {
  362. "node": ">=18"
  363. }
  364. },
  365. "node_modules/@esbuild/android-x64": {
  366. "version": "0.27.3",
  367. "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
  368. "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
  369. "cpu": [
  370. "x64"
  371. ],
  372. "dev": true,
  373. "license": "MIT",
  374. "optional": true,
  375. "os": [
  376. "android"
  377. ],
  378. "engines": {
  379. "node": ">=18"
  380. }
  381. },
  382. "node_modules/@esbuild/darwin-arm64": {
  383. "version": "0.27.3",
  384. "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
  385. "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
  386. "cpu": [
  387. "arm64"
  388. ],
  389. "dev": true,
  390. "license": "MIT",
  391. "optional": true,
  392. "os": [
  393. "darwin"
  394. ],
  395. "engines": {
  396. "node": ">=18"
  397. }
  398. },
  399. "node_modules/@esbuild/darwin-x64": {
  400. "version": "0.27.3",
  401. "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
  402. "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
  403. "cpu": [
  404. "x64"
  405. ],
  406. "dev": true,
  407. "license": "MIT",
  408. "optional": true,
  409. "os": [
  410. "darwin"
  411. ],
  412. "engines": {
  413. "node": ">=18"
  414. }
  415. },
  416. "node_modules/@esbuild/freebsd-arm64": {
  417. "version": "0.27.3",
  418. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
  419. "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
  420. "cpu": [
  421. "arm64"
  422. ],
  423. "dev": true,
  424. "license": "MIT",
  425. "optional": true,
  426. "os": [
  427. "freebsd"
  428. ],
  429. "engines": {
  430. "node": ">=18"
  431. }
  432. },
  433. "node_modules/@esbuild/freebsd-x64": {
  434. "version": "0.27.3",
  435. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
  436. "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
  437. "cpu": [
  438. "x64"
  439. ],
  440. "dev": true,
  441. "license": "MIT",
  442. "optional": true,
  443. "os": [
  444. "freebsd"
  445. ],
  446. "engines": {
  447. "node": ">=18"
  448. }
  449. },
  450. "node_modules/@esbuild/linux-arm": {
  451. "version": "0.27.3",
  452. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
  453. "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
  454. "cpu": [
  455. "arm"
  456. ],
  457. "dev": true,
  458. "license": "MIT",
  459. "optional": true,
  460. "os": [
  461. "linux"
  462. ],
  463. "engines": {
  464. "node": ">=18"
  465. }
  466. },
  467. "node_modules/@esbuild/linux-arm64": {
  468. "version": "0.27.3",
  469. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
  470. "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
  471. "cpu": [
  472. "arm64"
  473. ],
  474. "dev": true,
  475. "license": "MIT",
  476. "optional": true,
  477. "os": [
  478. "linux"
  479. ],
  480. "engines": {
  481. "node": ">=18"
  482. }
  483. },
  484. "node_modules/@esbuild/linux-ia32": {
  485. "version": "0.27.3",
  486. "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
  487. "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
  488. "cpu": [
  489. "ia32"
  490. ],
  491. "dev": true,
  492. "license": "MIT",
  493. "optional": true,
  494. "os": [
  495. "linux"
  496. ],
  497. "engines": {
  498. "node": ">=18"
  499. }
  500. },
  501. "node_modules/@esbuild/linux-loong64": {
  502. "version": "0.27.3",
  503. "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
  504. "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
  505. "cpu": [
  506. "loong64"
  507. ],
  508. "dev": true,
  509. "license": "MIT",
  510. "optional": true,
  511. "os": [
  512. "linux"
  513. ],
  514. "engines": {
  515. "node": ">=18"
  516. }
  517. },
  518. "node_modules/@esbuild/linux-mips64el": {
  519. "version": "0.27.3",
  520. "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
  521. "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
  522. "cpu": [
  523. "mips64el"
  524. ],
  525. "dev": true,
  526. "license": "MIT",
  527. "optional": true,
  528. "os": [
  529. "linux"
  530. ],
  531. "engines": {
  532. "node": ">=18"
  533. }
  534. },
  535. "node_modules/@esbuild/linux-ppc64": {
  536. "version": "0.27.3",
  537. "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
  538. "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
  539. "cpu": [
  540. "ppc64"
  541. ],
  542. "dev": true,
  543. "license": "MIT",
  544. "optional": true,
  545. "os": [
  546. "linux"
  547. ],
  548. "engines": {
  549. "node": ">=18"
  550. }
  551. },
  552. "node_modules/@esbuild/linux-riscv64": {
  553. "version": "0.27.3",
  554. "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
  555. "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
  556. "cpu": [
  557. "riscv64"
  558. ],
  559. "dev": true,
  560. "license": "MIT",
  561. "optional": true,
  562. "os": [
  563. "linux"
  564. ],
  565. "engines": {
  566. "node": ">=18"
  567. }
  568. },
  569. "node_modules/@esbuild/linux-s390x": {
  570. "version": "0.27.3",
  571. "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
  572. "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
  573. "cpu": [
  574. "s390x"
  575. ],
  576. "dev": true,
  577. "license": "MIT",
  578. "optional": true,
  579. "os": [
  580. "linux"
  581. ],
  582. "engines": {
  583. "node": ">=18"
  584. }
  585. },
  586. "node_modules/@esbuild/linux-x64": {
  587. "version": "0.27.3",
  588. "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
  589. "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
  590. "cpu": [
  591. "x64"
  592. ],
  593. "dev": true,
  594. "license": "MIT",
  595. "optional": true,
  596. "os": [
  597. "linux"
  598. ],
  599. "engines": {
  600. "node": ">=18"
  601. }
  602. },
  603. "node_modules/@esbuild/netbsd-arm64": {
  604. "version": "0.27.3",
  605. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
  606. "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
  607. "cpu": [
  608. "arm64"
  609. ],
  610. "dev": true,
  611. "license": "MIT",
  612. "optional": true,
  613. "os": [
  614. "netbsd"
  615. ],
  616. "engines": {
  617. "node": ">=18"
  618. }
  619. },
  620. "node_modules/@esbuild/netbsd-x64": {
  621. "version": "0.27.3",
  622. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
  623. "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
  624. "cpu": [
  625. "x64"
  626. ],
  627. "dev": true,
  628. "license": "MIT",
  629. "optional": true,
  630. "os": [
  631. "netbsd"
  632. ],
  633. "engines": {
  634. "node": ">=18"
  635. }
  636. },
  637. "node_modules/@esbuild/openbsd-arm64": {
  638. "version": "0.27.3",
  639. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
  640. "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
  641. "cpu": [
  642. "arm64"
  643. ],
  644. "dev": true,
  645. "license": "MIT",
  646. "optional": true,
  647. "os": [
  648. "openbsd"
  649. ],
  650. "engines": {
  651. "node": ">=18"
  652. }
  653. },
  654. "node_modules/@esbuild/openbsd-x64": {
  655. "version": "0.27.3",
  656. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
  657. "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
  658. "cpu": [
  659. "x64"
  660. ],
  661. "dev": true,
  662. "license": "MIT",
  663. "optional": true,
  664. "os": [
  665. "openbsd"
  666. ],
  667. "engines": {
  668. "node": ">=18"
  669. }
  670. },
  671. "node_modules/@esbuild/openharmony-arm64": {
  672. "version": "0.27.3",
  673. "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
  674. "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
  675. "cpu": [
  676. "arm64"
  677. ],
  678. "dev": true,
  679. "license": "MIT",
  680. "optional": true,
  681. "os": [
  682. "openharmony"
  683. ],
  684. "engines": {
  685. "node": ">=18"
  686. }
  687. },
  688. "node_modules/@esbuild/sunos-x64": {
  689. "version": "0.27.3",
  690. "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
  691. "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
  692. "cpu": [
  693. "x64"
  694. ],
  695. "dev": true,
  696. "license": "MIT",
  697. "optional": true,
  698. "os": [
  699. "sunos"
  700. ],
  701. "engines": {
  702. "node": ">=18"
  703. }
  704. },
  705. "node_modules/@esbuild/win32-arm64": {
  706. "version": "0.27.3",
  707. "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
  708. "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
  709. "cpu": [
  710. "arm64"
  711. ],
  712. "dev": true,
  713. "license": "MIT",
  714. "optional": true,
  715. "os": [
  716. "win32"
  717. ],
  718. "engines": {
  719. "node": ">=18"
  720. }
  721. },
  722. "node_modules/@esbuild/win32-ia32": {
  723. "version": "0.27.3",
  724. "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
  725. "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
  726. "cpu": [
  727. "ia32"
  728. ],
  729. "dev": true,
  730. "license": "MIT",
  731. "optional": true,
  732. "os": [
  733. "win32"
  734. ],
  735. "engines": {
  736. "node": ">=18"
  737. }
  738. },
  739. "node_modules/@esbuild/win32-x64": {
  740. "version": "0.27.3",
  741. "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
  742. "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
  743. "cpu": [
  744. "x64"
  745. ],
  746. "dev": true,
  747. "license": "MIT",
  748. "optional": true,
  749. "os": [
  750. "win32"
  751. ],
  752. "engines": {
  753. "node": ">=18"
  754. }
  755. },
  756. "node_modules/@jridgewell/gen-mapping": {
  757. "version": "0.3.13",
  758. "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
  759. "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
  760. "devOptional": true,
  761. "license": "MIT",
  762. "dependencies": {
  763. "@jridgewell/sourcemap-codec": "^1.5.0",
  764. "@jridgewell/trace-mapping": "^0.3.24"
  765. }
  766. },
  767. "node_modules/@jridgewell/remapping": {
  768. "version": "2.3.5",
  769. "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
  770. "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
  771. "devOptional": true,
  772. "license": "MIT",
  773. "dependencies": {
  774. "@jridgewell/gen-mapping": "^0.3.5",
  775. "@jridgewell/trace-mapping": "^0.3.24"
  776. }
  777. },
  778. "node_modules/@jridgewell/resolve-uri": {
  779. "version": "3.1.2",
  780. "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  781. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  782. "devOptional": true,
  783. "license": "MIT",
  784. "engines": {
  785. "node": ">=6.0.0"
  786. }
  787. },
  788. "node_modules/@jridgewell/sourcemap-codec": {
  789. "version": "1.5.5",
  790. "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  791. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  792. "devOptional": true,
  793. "license": "MIT"
  794. },
  795. "node_modules/@jridgewell/trace-mapping": {
  796. "version": "0.3.31",
  797. "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
  798. "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
  799. "devOptional": true,
  800. "license": "MIT",
  801. "dependencies": {
  802. "@jridgewell/resolve-uri": "^3.1.0",
  803. "@jridgewell/sourcemap-codec": "^1.4.14"
  804. }
  805. },
  806. "node_modules/@rolldown/pluginutils": {
  807. "version": "1.0.0-rc.3",
  808. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz",
  809. "integrity": "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==",
  810. "dev": true,
  811. "license": "MIT"
  812. },
  813. "node_modules/@rollup/rollup-android-arm-eabi": {
  814. "version": "4.59.0",
  815. "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz",
  816. "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==",
  817. "cpu": [
  818. "arm"
  819. ],
  820. "dev": true,
  821. "license": "MIT",
  822. "optional": true,
  823. "os": [
  824. "android"
  825. ]
  826. },
  827. "node_modules/@rollup/rollup-android-arm64": {
  828. "version": "4.59.0",
  829. "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz",
  830. "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==",
  831. "cpu": [
  832. "arm64"
  833. ],
  834. "dev": true,
  835. "license": "MIT",
  836. "optional": true,
  837. "os": [
  838. "android"
  839. ]
  840. },
  841. "node_modules/@rollup/rollup-darwin-arm64": {
  842. "version": "4.59.0",
  843. "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz",
  844. "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==",
  845. "cpu": [
  846. "arm64"
  847. ],
  848. "dev": true,
  849. "license": "MIT",
  850. "optional": true,
  851. "os": [
  852. "darwin"
  853. ]
  854. },
  855. "node_modules/@rollup/rollup-darwin-x64": {
  856. "version": "4.59.0",
  857. "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz",
  858. "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==",
  859. "cpu": [
  860. "x64"
  861. ],
  862. "dev": true,
  863. "license": "MIT",
  864. "optional": true,
  865. "os": [
  866. "darwin"
  867. ]
  868. },
  869. "node_modules/@rollup/rollup-freebsd-arm64": {
  870. "version": "4.59.0",
  871. "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz",
  872. "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==",
  873. "cpu": [
  874. "arm64"
  875. ],
  876. "dev": true,
  877. "license": "MIT",
  878. "optional": true,
  879. "os": [
  880. "freebsd"
  881. ]
  882. },
  883. "node_modules/@rollup/rollup-freebsd-x64": {
  884. "version": "4.59.0",
  885. "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz",
  886. "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==",
  887. "cpu": [
  888. "x64"
  889. ],
  890. "dev": true,
  891. "license": "MIT",
  892. "optional": true,
  893. "os": [
  894. "freebsd"
  895. ]
  896. },
  897. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  898. "version": "4.59.0",
  899. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz",
  900. "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==",
  901. "cpu": [
  902. "arm"
  903. ],
  904. "dev": true,
  905. "license": "MIT",
  906. "optional": true,
  907. "os": [
  908. "linux"
  909. ]
  910. },
  911. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  912. "version": "4.59.0",
  913. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz",
  914. "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==",
  915. "cpu": [
  916. "arm"
  917. ],
  918. "dev": true,
  919. "license": "MIT",
  920. "optional": true,
  921. "os": [
  922. "linux"
  923. ]
  924. },
  925. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  926. "version": "4.59.0",
  927. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz",
  928. "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==",
  929. "cpu": [
  930. "arm64"
  931. ],
  932. "dev": true,
  933. "license": "MIT",
  934. "optional": true,
  935. "os": [
  936. "linux"
  937. ]
  938. },
  939. "node_modules/@rollup/rollup-linux-arm64-musl": {
  940. "version": "4.59.0",
  941. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz",
  942. "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==",
  943. "cpu": [
  944. "arm64"
  945. ],
  946. "dev": true,
  947. "license": "MIT",
  948. "optional": true,
  949. "os": [
  950. "linux"
  951. ]
  952. },
  953. "node_modules/@rollup/rollup-linux-loong64-gnu": {
  954. "version": "4.59.0",
  955. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz",
  956. "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==",
  957. "cpu": [
  958. "loong64"
  959. ],
  960. "dev": true,
  961. "license": "MIT",
  962. "optional": true,
  963. "os": [
  964. "linux"
  965. ]
  966. },
  967. "node_modules/@rollup/rollup-linux-loong64-musl": {
  968. "version": "4.59.0",
  969. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz",
  970. "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==",
  971. "cpu": [
  972. "loong64"
  973. ],
  974. "dev": true,
  975. "license": "MIT",
  976. "optional": true,
  977. "os": [
  978. "linux"
  979. ]
  980. },
  981. "node_modules/@rollup/rollup-linux-ppc64-gnu": {
  982. "version": "4.59.0",
  983. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz",
  984. "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==",
  985. "cpu": [
  986. "ppc64"
  987. ],
  988. "dev": true,
  989. "license": "MIT",
  990. "optional": true,
  991. "os": [
  992. "linux"
  993. ]
  994. },
  995. "node_modules/@rollup/rollup-linux-ppc64-musl": {
  996. "version": "4.59.0",
  997. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz",
  998. "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==",
  999. "cpu": [
  1000. "ppc64"
  1001. ],
  1002. "dev": true,
  1003. "license": "MIT",
  1004. "optional": true,
  1005. "os": [
  1006. "linux"
  1007. ]
  1008. },
  1009. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  1010. "version": "4.59.0",
  1011. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz",
  1012. "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==",
  1013. "cpu": [
  1014. "riscv64"
  1015. ],
  1016. "dev": true,
  1017. "license": "MIT",
  1018. "optional": true,
  1019. "os": [
  1020. "linux"
  1021. ]
  1022. },
  1023. "node_modules/@rollup/rollup-linux-riscv64-musl": {
  1024. "version": "4.59.0",
  1025. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz",
  1026. "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==",
  1027. "cpu": [
  1028. "riscv64"
  1029. ],
  1030. "dev": true,
  1031. "license": "MIT",
  1032. "optional": true,
  1033. "os": [
  1034. "linux"
  1035. ]
  1036. },
  1037. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  1038. "version": "4.59.0",
  1039. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz",
  1040. "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==",
  1041. "cpu": [
  1042. "s390x"
  1043. ],
  1044. "dev": true,
  1045. "license": "MIT",
  1046. "optional": true,
  1047. "os": [
  1048. "linux"
  1049. ]
  1050. },
  1051. "node_modules/@rollup/rollup-linux-x64-gnu": {
  1052. "version": "4.59.0",
  1053. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz",
  1054. "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==",
  1055. "cpu": [
  1056. "x64"
  1057. ],
  1058. "dev": true,
  1059. "license": "MIT",
  1060. "optional": true,
  1061. "os": [
  1062. "linux"
  1063. ]
  1064. },
  1065. "node_modules/@rollup/rollup-linux-x64-musl": {
  1066. "version": "4.59.0",
  1067. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz",
  1068. "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==",
  1069. "cpu": [
  1070. "x64"
  1071. ],
  1072. "dev": true,
  1073. "license": "MIT",
  1074. "optional": true,
  1075. "os": [
  1076. "linux"
  1077. ]
  1078. },
  1079. "node_modules/@rollup/rollup-openbsd-x64": {
  1080. "version": "4.59.0",
  1081. "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz",
  1082. "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==",
  1083. "cpu": [
  1084. "x64"
  1085. ],
  1086. "dev": true,
  1087. "license": "MIT",
  1088. "optional": true,
  1089. "os": [
  1090. "openbsd"
  1091. ]
  1092. },
  1093. "node_modules/@rollup/rollup-openharmony-arm64": {
  1094. "version": "4.59.0",
  1095. "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz",
  1096. "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==",
  1097. "cpu": [
  1098. "arm64"
  1099. ],
  1100. "dev": true,
  1101. "license": "MIT",
  1102. "optional": true,
  1103. "os": [
  1104. "openharmony"
  1105. ]
  1106. },
  1107. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  1108. "version": "4.59.0",
  1109. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz",
  1110. "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==",
  1111. "cpu": [
  1112. "arm64"
  1113. ],
  1114. "dev": true,
  1115. "license": "MIT",
  1116. "optional": true,
  1117. "os": [
  1118. "win32"
  1119. ]
  1120. },
  1121. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  1122. "version": "4.59.0",
  1123. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz",
  1124. "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==",
  1125. "cpu": [
  1126. "ia32"
  1127. ],
  1128. "dev": true,
  1129. "license": "MIT",
  1130. "optional": true,
  1131. "os": [
  1132. "win32"
  1133. ]
  1134. },
  1135. "node_modules/@rollup/rollup-win32-x64-gnu": {
  1136. "version": "4.59.0",
  1137. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz",
  1138. "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==",
  1139. "cpu": [
  1140. "x64"
  1141. ],
  1142. "dev": true,
  1143. "license": "MIT",
  1144. "optional": true,
  1145. "os": [
  1146. "win32"
  1147. ]
  1148. },
  1149. "node_modules/@rollup/rollup-win32-x64-msvc": {
  1150. "version": "4.59.0",
  1151. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz",
  1152. "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==",
  1153. "cpu": [
  1154. "x64"
  1155. ],
  1156. "dev": true,
  1157. "license": "MIT",
  1158. "optional": true,
  1159. "os": [
  1160. "win32"
  1161. ]
  1162. },
  1163. "node_modules/@tailwindcss/node": {
  1164. "version": "4.2.1",
  1165. "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.1.tgz",
  1166. "integrity": "sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==",
  1167. "dev": true,
  1168. "license": "MIT",
  1169. "dependencies": {
  1170. "@jridgewell/remapping": "^2.3.5",
  1171. "enhanced-resolve": "^5.19.0",
  1172. "jiti": "^2.6.1",
  1173. "lightningcss": "1.31.1",
  1174. "magic-string": "^0.30.21",
  1175. "source-map-js": "^1.2.1",
  1176. "tailwindcss": "4.2.1"
  1177. }
  1178. },
  1179. "node_modules/@tailwindcss/oxide": {
  1180. "version": "4.2.1",
  1181. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.1.tgz",
  1182. "integrity": "sha512-yv9jeEFWnjKCI6/T3Oq50yQEOqmpmpfzG1hcZsAOaXFQPfzWprWrlHSdGPEF3WQTi8zu8ohC9Mh9J470nT5pUw==",
  1183. "dev": true,
  1184. "license": "MIT",
  1185. "engines": {
  1186. "node": ">= 20"
  1187. },
  1188. "optionalDependencies": {
  1189. "@tailwindcss/oxide-android-arm64": "4.2.1",
  1190. "@tailwindcss/oxide-darwin-arm64": "4.2.1",
  1191. "@tailwindcss/oxide-darwin-x64": "4.2.1",
  1192. "@tailwindcss/oxide-freebsd-x64": "4.2.1",
  1193. "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.1",
  1194. "@tailwindcss/oxide-linux-arm64-gnu": "4.2.1",
  1195. "@tailwindcss/oxide-linux-arm64-musl": "4.2.1",
  1196. "@tailwindcss/oxide-linux-x64-gnu": "4.2.1",
  1197. "@tailwindcss/oxide-linux-x64-musl": "4.2.1",
  1198. "@tailwindcss/oxide-wasm32-wasi": "4.2.1",
  1199. "@tailwindcss/oxide-win32-arm64-msvc": "4.2.1",
  1200. "@tailwindcss/oxide-win32-x64-msvc": "4.2.1"
  1201. }
  1202. },
  1203. "node_modules/@tailwindcss/oxide-android-arm64": {
  1204. "version": "4.2.1",
  1205. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.1.tgz",
  1206. "integrity": "sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==",
  1207. "cpu": [
  1208. "arm64"
  1209. ],
  1210. "dev": true,
  1211. "license": "MIT",
  1212. "optional": true,
  1213. "os": [
  1214. "android"
  1215. ],
  1216. "engines": {
  1217. "node": ">= 20"
  1218. }
  1219. },
  1220. "node_modules/@tailwindcss/oxide-darwin-arm64": {
  1221. "version": "4.2.1",
  1222. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.1.tgz",
  1223. "integrity": "sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==",
  1224. "cpu": [
  1225. "arm64"
  1226. ],
  1227. "dev": true,
  1228. "license": "MIT",
  1229. "optional": true,
  1230. "os": [
  1231. "darwin"
  1232. ],
  1233. "engines": {
  1234. "node": ">= 20"
  1235. }
  1236. },
  1237. "node_modules/@tailwindcss/oxide-darwin-x64": {
  1238. "version": "4.2.1",
  1239. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.1.tgz",
  1240. "integrity": "sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==",
  1241. "cpu": [
  1242. "x64"
  1243. ],
  1244. "dev": true,
  1245. "license": "MIT",
  1246. "optional": true,
  1247. "os": [
  1248. "darwin"
  1249. ],
  1250. "engines": {
  1251. "node": ">= 20"
  1252. }
  1253. },
  1254. "node_modules/@tailwindcss/oxide-freebsd-x64": {
  1255. "version": "4.2.1",
  1256. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.1.tgz",
  1257. "integrity": "sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==",
  1258. "cpu": [
  1259. "x64"
  1260. ],
  1261. "dev": true,
  1262. "license": "MIT",
  1263. "optional": true,
  1264. "os": [
  1265. "freebsd"
  1266. ],
  1267. "engines": {
  1268. "node": ">= 20"
  1269. }
  1270. },
  1271. "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
  1272. "version": "4.2.1",
  1273. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.1.tgz",
  1274. "integrity": "sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==",
  1275. "cpu": [
  1276. "arm"
  1277. ],
  1278. "dev": true,
  1279. "license": "MIT",
  1280. "optional": true,
  1281. "os": [
  1282. "linux"
  1283. ],
  1284. "engines": {
  1285. "node": ">= 20"
  1286. }
  1287. },
  1288. "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
  1289. "version": "4.2.1",
  1290. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.1.tgz",
  1291. "integrity": "sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==",
  1292. "cpu": [
  1293. "arm64"
  1294. ],
  1295. "dev": true,
  1296. "license": "MIT",
  1297. "optional": true,
  1298. "os": [
  1299. "linux"
  1300. ],
  1301. "engines": {
  1302. "node": ">= 20"
  1303. }
  1304. },
  1305. "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
  1306. "version": "4.2.1",
  1307. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.1.tgz",
  1308. "integrity": "sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==",
  1309. "cpu": [
  1310. "arm64"
  1311. ],
  1312. "dev": true,
  1313. "license": "MIT",
  1314. "optional": true,
  1315. "os": [
  1316. "linux"
  1317. ],
  1318. "engines": {
  1319. "node": ">= 20"
  1320. }
  1321. },
  1322. "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
  1323. "version": "4.2.1",
  1324. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.1.tgz",
  1325. "integrity": "sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==",
  1326. "cpu": [
  1327. "x64"
  1328. ],
  1329. "dev": true,
  1330. "license": "MIT",
  1331. "optional": true,
  1332. "os": [
  1333. "linux"
  1334. ],
  1335. "engines": {
  1336. "node": ">= 20"
  1337. }
  1338. },
  1339. "node_modules/@tailwindcss/oxide-linux-x64-musl": {
  1340. "version": "4.2.1",
  1341. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.1.tgz",
  1342. "integrity": "sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==",
  1343. "cpu": [
  1344. "x64"
  1345. ],
  1346. "dev": true,
  1347. "license": "MIT",
  1348. "optional": true,
  1349. "os": [
  1350. "linux"
  1351. ],
  1352. "engines": {
  1353. "node": ">= 20"
  1354. }
  1355. },
  1356. "node_modules/@tailwindcss/oxide-wasm32-wasi": {
  1357. "version": "4.2.1",
  1358. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.1.tgz",
  1359. "integrity": "sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==",
  1360. "bundleDependencies": [
  1361. "@napi-rs/wasm-runtime",
  1362. "@emnapi/core",
  1363. "@emnapi/runtime",
  1364. "@tybys/wasm-util",
  1365. "@emnapi/wasi-threads",
  1366. "tslib"
  1367. ],
  1368. "cpu": [
  1369. "wasm32"
  1370. ],
  1371. "dev": true,
  1372. "license": "MIT",
  1373. "optional": true,
  1374. "dependencies": {
  1375. "@emnapi/core": "^1.8.1",
  1376. "@emnapi/runtime": "^1.8.1",
  1377. "@emnapi/wasi-threads": "^1.1.0",
  1378. "@napi-rs/wasm-runtime": "^1.1.1",
  1379. "@tybys/wasm-util": "^0.10.1",
  1380. "tslib": "^2.8.1"
  1381. },
  1382. "engines": {
  1383. "node": ">=14.0.0"
  1384. }
  1385. },
  1386. "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
  1387. "version": "4.2.1",
  1388. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.1.tgz",
  1389. "integrity": "sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==",
  1390. "cpu": [
  1391. "arm64"
  1392. ],
  1393. "dev": true,
  1394. "license": "MIT",
  1395. "optional": true,
  1396. "os": [
  1397. "win32"
  1398. ],
  1399. "engines": {
  1400. "node": ">= 20"
  1401. }
  1402. },
  1403. "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
  1404. "version": "4.2.1",
  1405. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.1.tgz",
  1406. "integrity": "sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==",
  1407. "cpu": [
  1408. "x64"
  1409. ],
  1410. "dev": true,
  1411. "license": "MIT",
  1412. "optional": true,
  1413. "os": [
  1414. "win32"
  1415. ],
  1416. "engines": {
  1417. "node": ">= 20"
  1418. }
  1419. },
  1420. "node_modules/@tailwindcss/vite": {
  1421. "version": "4.2.1",
  1422. "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.1.tgz",
  1423. "integrity": "sha512-TBf2sJjYeb28jD2U/OhwdW0bbOsxkWPwQ7SrqGf9sVcoYwZj7rkXljroBO9wKBut9XnmQLXanuDUeqQK0lGg/w==",
  1424. "dev": true,
  1425. "license": "MIT",
  1426. "dependencies": {
  1427. "@tailwindcss/node": "4.2.1",
  1428. "@tailwindcss/oxide": "4.2.1",
  1429. "tailwindcss": "4.2.1"
  1430. },
  1431. "peerDependencies": {
  1432. "vite": "^5.2.0 || ^6 || ^7"
  1433. }
  1434. },
  1435. "node_modules/@types/babel__core": {
  1436. "version": "7.20.5",
  1437. "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
  1438. "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
  1439. "dev": true,
  1440. "license": "MIT",
  1441. "dependencies": {
  1442. "@babel/parser": "^7.20.7",
  1443. "@babel/types": "^7.20.7",
  1444. "@types/babel__generator": "*",
  1445. "@types/babel__template": "*",
  1446. "@types/babel__traverse": "*"
  1447. }
  1448. },
  1449. "node_modules/@types/babel__generator": {
  1450. "version": "7.27.0",
  1451. "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
  1452. "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
  1453. "dev": true,
  1454. "license": "MIT",
  1455. "dependencies": {
  1456. "@babel/types": "^7.0.0"
  1457. }
  1458. },
  1459. "node_modules/@types/babel__template": {
  1460. "version": "7.4.4",
  1461. "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
  1462. "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
  1463. "dev": true,
  1464. "license": "MIT",
  1465. "dependencies": {
  1466. "@babel/parser": "^7.1.0",
  1467. "@babel/types": "^7.0.0"
  1468. }
  1469. },
  1470. "node_modules/@types/babel__traverse": {
  1471. "version": "7.28.0",
  1472. "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
  1473. "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
  1474. "dev": true,
  1475. "license": "MIT",
  1476. "dependencies": {
  1477. "@babel/types": "^7.28.2"
  1478. }
  1479. },
  1480. "node_modules/@types/crypto-js": {
  1481. "version": "4.2.2",
  1482. "resolved": "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.2.2.tgz",
  1483. "integrity": "sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==",
  1484. "dev": true,
  1485. "license": "MIT"
  1486. },
  1487. "node_modules/@types/estree": {
  1488. "version": "1.0.8",
  1489. "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
  1490. "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
  1491. "dev": true,
  1492. "license": "MIT"
  1493. },
  1494. "node_modules/@types/react": {
  1495. "version": "19.2.14",
  1496. "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
  1497. "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
  1498. "devOptional": true,
  1499. "license": "MIT",
  1500. "dependencies": {
  1501. "csstype": "^3.2.2"
  1502. }
  1503. },
  1504. "node_modules/@types/react-dom": {
  1505. "version": "19.2.3",
  1506. "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
  1507. "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
  1508. "dev": true,
  1509. "license": "MIT",
  1510. "peerDependencies": {
  1511. "@types/react": "^19.2.0"
  1512. }
  1513. },
  1514. "node_modules/@vitejs/plugin-react": {
  1515. "version": "5.1.4",
  1516. "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.4.tgz",
  1517. "integrity": "sha512-VIcFLdRi/VYRU8OL/puL7QXMYafHmqOnwTZY50U1JPlCNj30PxCMx65c494b1K9be9hX83KVt0+gTEwTWLqToA==",
  1518. "dev": true,
  1519. "license": "MIT",
  1520. "dependencies": {
  1521. "@babel/core": "^7.29.0",
  1522. "@babel/plugin-transform-react-jsx-self": "^7.27.1",
  1523. "@babel/plugin-transform-react-jsx-source": "^7.27.1",
  1524. "@rolldown/pluginutils": "1.0.0-rc.3",
  1525. "@types/babel__core": "^7.20.5",
  1526. "react-refresh": "^0.18.0"
  1527. },
  1528. "engines": {
  1529. "node": "^20.19.0 || >=22.12.0"
  1530. },
  1531. "peerDependencies": {
  1532. "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
  1533. }
  1534. },
  1535. "node_modules/asynckit": {
  1536. "version": "0.4.0",
  1537. "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
  1538. "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
  1539. "license": "MIT"
  1540. },
  1541. "node_modules/axios": {
  1542. "version": "1.13.6",
  1543. "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.6.tgz",
  1544. "integrity": "sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==",
  1545. "license": "MIT",
  1546. "dependencies": {
  1547. "follow-redirects": "^1.15.11",
  1548. "form-data": "^4.0.5",
  1549. "proxy-from-env": "^1.1.0"
  1550. }
  1551. },
  1552. "node_modules/baseline-browser-mapping": {
  1553. "version": "2.10.0",
  1554. "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz",
  1555. "integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==",
  1556. "devOptional": true,
  1557. "license": "Apache-2.0",
  1558. "bin": {
  1559. "baseline-browser-mapping": "dist/cli.cjs"
  1560. },
  1561. "engines": {
  1562. "node": ">=6.0.0"
  1563. }
  1564. },
  1565. "node_modules/browserslist": {
  1566. "version": "4.28.1",
  1567. "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
  1568. "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
  1569. "devOptional": true,
  1570. "funding": [
  1571. {
  1572. "type": "opencollective",
  1573. "url": "https://opencollective.com/browserslist"
  1574. },
  1575. {
  1576. "type": "tidelift",
  1577. "url": "https://tidelift.com/funding/github/npm/browserslist"
  1578. },
  1579. {
  1580. "type": "github",
  1581. "url": "https://github.com/sponsors/ai"
  1582. }
  1583. ],
  1584. "license": "MIT",
  1585. "dependencies": {
  1586. "baseline-browser-mapping": "^2.9.0",
  1587. "caniuse-lite": "^1.0.30001759",
  1588. "electron-to-chromium": "^1.5.263",
  1589. "node-releases": "^2.0.27",
  1590. "update-browserslist-db": "^1.2.0"
  1591. },
  1592. "bin": {
  1593. "browserslist": "cli.js"
  1594. },
  1595. "engines": {
  1596. "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
  1597. }
  1598. },
  1599. "node_modules/call-bind-apply-helpers": {
  1600. "version": "1.0.2",
  1601. "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1602. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1603. "license": "MIT",
  1604. "dependencies": {
  1605. "es-errors": "^1.3.0",
  1606. "function-bind": "^1.1.2"
  1607. },
  1608. "engines": {
  1609. "node": ">= 0.4"
  1610. }
  1611. },
  1612. "node_modules/caniuse-lite": {
  1613. "version": "1.0.30001777",
  1614. "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001777.tgz",
  1615. "integrity": "sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==",
  1616. "devOptional": true,
  1617. "funding": [
  1618. {
  1619. "type": "opencollective",
  1620. "url": "https://opencollective.com/browserslist"
  1621. },
  1622. {
  1623. "type": "tidelift",
  1624. "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
  1625. },
  1626. {
  1627. "type": "github",
  1628. "url": "https://github.com/sponsors/ai"
  1629. }
  1630. ],
  1631. "license": "CC-BY-4.0"
  1632. },
  1633. "node_modules/clsx": {
  1634. "version": "2.1.1",
  1635. "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
  1636. "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
  1637. "license": "MIT",
  1638. "engines": {
  1639. "node": ">=6"
  1640. }
  1641. },
  1642. "node_modules/combined-stream": {
  1643. "version": "1.0.8",
  1644. "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
  1645. "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
  1646. "license": "MIT",
  1647. "dependencies": {
  1648. "delayed-stream": "~1.0.0"
  1649. },
  1650. "engines": {
  1651. "node": ">= 0.8"
  1652. }
  1653. },
  1654. "node_modules/convert-source-map": {
  1655. "version": "2.0.0",
  1656. "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
  1657. "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
  1658. "devOptional": true,
  1659. "license": "MIT"
  1660. },
  1661. "node_modules/crypto-js": {
  1662. "version": "4.2.0",
  1663. "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz",
  1664. "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==",
  1665. "license": "MIT"
  1666. },
  1667. "node_modules/csstype": {
  1668. "version": "3.2.3",
  1669. "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
  1670. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  1671. "devOptional": true,
  1672. "license": "MIT"
  1673. },
  1674. "node_modules/debug": {
  1675. "version": "4.4.3",
  1676. "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
  1677. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  1678. "devOptional": true,
  1679. "license": "MIT",
  1680. "dependencies": {
  1681. "ms": "^2.1.3"
  1682. },
  1683. "engines": {
  1684. "node": ">=6.0"
  1685. },
  1686. "peerDependenciesMeta": {
  1687. "supports-color": {
  1688. "optional": true
  1689. }
  1690. }
  1691. },
  1692. "node_modules/delayed-stream": {
  1693. "version": "1.0.0",
  1694. "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
  1695. "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
  1696. "license": "MIT",
  1697. "engines": {
  1698. "node": ">=0.4.0"
  1699. }
  1700. },
  1701. "node_modules/detect-libc": {
  1702. "version": "2.1.2",
  1703. "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
  1704. "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
  1705. "dev": true,
  1706. "license": "Apache-2.0",
  1707. "engines": {
  1708. "node": ">=8"
  1709. }
  1710. },
  1711. "node_modules/dunder-proto": {
  1712. "version": "1.0.1",
  1713. "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
  1714. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  1715. "license": "MIT",
  1716. "dependencies": {
  1717. "call-bind-apply-helpers": "^1.0.1",
  1718. "es-errors": "^1.3.0",
  1719. "gopd": "^1.2.0"
  1720. },
  1721. "engines": {
  1722. "node": ">= 0.4"
  1723. }
  1724. },
  1725. "node_modules/electron-to-chromium": {
  1726. "version": "1.5.307",
  1727. "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.307.tgz",
  1728. "integrity": "sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==",
  1729. "devOptional": true,
  1730. "license": "ISC"
  1731. },
  1732. "node_modules/enhanced-resolve": {
  1733. "version": "5.20.0",
  1734. "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.0.tgz",
  1735. "integrity": "sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==",
  1736. "dev": true,
  1737. "license": "MIT",
  1738. "dependencies": {
  1739. "graceful-fs": "^4.2.4",
  1740. "tapable": "^2.3.0"
  1741. },
  1742. "engines": {
  1743. "node": ">=10.13.0"
  1744. }
  1745. },
  1746. "node_modules/es-define-property": {
  1747. "version": "1.0.1",
  1748. "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
  1749. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  1750. "license": "MIT",
  1751. "engines": {
  1752. "node": ">= 0.4"
  1753. }
  1754. },
  1755. "node_modules/es-errors": {
  1756. "version": "1.3.0",
  1757. "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
  1758. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  1759. "license": "MIT",
  1760. "engines": {
  1761. "node": ">= 0.4"
  1762. }
  1763. },
  1764. "node_modules/es-object-atoms": {
  1765. "version": "1.1.1",
  1766. "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  1767. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  1768. "license": "MIT",
  1769. "dependencies": {
  1770. "es-errors": "^1.3.0"
  1771. },
  1772. "engines": {
  1773. "node": ">= 0.4"
  1774. }
  1775. },
  1776. "node_modules/es-set-tostringtag": {
  1777. "version": "2.1.0",
  1778. "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
  1779. "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
  1780. "license": "MIT",
  1781. "dependencies": {
  1782. "es-errors": "^1.3.0",
  1783. "get-intrinsic": "^1.2.6",
  1784. "has-tostringtag": "^1.0.2",
  1785. "hasown": "^2.0.2"
  1786. },
  1787. "engines": {
  1788. "node": ">= 0.4"
  1789. }
  1790. },
  1791. "node_modules/esbuild": {
  1792. "version": "0.27.3",
  1793. "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz",
  1794. "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==",
  1795. "dev": true,
  1796. "hasInstallScript": true,
  1797. "license": "MIT",
  1798. "bin": {
  1799. "esbuild": "bin/esbuild"
  1800. },
  1801. "engines": {
  1802. "node": ">=18"
  1803. },
  1804. "optionalDependencies": {
  1805. "@esbuild/aix-ppc64": "0.27.3",
  1806. "@esbuild/android-arm": "0.27.3",
  1807. "@esbuild/android-arm64": "0.27.3",
  1808. "@esbuild/android-x64": "0.27.3",
  1809. "@esbuild/darwin-arm64": "0.27.3",
  1810. "@esbuild/darwin-x64": "0.27.3",
  1811. "@esbuild/freebsd-arm64": "0.27.3",
  1812. "@esbuild/freebsd-x64": "0.27.3",
  1813. "@esbuild/linux-arm": "0.27.3",
  1814. "@esbuild/linux-arm64": "0.27.3",
  1815. "@esbuild/linux-ia32": "0.27.3",
  1816. "@esbuild/linux-loong64": "0.27.3",
  1817. "@esbuild/linux-mips64el": "0.27.3",
  1818. "@esbuild/linux-ppc64": "0.27.3",
  1819. "@esbuild/linux-riscv64": "0.27.3",
  1820. "@esbuild/linux-s390x": "0.27.3",
  1821. "@esbuild/linux-x64": "0.27.3",
  1822. "@esbuild/netbsd-arm64": "0.27.3",
  1823. "@esbuild/netbsd-x64": "0.27.3",
  1824. "@esbuild/openbsd-arm64": "0.27.3",
  1825. "@esbuild/openbsd-x64": "0.27.3",
  1826. "@esbuild/openharmony-arm64": "0.27.3",
  1827. "@esbuild/sunos-x64": "0.27.3",
  1828. "@esbuild/win32-arm64": "0.27.3",
  1829. "@esbuild/win32-ia32": "0.27.3",
  1830. "@esbuild/win32-x64": "0.27.3"
  1831. }
  1832. },
  1833. "node_modules/escalade": {
  1834. "version": "3.2.0",
  1835. "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
  1836. "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
  1837. "devOptional": true,
  1838. "license": "MIT",
  1839. "engines": {
  1840. "node": ">=6"
  1841. }
  1842. },
  1843. "node_modules/fdir": {
  1844. "version": "6.5.0",
  1845. "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
  1846. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  1847. "dev": true,
  1848. "license": "MIT",
  1849. "engines": {
  1850. "node": ">=12.0.0"
  1851. },
  1852. "peerDependencies": {
  1853. "picomatch": "^3 || ^4"
  1854. },
  1855. "peerDependenciesMeta": {
  1856. "picomatch": {
  1857. "optional": true
  1858. }
  1859. }
  1860. },
  1861. "node_modules/follow-redirects": {
  1862. "version": "1.15.11",
  1863. "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
  1864. "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
  1865. "funding": [
  1866. {
  1867. "type": "individual",
  1868. "url": "https://github.com/sponsors/RubenVerborgh"
  1869. }
  1870. ],
  1871. "license": "MIT",
  1872. "engines": {
  1873. "node": ">=4.0"
  1874. },
  1875. "peerDependenciesMeta": {
  1876. "debug": {
  1877. "optional": true
  1878. }
  1879. }
  1880. },
  1881. "node_modules/form-data": {
  1882. "version": "4.0.5",
  1883. "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
  1884. "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
  1885. "license": "MIT",
  1886. "dependencies": {
  1887. "asynckit": "^0.4.0",
  1888. "combined-stream": "^1.0.8",
  1889. "es-set-tostringtag": "^2.1.0",
  1890. "hasown": "^2.0.2",
  1891. "mime-types": "^2.1.12"
  1892. },
  1893. "engines": {
  1894. "node": ">= 6"
  1895. }
  1896. },
  1897. "node_modules/fsevents": {
  1898. "version": "2.3.3",
  1899. "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  1900. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  1901. "dev": true,
  1902. "hasInstallScript": true,
  1903. "license": "MIT",
  1904. "optional": true,
  1905. "os": [
  1906. "darwin"
  1907. ],
  1908. "engines": {
  1909. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1910. }
  1911. },
  1912. "node_modules/function-bind": {
  1913. "version": "1.1.2",
  1914. "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
  1915. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1916. "license": "MIT",
  1917. "funding": {
  1918. "url": "https://github.com/sponsors/ljharb"
  1919. }
  1920. },
  1921. "node_modules/gensync": {
  1922. "version": "1.0.0-beta.2",
  1923. "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
  1924. "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
  1925. "devOptional": true,
  1926. "license": "MIT",
  1927. "engines": {
  1928. "node": ">=6.9.0"
  1929. }
  1930. },
  1931. "node_modules/get-intrinsic": {
  1932. "version": "1.3.0",
  1933. "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1934. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1935. "license": "MIT",
  1936. "dependencies": {
  1937. "call-bind-apply-helpers": "^1.0.2",
  1938. "es-define-property": "^1.0.1",
  1939. "es-errors": "^1.3.0",
  1940. "es-object-atoms": "^1.1.1",
  1941. "function-bind": "^1.1.2",
  1942. "get-proto": "^1.0.1",
  1943. "gopd": "^1.2.0",
  1944. "has-symbols": "^1.1.0",
  1945. "hasown": "^2.0.2",
  1946. "math-intrinsics": "^1.1.0"
  1947. },
  1948. "engines": {
  1949. "node": ">= 0.4"
  1950. },
  1951. "funding": {
  1952. "url": "https://github.com/sponsors/ljharb"
  1953. }
  1954. },
  1955. "node_modules/get-proto": {
  1956. "version": "1.0.1",
  1957. "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
  1958. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1959. "license": "MIT",
  1960. "dependencies": {
  1961. "dunder-proto": "^1.0.1",
  1962. "es-object-atoms": "^1.0.0"
  1963. },
  1964. "engines": {
  1965. "node": ">= 0.4"
  1966. }
  1967. },
  1968. "node_modules/gopd": {
  1969. "version": "1.2.0",
  1970. "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
  1971. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1972. "license": "MIT",
  1973. "engines": {
  1974. "node": ">= 0.4"
  1975. },
  1976. "funding": {
  1977. "url": "https://github.com/sponsors/ljharb"
  1978. }
  1979. },
  1980. "node_modules/graceful-fs": {
  1981. "version": "4.2.11",
  1982. "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
  1983. "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
  1984. "dev": true,
  1985. "license": "ISC"
  1986. },
  1987. "node_modules/has-symbols": {
  1988. "version": "1.1.0",
  1989. "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
  1990. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1991. "license": "MIT",
  1992. "engines": {
  1993. "node": ">= 0.4"
  1994. },
  1995. "funding": {
  1996. "url": "https://github.com/sponsors/ljharb"
  1997. }
  1998. },
  1999. "node_modules/has-tostringtag": {
  2000. "version": "1.0.2",
  2001. "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
  2002. "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
  2003. "license": "MIT",
  2004. "dependencies": {
  2005. "has-symbols": "^1.0.3"
  2006. },
  2007. "engines": {
  2008. "node": ">= 0.4"
  2009. },
  2010. "funding": {
  2011. "url": "https://github.com/sponsors/ljharb"
  2012. }
  2013. },
  2014. "node_modules/hasown": {
  2015. "version": "2.0.2",
  2016. "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
  2017. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  2018. "license": "MIT",
  2019. "dependencies": {
  2020. "function-bind": "^1.1.2"
  2021. },
  2022. "engines": {
  2023. "node": ">= 0.4"
  2024. }
  2025. },
  2026. "node_modules/jiti": {
  2027. "version": "2.6.1",
  2028. "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
  2029. "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
  2030. "dev": true,
  2031. "license": "MIT",
  2032. "bin": {
  2033. "jiti": "lib/jiti-cli.mjs"
  2034. }
  2035. },
  2036. "node_modules/jotai": {
  2037. "version": "2.18.1",
  2038. "resolved": "https://registry.npmjs.org/jotai/-/jotai-2.18.1.tgz",
  2039. "integrity": "sha512-e0NOzK+yRFwHo7DOp0DS0Ycq74KMEAObDWFGmfEL28PD9nLqBTt3/Ug7jf9ca72x0gC9LQZG9zH+0ISICmy3iA==",
  2040. "license": "MIT",
  2041. "engines": {
  2042. "node": ">=12.20.0"
  2043. },
  2044. "peerDependencies": {
  2045. "@babel/core": ">=7.0.0",
  2046. "@babel/template": ">=7.0.0",
  2047. "@types/react": ">=17.0.0",
  2048. "react": ">=17.0.0"
  2049. },
  2050. "peerDependenciesMeta": {
  2051. "@babel/core": {
  2052. "optional": true
  2053. },
  2054. "@babel/template": {
  2055. "optional": true
  2056. },
  2057. "@types/react": {
  2058. "optional": true
  2059. },
  2060. "react": {
  2061. "optional": true
  2062. }
  2063. }
  2064. },
  2065. "node_modules/js-tokens": {
  2066. "version": "4.0.0",
  2067. "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
  2068. "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
  2069. "license": "MIT"
  2070. },
  2071. "node_modules/jsesc": {
  2072. "version": "3.1.0",
  2073. "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
  2074. "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
  2075. "devOptional": true,
  2076. "license": "MIT",
  2077. "bin": {
  2078. "jsesc": "bin/jsesc"
  2079. },
  2080. "engines": {
  2081. "node": ">=6"
  2082. }
  2083. },
  2084. "node_modules/json5": {
  2085. "version": "2.2.3",
  2086. "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
  2087. "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
  2088. "devOptional": true,
  2089. "license": "MIT",
  2090. "bin": {
  2091. "json5": "lib/cli.js"
  2092. },
  2093. "engines": {
  2094. "node": ">=6"
  2095. }
  2096. },
  2097. "node_modules/lightningcss": {
  2098. "version": "1.31.1",
  2099. "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.31.1.tgz",
  2100. "integrity": "sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==",
  2101. "dev": true,
  2102. "license": "MPL-2.0",
  2103. "dependencies": {
  2104. "detect-libc": "^2.0.3"
  2105. },
  2106. "engines": {
  2107. "node": ">= 12.0.0"
  2108. },
  2109. "funding": {
  2110. "type": "opencollective",
  2111. "url": "https://opencollective.com/parcel"
  2112. },
  2113. "optionalDependencies": {
  2114. "lightningcss-android-arm64": "1.31.1",
  2115. "lightningcss-darwin-arm64": "1.31.1",
  2116. "lightningcss-darwin-x64": "1.31.1",
  2117. "lightningcss-freebsd-x64": "1.31.1",
  2118. "lightningcss-linux-arm-gnueabihf": "1.31.1",
  2119. "lightningcss-linux-arm64-gnu": "1.31.1",
  2120. "lightningcss-linux-arm64-musl": "1.31.1",
  2121. "lightningcss-linux-x64-gnu": "1.31.1",
  2122. "lightningcss-linux-x64-musl": "1.31.1",
  2123. "lightningcss-win32-arm64-msvc": "1.31.1",
  2124. "lightningcss-win32-x64-msvc": "1.31.1"
  2125. }
  2126. },
  2127. "node_modules/lightningcss-android-arm64": {
  2128. "version": "1.31.1",
  2129. "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.31.1.tgz",
  2130. "integrity": "sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==",
  2131. "cpu": [
  2132. "arm64"
  2133. ],
  2134. "dev": true,
  2135. "license": "MPL-2.0",
  2136. "optional": true,
  2137. "os": [
  2138. "android"
  2139. ],
  2140. "engines": {
  2141. "node": ">= 12.0.0"
  2142. },
  2143. "funding": {
  2144. "type": "opencollective",
  2145. "url": "https://opencollective.com/parcel"
  2146. }
  2147. },
  2148. "node_modules/lightningcss-darwin-arm64": {
  2149. "version": "1.31.1",
  2150. "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.31.1.tgz",
  2151. "integrity": "sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==",
  2152. "cpu": [
  2153. "arm64"
  2154. ],
  2155. "dev": true,
  2156. "license": "MPL-2.0",
  2157. "optional": true,
  2158. "os": [
  2159. "darwin"
  2160. ],
  2161. "engines": {
  2162. "node": ">= 12.0.0"
  2163. },
  2164. "funding": {
  2165. "type": "opencollective",
  2166. "url": "https://opencollective.com/parcel"
  2167. }
  2168. },
  2169. "node_modules/lightningcss-darwin-x64": {
  2170. "version": "1.31.1",
  2171. "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.31.1.tgz",
  2172. "integrity": "sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==",
  2173. "cpu": [
  2174. "x64"
  2175. ],
  2176. "dev": true,
  2177. "license": "MPL-2.0",
  2178. "optional": true,
  2179. "os": [
  2180. "darwin"
  2181. ],
  2182. "engines": {
  2183. "node": ">= 12.0.0"
  2184. },
  2185. "funding": {
  2186. "type": "opencollective",
  2187. "url": "https://opencollective.com/parcel"
  2188. }
  2189. },
  2190. "node_modules/lightningcss-freebsd-x64": {
  2191. "version": "1.31.1",
  2192. "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.31.1.tgz",
  2193. "integrity": "sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==",
  2194. "cpu": [
  2195. "x64"
  2196. ],
  2197. "dev": true,
  2198. "license": "MPL-2.0",
  2199. "optional": true,
  2200. "os": [
  2201. "freebsd"
  2202. ],
  2203. "engines": {
  2204. "node": ">= 12.0.0"
  2205. },
  2206. "funding": {
  2207. "type": "opencollective",
  2208. "url": "https://opencollective.com/parcel"
  2209. }
  2210. },
  2211. "node_modules/lightningcss-linux-arm-gnueabihf": {
  2212. "version": "1.31.1",
  2213. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.31.1.tgz",
  2214. "integrity": "sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==",
  2215. "cpu": [
  2216. "arm"
  2217. ],
  2218. "dev": true,
  2219. "license": "MPL-2.0",
  2220. "optional": true,
  2221. "os": [
  2222. "linux"
  2223. ],
  2224. "engines": {
  2225. "node": ">= 12.0.0"
  2226. },
  2227. "funding": {
  2228. "type": "opencollective",
  2229. "url": "https://opencollective.com/parcel"
  2230. }
  2231. },
  2232. "node_modules/lightningcss-linux-arm64-gnu": {
  2233. "version": "1.31.1",
  2234. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.31.1.tgz",
  2235. "integrity": "sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==",
  2236. "cpu": [
  2237. "arm64"
  2238. ],
  2239. "dev": true,
  2240. "license": "MPL-2.0",
  2241. "optional": true,
  2242. "os": [
  2243. "linux"
  2244. ],
  2245. "engines": {
  2246. "node": ">= 12.0.0"
  2247. },
  2248. "funding": {
  2249. "type": "opencollective",
  2250. "url": "https://opencollective.com/parcel"
  2251. }
  2252. },
  2253. "node_modules/lightningcss-linux-arm64-musl": {
  2254. "version": "1.31.1",
  2255. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.31.1.tgz",
  2256. "integrity": "sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==",
  2257. "cpu": [
  2258. "arm64"
  2259. ],
  2260. "dev": true,
  2261. "license": "MPL-2.0",
  2262. "optional": true,
  2263. "os": [
  2264. "linux"
  2265. ],
  2266. "engines": {
  2267. "node": ">= 12.0.0"
  2268. },
  2269. "funding": {
  2270. "type": "opencollective",
  2271. "url": "https://opencollective.com/parcel"
  2272. }
  2273. },
  2274. "node_modules/lightningcss-linux-x64-gnu": {
  2275. "version": "1.31.1",
  2276. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.31.1.tgz",
  2277. "integrity": "sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==",
  2278. "cpu": [
  2279. "x64"
  2280. ],
  2281. "dev": true,
  2282. "license": "MPL-2.0",
  2283. "optional": true,
  2284. "os": [
  2285. "linux"
  2286. ],
  2287. "engines": {
  2288. "node": ">= 12.0.0"
  2289. },
  2290. "funding": {
  2291. "type": "opencollective",
  2292. "url": "https://opencollective.com/parcel"
  2293. }
  2294. },
  2295. "node_modules/lightningcss-linux-x64-musl": {
  2296. "version": "1.31.1",
  2297. "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.31.1.tgz",
  2298. "integrity": "sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==",
  2299. "cpu": [
  2300. "x64"
  2301. ],
  2302. "dev": true,
  2303. "license": "MPL-2.0",
  2304. "optional": true,
  2305. "os": [
  2306. "linux"
  2307. ],
  2308. "engines": {
  2309. "node": ">= 12.0.0"
  2310. },
  2311. "funding": {
  2312. "type": "opencollective",
  2313. "url": "https://opencollective.com/parcel"
  2314. }
  2315. },
  2316. "node_modules/lightningcss-win32-arm64-msvc": {
  2317. "version": "1.31.1",
  2318. "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.31.1.tgz",
  2319. "integrity": "sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==",
  2320. "cpu": [
  2321. "arm64"
  2322. ],
  2323. "dev": true,
  2324. "license": "MPL-2.0",
  2325. "optional": true,
  2326. "os": [
  2327. "win32"
  2328. ],
  2329. "engines": {
  2330. "node": ">= 12.0.0"
  2331. },
  2332. "funding": {
  2333. "type": "opencollective",
  2334. "url": "https://opencollective.com/parcel"
  2335. }
  2336. },
  2337. "node_modules/lightningcss-win32-x64-msvc": {
  2338. "version": "1.31.1",
  2339. "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.31.1.tgz",
  2340. "integrity": "sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==",
  2341. "cpu": [
  2342. "x64"
  2343. ],
  2344. "dev": true,
  2345. "license": "MPL-2.0",
  2346. "optional": true,
  2347. "os": [
  2348. "win32"
  2349. ],
  2350. "engines": {
  2351. "node": ">= 12.0.0"
  2352. },
  2353. "funding": {
  2354. "type": "opencollective",
  2355. "url": "https://opencollective.com/parcel"
  2356. }
  2357. },
  2358. "node_modules/loose-envify": {
  2359. "version": "1.4.0",
  2360. "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
  2361. "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
  2362. "license": "MIT",
  2363. "dependencies": {
  2364. "js-tokens": "^3.0.0 || ^4.0.0"
  2365. },
  2366. "bin": {
  2367. "loose-envify": "cli.js"
  2368. }
  2369. },
  2370. "node_modules/lru-cache": {
  2371. "version": "5.1.1",
  2372. "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
  2373. "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
  2374. "devOptional": true,
  2375. "license": "ISC",
  2376. "dependencies": {
  2377. "yallist": "^3.0.2"
  2378. }
  2379. },
  2380. "node_modules/lucide-react": {
  2381. "version": "0.577.0",
  2382. "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.577.0.tgz",
  2383. "integrity": "sha512-4LjoFv2eEPwYDPg/CUdBJQSDfPyzXCRrVW1X7jrx/trgxnxkHFjnVZINbzvzxjN70dxychOfg+FTYwBiS3pQ5A==",
  2384. "license": "ISC",
  2385. "peerDependencies": {
  2386. "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
  2387. }
  2388. },
  2389. "node_modules/magic-string": {
  2390. "version": "0.30.21",
  2391. "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
  2392. "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
  2393. "dev": true,
  2394. "license": "MIT",
  2395. "dependencies": {
  2396. "@jridgewell/sourcemap-codec": "^1.5.5"
  2397. }
  2398. },
  2399. "node_modules/math-intrinsics": {
  2400. "version": "1.1.0",
  2401. "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  2402. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  2403. "license": "MIT",
  2404. "engines": {
  2405. "node": ">= 0.4"
  2406. }
  2407. },
  2408. "node_modules/mime-db": {
  2409. "version": "1.52.0",
  2410. "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
  2411. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  2412. "license": "MIT",
  2413. "engines": {
  2414. "node": ">= 0.6"
  2415. }
  2416. },
  2417. "node_modules/mime-types": {
  2418. "version": "2.1.35",
  2419. "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
  2420. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  2421. "license": "MIT",
  2422. "dependencies": {
  2423. "mime-db": "1.52.0"
  2424. },
  2425. "engines": {
  2426. "node": ">= 0.6"
  2427. }
  2428. },
  2429. "node_modules/ms": {
  2430. "version": "2.1.3",
  2431. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
  2432. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  2433. "devOptional": true,
  2434. "license": "MIT"
  2435. },
  2436. "node_modules/nanoid": {
  2437. "version": "3.3.11",
  2438. "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
  2439. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  2440. "dev": true,
  2441. "funding": [
  2442. {
  2443. "type": "github",
  2444. "url": "https://github.com/sponsors/ai"
  2445. }
  2446. ],
  2447. "license": "MIT",
  2448. "bin": {
  2449. "nanoid": "bin/nanoid.cjs"
  2450. },
  2451. "engines": {
  2452. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  2453. }
  2454. },
  2455. "node_modules/node-releases": {
  2456. "version": "2.0.36",
  2457. "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz",
  2458. "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
  2459. "devOptional": true,
  2460. "license": "MIT"
  2461. },
  2462. "node_modules/object-assign": {
  2463. "version": "4.1.1",
  2464. "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
  2465. "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
  2466. "license": "MIT",
  2467. "engines": {
  2468. "node": ">=0.10.0"
  2469. }
  2470. },
  2471. "node_modules/picocolors": {
  2472. "version": "1.1.1",
  2473. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  2474. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  2475. "devOptional": true,
  2476. "license": "ISC"
  2477. },
  2478. "node_modules/picomatch": {
  2479. "version": "4.0.3",
  2480. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
  2481. "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
  2482. "dev": true,
  2483. "license": "MIT",
  2484. "engines": {
  2485. "node": ">=12"
  2486. },
  2487. "funding": {
  2488. "url": "https://github.com/sponsors/jonschlinkert"
  2489. }
  2490. },
  2491. "node_modules/postcss": {
  2492. "version": "8.5.8",
  2493. "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
  2494. "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
  2495. "dev": true,
  2496. "funding": [
  2497. {
  2498. "type": "opencollective",
  2499. "url": "https://opencollective.com/postcss/"
  2500. },
  2501. {
  2502. "type": "tidelift",
  2503. "url": "https://tidelift.com/funding/github/npm/postcss"
  2504. },
  2505. {
  2506. "type": "github",
  2507. "url": "https://github.com/sponsors/ai"
  2508. }
  2509. ],
  2510. "license": "MIT",
  2511. "dependencies": {
  2512. "nanoid": "^3.3.11",
  2513. "picocolors": "^1.1.1",
  2514. "source-map-js": "^1.2.1"
  2515. },
  2516. "engines": {
  2517. "node": "^10 || ^12 || >=14"
  2518. }
  2519. },
  2520. "node_modules/prop-types": {
  2521. "version": "15.8.1",
  2522. "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
  2523. "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
  2524. "license": "MIT",
  2525. "dependencies": {
  2526. "loose-envify": "^1.4.0",
  2527. "object-assign": "^4.1.1",
  2528. "react-is": "^16.13.1"
  2529. }
  2530. },
  2531. "node_modules/proxy-from-env": {
  2532. "version": "1.1.0",
  2533. "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
  2534. "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
  2535. "license": "MIT"
  2536. },
  2537. "node_modules/react": {
  2538. "version": "19.2.4",
  2539. "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
  2540. "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
  2541. "license": "MIT",
  2542. "engines": {
  2543. "node": ">=0.10.0"
  2544. }
  2545. },
  2546. "node_modules/react-dom": {
  2547. "version": "19.2.4",
  2548. "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
  2549. "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
  2550. "license": "MIT",
  2551. "dependencies": {
  2552. "scheduler": "^0.27.0"
  2553. },
  2554. "peerDependencies": {
  2555. "react": "^19.2.4"
  2556. }
  2557. },
  2558. "node_modules/react-draggable": {
  2559. "version": "4.5.0",
  2560. "resolved": "https://registry.npmjs.org/react-draggable/-/react-draggable-4.5.0.tgz",
  2561. "integrity": "sha512-VC+HBLEZ0XJxnOxVAZsdRi8rD04Iz3SiiKOoYzamjylUcju/hP9np/aZdLHf/7WOD268WMoNJMvYfB5yAK45cw==",
  2562. "license": "MIT",
  2563. "dependencies": {
  2564. "clsx": "^2.1.1",
  2565. "prop-types": "^15.8.1"
  2566. },
  2567. "peerDependencies": {
  2568. "react": ">= 16.3.0",
  2569. "react-dom": ">= 16.3.0"
  2570. }
  2571. },
  2572. "node_modules/react-is": {
  2573. "version": "16.13.1",
  2574. "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
  2575. "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
  2576. "license": "MIT"
  2577. },
  2578. "node_modules/react-refresh": {
  2579. "version": "0.18.0",
  2580. "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz",
  2581. "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==",
  2582. "dev": true,
  2583. "license": "MIT",
  2584. "engines": {
  2585. "node": ">=0.10.0"
  2586. }
  2587. },
  2588. "node_modules/rollup": {
  2589. "version": "4.59.0",
  2590. "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz",
  2591. "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==",
  2592. "dev": true,
  2593. "license": "MIT",
  2594. "dependencies": {
  2595. "@types/estree": "1.0.8"
  2596. },
  2597. "bin": {
  2598. "rollup": "dist/bin/rollup"
  2599. },
  2600. "engines": {
  2601. "node": ">=18.0.0",
  2602. "npm": ">=8.0.0"
  2603. },
  2604. "optionalDependencies": {
  2605. "@rollup/rollup-android-arm-eabi": "4.59.0",
  2606. "@rollup/rollup-android-arm64": "4.59.0",
  2607. "@rollup/rollup-darwin-arm64": "4.59.0",
  2608. "@rollup/rollup-darwin-x64": "4.59.0",
  2609. "@rollup/rollup-freebsd-arm64": "4.59.0",
  2610. "@rollup/rollup-freebsd-x64": "4.59.0",
  2611. "@rollup/rollup-linux-arm-gnueabihf": "4.59.0",
  2612. "@rollup/rollup-linux-arm-musleabihf": "4.59.0",
  2613. "@rollup/rollup-linux-arm64-gnu": "4.59.0",
  2614. "@rollup/rollup-linux-arm64-musl": "4.59.0",
  2615. "@rollup/rollup-linux-loong64-gnu": "4.59.0",
  2616. "@rollup/rollup-linux-loong64-musl": "4.59.0",
  2617. "@rollup/rollup-linux-ppc64-gnu": "4.59.0",
  2618. "@rollup/rollup-linux-ppc64-musl": "4.59.0",
  2619. "@rollup/rollup-linux-riscv64-gnu": "4.59.0",
  2620. "@rollup/rollup-linux-riscv64-musl": "4.59.0",
  2621. "@rollup/rollup-linux-s390x-gnu": "4.59.0",
  2622. "@rollup/rollup-linux-x64-gnu": "4.59.0",
  2623. "@rollup/rollup-linux-x64-musl": "4.59.0",
  2624. "@rollup/rollup-openbsd-x64": "4.59.0",
  2625. "@rollup/rollup-openharmony-arm64": "4.59.0",
  2626. "@rollup/rollup-win32-arm64-msvc": "4.59.0",
  2627. "@rollup/rollup-win32-ia32-msvc": "4.59.0",
  2628. "@rollup/rollup-win32-x64-gnu": "4.59.0",
  2629. "@rollup/rollup-win32-x64-msvc": "4.59.0",
  2630. "fsevents": "~2.3.2"
  2631. }
  2632. },
  2633. "node_modules/scheduler": {
  2634. "version": "0.27.0",
  2635. "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
  2636. "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
  2637. "license": "MIT"
  2638. },
  2639. "node_modules/semver": {
  2640. "version": "6.3.1",
  2641. "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
  2642. "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
  2643. "devOptional": true,
  2644. "license": "ISC",
  2645. "bin": {
  2646. "semver": "bin/semver.js"
  2647. }
  2648. },
  2649. "node_modules/source-map-js": {
  2650. "version": "1.2.1",
  2651. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  2652. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  2653. "dev": true,
  2654. "license": "BSD-3-Clause",
  2655. "engines": {
  2656. "node": ">=0.10.0"
  2657. }
  2658. },
  2659. "node_modules/tailwind-merge": {
  2660. "version": "3.5.0",
  2661. "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.5.0.tgz",
  2662. "integrity": "sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==",
  2663. "license": "MIT",
  2664. "funding": {
  2665. "type": "github",
  2666. "url": "https://github.com/sponsors/dcastil"
  2667. }
  2668. },
  2669. "node_modules/tailwindcss": {
  2670. "version": "4.2.1",
  2671. "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.1.tgz",
  2672. "integrity": "sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==",
  2673. "dev": true,
  2674. "license": "MIT"
  2675. },
  2676. "node_modules/tapable": {
  2677. "version": "2.3.0",
  2678. "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
  2679. "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
  2680. "dev": true,
  2681. "license": "MIT",
  2682. "engines": {
  2683. "node": ">=6"
  2684. },
  2685. "funding": {
  2686. "type": "opencollective",
  2687. "url": "https://opencollective.com/webpack"
  2688. }
  2689. },
  2690. "node_modules/tinyglobby": {
  2691. "version": "0.2.15",
  2692. "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
  2693. "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
  2694. "dev": true,
  2695. "license": "MIT",
  2696. "dependencies": {
  2697. "fdir": "^6.5.0",
  2698. "picomatch": "^4.0.3"
  2699. },
  2700. "engines": {
  2701. "node": ">=12.0.0"
  2702. },
  2703. "funding": {
  2704. "url": "https://github.com/sponsors/SuperchupuDev"
  2705. }
  2706. },
  2707. "node_modules/typescript": {
  2708. "version": "5.9.3",
  2709. "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
  2710. "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
  2711. "dev": true,
  2712. "license": "Apache-2.0",
  2713. "bin": {
  2714. "tsc": "bin/tsc",
  2715. "tsserver": "bin/tsserver"
  2716. },
  2717. "engines": {
  2718. "node": ">=14.17"
  2719. }
  2720. },
  2721. "node_modules/update-browserslist-db": {
  2722. "version": "1.2.3",
  2723. "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
  2724. "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
  2725. "devOptional": true,
  2726. "funding": [
  2727. {
  2728. "type": "opencollective",
  2729. "url": "https://opencollective.com/browserslist"
  2730. },
  2731. {
  2732. "type": "tidelift",
  2733. "url": "https://tidelift.com/funding/github/npm/browserslist"
  2734. },
  2735. {
  2736. "type": "github",
  2737. "url": "https://github.com/sponsors/ai"
  2738. }
  2739. ],
  2740. "license": "MIT",
  2741. "dependencies": {
  2742. "escalade": "^3.2.0",
  2743. "picocolors": "^1.1.1"
  2744. },
  2745. "bin": {
  2746. "update-browserslist-db": "cli.js"
  2747. },
  2748. "peerDependencies": {
  2749. "browserslist": ">= 4.21.0"
  2750. }
  2751. },
  2752. "node_modules/vite": {
  2753. "version": "7.3.1",
  2754. "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
  2755. "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
  2756. "dev": true,
  2757. "license": "MIT",
  2758. "dependencies": {
  2759. "esbuild": "^0.27.0",
  2760. "fdir": "^6.5.0",
  2761. "picomatch": "^4.0.3",
  2762. "postcss": "^8.5.6",
  2763. "rollup": "^4.43.0",
  2764. "tinyglobby": "^0.2.15"
  2765. },
  2766. "bin": {
  2767. "vite": "bin/vite.js"
  2768. },
  2769. "engines": {
  2770. "node": "^20.19.0 || >=22.12.0"
  2771. },
  2772. "funding": {
  2773. "url": "https://github.com/vitejs/vite?sponsor=1"
  2774. },
  2775. "optionalDependencies": {
  2776. "fsevents": "~2.3.3"
  2777. },
  2778. "peerDependencies": {
  2779. "@types/node": "^20.19.0 || >=22.12.0",
  2780. "jiti": ">=1.21.0",
  2781. "less": "^4.0.0",
  2782. "lightningcss": "^1.21.0",
  2783. "sass": "^1.70.0",
  2784. "sass-embedded": "^1.70.0",
  2785. "stylus": ">=0.54.8",
  2786. "sugarss": "^5.0.0",
  2787. "terser": "^5.16.0",
  2788. "tsx": "^4.8.1",
  2789. "yaml": "^2.4.2"
  2790. },
  2791. "peerDependenciesMeta": {
  2792. "@types/node": {
  2793. "optional": true
  2794. },
  2795. "jiti": {
  2796. "optional": true
  2797. },
  2798. "less": {
  2799. "optional": true
  2800. },
  2801. "lightningcss": {
  2802. "optional": true
  2803. },
  2804. "sass": {
  2805. "optional": true
  2806. },
  2807. "sass-embedded": {
  2808. "optional": true
  2809. },
  2810. "stylus": {
  2811. "optional": true
  2812. },
  2813. "sugarss": {
  2814. "optional": true
  2815. },
  2816. "terser": {
  2817. "optional": true
  2818. },
  2819. "tsx": {
  2820. "optional": true
  2821. },
  2822. "yaml": {
  2823. "optional": true
  2824. }
  2825. }
  2826. },
  2827. "node_modules/yallist": {
  2828. "version": "3.1.1",
  2829. "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
  2830. "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
  2831. "devOptional": true,
  2832. "license": "ISC"
  2833. }
  2834. }
  2835. }