package-lock.json 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476
  1. {
  2. "name": "awesome_webui",
  3. "version": "0.0.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "awesome_webui",
  9. "version": "0.0.0",
  10. "dependencies": {
  11. "@radix-ui/react-collapsible": "^1.1.12",
  12. "@radix-ui/react-dialog": "^1.1.15",
  13. "@radix-ui/react-label": "^2.1.8",
  14. "@radix-ui/react-scroll-area": "^1.2.10",
  15. "@radix-ui/react-separator": "^1.1.8",
  16. "@radix-ui/react-slider": "^1.3.6",
  17. "@radix-ui/react-slot": "^1.2.4",
  18. "@radix-ui/react-switch": "^1.2.6",
  19. "@radix-ui/react-toggle-group": "^1.1.11",
  20. "@tailwindcss/vite": "^4.2.1",
  21. "class-variance-authority": "^0.7.1",
  22. "clsx": "^2.1.1",
  23. "lucide-react": "^0.577.0",
  24. "react": "^19.2.0",
  25. "react-dom": "^19.2.0",
  26. "tailwind-merge": "^3.5.0",
  27. "tailwindcss": "^4.2.1"
  28. },
  29. "devDependencies": {
  30. "@eslint/js": "^9.39.1",
  31. "@types/node": "^24.10.1",
  32. "@types/react": "^19.2.7",
  33. "@types/react-dom": "^19.2.3",
  34. "@vitejs/plugin-react-swc": "^4.2.2",
  35. "eslint": "^9.39.1",
  36. "eslint-plugin-react-hooks": "^7.0.1",
  37. "eslint-plugin-react-refresh": "^0.4.24",
  38. "globals": "^16.5.0",
  39. "typescript": "~5.9.3",
  40. "typescript-eslint": "^8.48.0",
  41. "vite": "^7.3.1"
  42. }
  43. },
  44. "node_modules/@babel/code-frame": {
  45. "version": "7.29.0",
  46. "dev": true,
  47. "license": "MIT",
  48. "dependencies": {
  49. "@babel/helper-validator-identifier": "^7.28.5",
  50. "js-tokens": "^4.0.0",
  51. "picocolors": "^1.1.1"
  52. },
  53. "engines": {
  54. "node": ">=6.9.0"
  55. }
  56. },
  57. "node_modules/@babel/compat-data": {
  58. "version": "7.29.0",
  59. "dev": true,
  60. "license": "MIT",
  61. "engines": {
  62. "node": ">=6.9.0"
  63. }
  64. },
  65. "node_modules/@babel/core": {
  66. "version": "7.29.0",
  67. "dev": true,
  68. "license": "MIT",
  69. "dependencies": {
  70. "@babel/code-frame": "^7.29.0",
  71. "@babel/generator": "^7.29.0",
  72. "@babel/helper-compilation-targets": "^7.28.6",
  73. "@babel/helper-module-transforms": "^7.28.6",
  74. "@babel/helpers": "^7.28.6",
  75. "@babel/parser": "^7.29.0",
  76. "@babel/template": "^7.28.6",
  77. "@babel/traverse": "^7.29.0",
  78. "@babel/types": "^7.29.0",
  79. "@jridgewell/remapping": "^2.3.5",
  80. "convert-source-map": "^2.0.0",
  81. "debug": "^4.1.0",
  82. "gensync": "^1.0.0-beta.2",
  83. "json5": "^2.2.3",
  84. "semver": "^6.3.1"
  85. },
  86. "engines": {
  87. "node": ">=6.9.0"
  88. },
  89. "funding": {
  90. "type": "opencollective",
  91. "url": "https://opencollective.com/babel"
  92. }
  93. },
  94. "node_modules/@babel/generator": {
  95. "version": "7.29.1",
  96. "dev": true,
  97. "license": "MIT",
  98. "dependencies": {
  99. "@babel/parser": "^7.29.0",
  100. "@babel/types": "^7.29.0",
  101. "@jridgewell/gen-mapping": "^0.3.12",
  102. "@jridgewell/trace-mapping": "^0.3.28",
  103. "jsesc": "^3.0.2"
  104. },
  105. "engines": {
  106. "node": ">=6.9.0"
  107. }
  108. },
  109. "node_modules/@babel/helper-compilation-targets": {
  110. "version": "7.28.6",
  111. "dev": true,
  112. "license": "MIT",
  113. "dependencies": {
  114. "@babel/compat-data": "^7.28.6",
  115. "@babel/helper-validator-option": "^7.27.1",
  116. "browserslist": "^4.24.0",
  117. "lru-cache": "^5.1.1",
  118. "semver": "^6.3.1"
  119. },
  120. "engines": {
  121. "node": ">=6.9.0"
  122. }
  123. },
  124. "node_modules/@babel/helper-globals": {
  125. "version": "7.28.0",
  126. "dev": 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. "dev": true,
  135. "license": "MIT",
  136. "dependencies": {
  137. "@babel/traverse": "^7.28.6",
  138. "@babel/types": "^7.28.6"
  139. },
  140. "engines": {
  141. "node": ">=6.9.0"
  142. }
  143. },
  144. "node_modules/@babel/helper-module-transforms": {
  145. "version": "7.28.6",
  146. "dev": true,
  147. "license": "MIT",
  148. "dependencies": {
  149. "@babel/helper-module-imports": "^7.28.6",
  150. "@babel/helper-validator-identifier": "^7.28.5",
  151. "@babel/traverse": "^7.28.6"
  152. },
  153. "engines": {
  154. "node": ">=6.9.0"
  155. },
  156. "peerDependencies": {
  157. "@babel/core": "^7.0.0"
  158. }
  159. },
  160. "node_modules/@babel/helper-string-parser": {
  161. "version": "7.27.1",
  162. "dev": true,
  163. "license": "MIT",
  164. "engines": {
  165. "node": ">=6.9.0"
  166. }
  167. },
  168. "node_modules/@babel/helper-validator-identifier": {
  169. "version": "7.28.5",
  170. "dev": true,
  171. "license": "MIT",
  172. "engines": {
  173. "node": ">=6.9.0"
  174. }
  175. },
  176. "node_modules/@babel/helper-validator-option": {
  177. "version": "7.27.1",
  178. "dev": true,
  179. "license": "MIT",
  180. "engines": {
  181. "node": ">=6.9.0"
  182. }
  183. },
  184. "node_modules/@babel/helpers": {
  185. "version": "7.28.6",
  186. "dev": true,
  187. "license": "MIT",
  188. "dependencies": {
  189. "@babel/template": "^7.28.6",
  190. "@babel/types": "^7.28.6"
  191. },
  192. "engines": {
  193. "node": ">=6.9.0"
  194. }
  195. },
  196. "node_modules/@babel/parser": {
  197. "version": "7.29.0",
  198. "dev": true,
  199. "license": "MIT",
  200. "dependencies": {
  201. "@babel/types": "^7.29.0"
  202. },
  203. "bin": {
  204. "parser": "bin/babel-parser.js"
  205. },
  206. "engines": {
  207. "node": ">=6.0.0"
  208. }
  209. },
  210. "node_modules/@babel/template": {
  211. "version": "7.28.6",
  212. "dev": true,
  213. "license": "MIT",
  214. "dependencies": {
  215. "@babel/code-frame": "^7.28.6",
  216. "@babel/parser": "^7.28.6",
  217. "@babel/types": "^7.28.6"
  218. },
  219. "engines": {
  220. "node": ">=6.9.0"
  221. }
  222. },
  223. "node_modules/@babel/traverse": {
  224. "version": "7.29.0",
  225. "dev": true,
  226. "license": "MIT",
  227. "dependencies": {
  228. "@babel/code-frame": "^7.29.0",
  229. "@babel/generator": "^7.29.0",
  230. "@babel/helper-globals": "^7.28.0",
  231. "@babel/parser": "^7.29.0",
  232. "@babel/template": "^7.28.6",
  233. "@babel/types": "^7.29.0",
  234. "debug": "^4.3.1"
  235. },
  236. "engines": {
  237. "node": ">=6.9.0"
  238. }
  239. },
  240. "node_modules/@babel/types": {
  241. "version": "7.29.0",
  242. "dev": true,
  243. "license": "MIT",
  244. "dependencies": {
  245. "@babel/helper-string-parser": "^7.27.1",
  246. "@babel/helper-validator-identifier": "^7.28.5"
  247. },
  248. "engines": {
  249. "node": ">=6.9.0"
  250. }
  251. },
  252. "node_modules/@esbuild/aix-ppc64": {
  253. "version": "0.27.3",
  254. "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
  255. "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
  256. "cpu": [
  257. "ppc64"
  258. ],
  259. "license": "MIT",
  260. "optional": true,
  261. "os": [
  262. "aix"
  263. ],
  264. "engines": {
  265. "node": ">=18"
  266. }
  267. },
  268. "node_modules/@esbuild/android-arm": {
  269. "version": "0.27.3",
  270. "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
  271. "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
  272. "cpu": [
  273. "arm"
  274. ],
  275. "license": "MIT",
  276. "optional": true,
  277. "os": [
  278. "android"
  279. ],
  280. "engines": {
  281. "node": ">=18"
  282. }
  283. },
  284. "node_modules/@esbuild/android-arm64": {
  285. "version": "0.27.3",
  286. "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
  287. "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
  288. "cpu": [
  289. "arm64"
  290. ],
  291. "license": "MIT",
  292. "optional": true,
  293. "os": [
  294. "android"
  295. ],
  296. "engines": {
  297. "node": ">=18"
  298. }
  299. },
  300. "node_modules/@esbuild/android-x64": {
  301. "version": "0.27.3",
  302. "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
  303. "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
  304. "cpu": [
  305. "x64"
  306. ],
  307. "license": "MIT",
  308. "optional": true,
  309. "os": [
  310. "android"
  311. ],
  312. "engines": {
  313. "node": ">=18"
  314. }
  315. },
  316. "node_modules/@esbuild/darwin-arm64": {
  317. "version": "0.27.3",
  318. "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
  319. "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
  320. "cpu": [
  321. "arm64"
  322. ],
  323. "license": "MIT",
  324. "optional": true,
  325. "os": [
  326. "darwin"
  327. ],
  328. "engines": {
  329. "node": ">=18"
  330. }
  331. },
  332. "node_modules/@esbuild/darwin-x64": {
  333. "version": "0.27.3",
  334. "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
  335. "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
  336. "cpu": [
  337. "x64"
  338. ],
  339. "license": "MIT",
  340. "optional": true,
  341. "os": [
  342. "darwin"
  343. ],
  344. "engines": {
  345. "node": ">=18"
  346. }
  347. },
  348. "node_modules/@esbuild/freebsd-arm64": {
  349. "version": "0.27.3",
  350. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
  351. "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
  352. "cpu": [
  353. "arm64"
  354. ],
  355. "license": "MIT",
  356. "optional": true,
  357. "os": [
  358. "freebsd"
  359. ],
  360. "engines": {
  361. "node": ">=18"
  362. }
  363. },
  364. "node_modules/@esbuild/freebsd-x64": {
  365. "version": "0.27.3",
  366. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
  367. "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
  368. "cpu": [
  369. "x64"
  370. ],
  371. "license": "MIT",
  372. "optional": true,
  373. "os": [
  374. "freebsd"
  375. ],
  376. "engines": {
  377. "node": ">=18"
  378. }
  379. },
  380. "node_modules/@esbuild/linux-arm": {
  381. "version": "0.27.3",
  382. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
  383. "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
  384. "cpu": [
  385. "arm"
  386. ],
  387. "license": "MIT",
  388. "optional": true,
  389. "os": [
  390. "linux"
  391. ],
  392. "engines": {
  393. "node": ">=18"
  394. }
  395. },
  396. "node_modules/@esbuild/linux-arm64": {
  397. "version": "0.27.3",
  398. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
  399. "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
  400. "cpu": [
  401. "arm64"
  402. ],
  403. "license": "MIT",
  404. "optional": true,
  405. "os": [
  406. "linux"
  407. ],
  408. "engines": {
  409. "node": ">=18"
  410. }
  411. },
  412. "node_modules/@esbuild/linux-ia32": {
  413. "version": "0.27.3",
  414. "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
  415. "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
  416. "cpu": [
  417. "ia32"
  418. ],
  419. "license": "MIT",
  420. "optional": true,
  421. "os": [
  422. "linux"
  423. ],
  424. "engines": {
  425. "node": ">=18"
  426. }
  427. },
  428. "node_modules/@esbuild/linux-loong64": {
  429. "version": "0.27.3",
  430. "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
  431. "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
  432. "cpu": [
  433. "loong64"
  434. ],
  435. "license": "MIT",
  436. "optional": true,
  437. "os": [
  438. "linux"
  439. ],
  440. "engines": {
  441. "node": ">=18"
  442. }
  443. },
  444. "node_modules/@esbuild/linux-mips64el": {
  445. "version": "0.27.3",
  446. "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
  447. "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
  448. "cpu": [
  449. "mips64el"
  450. ],
  451. "license": "MIT",
  452. "optional": true,
  453. "os": [
  454. "linux"
  455. ],
  456. "engines": {
  457. "node": ">=18"
  458. }
  459. },
  460. "node_modules/@esbuild/linux-ppc64": {
  461. "version": "0.27.3",
  462. "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
  463. "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
  464. "cpu": [
  465. "ppc64"
  466. ],
  467. "license": "MIT",
  468. "optional": true,
  469. "os": [
  470. "linux"
  471. ],
  472. "engines": {
  473. "node": ">=18"
  474. }
  475. },
  476. "node_modules/@esbuild/linux-riscv64": {
  477. "version": "0.27.3",
  478. "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
  479. "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
  480. "cpu": [
  481. "riscv64"
  482. ],
  483. "license": "MIT",
  484. "optional": true,
  485. "os": [
  486. "linux"
  487. ],
  488. "engines": {
  489. "node": ">=18"
  490. }
  491. },
  492. "node_modules/@esbuild/linux-s390x": {
  493. "version": "0.27.3",
  494. "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
  495. "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
  496. "cpu": [
  497. "s390x"
  498. ],
  499. "license": "MIT",
  500. "optional": true,
  501. "os": [
  502. "linux"
  503. ],
  504. "engines": {
  505. "node": ">=18"
  506. }
  507. },
  508. "node_modules/@esbuild/linux-x64": {
  509. "version": "0.27.3",
  510. "cpu": [
  511. "x64"
  512. ],
  513. "license": "MIT",
  514. "optional": true,
  515. "os": [
  516. "linux"
  517. ],
  518. "engines": {
  519. "node": ">=18"
  520. }
  521. },
  522. "node_modules/@esbuild/netbsd-arm64": {
  523. "version": "0.27.3",
  524. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
  525. "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
  526. "cpu": [
  527. "arm64"
  528. ],
  529. "license": "MIT",
  530. "optional": true,
  531. "os": [
  532. "netbsd"
  533. ],
  534. "engines": {
  535. "node": ">=18"
  536. }
  537. },
  538. "node_modules/@esbuild/netbsd-x64": {
  539. "version": "0.27.3",
  540. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
  541. "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
  542. "cpu": [
  543. "x64"
  544. ],
  545. "license": "MIT",
  546. "optional": true,
  547. "os": [
  548. "netbsd"
  549. ],
  550. "engines": {
  551. "node": ">=18"
  552. }
  553. },
  554. "node_modules/@esbuild/openbsd-arm64": {
  555. "version": "0.27.3",
  556. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
  557. "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
  558. "cpu": [
  559. "arm64"
  560. ],
  561. "license": "MIT",
  562. "optional": true,
  563. "os": [
  564. "openbsd"
  565. ],
  566. "engines": {
  567. "node": ">=18"
  568. }
  569. },
  570. "node_modules/@esbuild/openbsd-x64": {
  571. "version": "0.27.3",
  572. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
  573. "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
  574. "cpu": [
  575. "x64"
  576. ],
  577. "license": "MIT",
  578. "optional": true,
  579. "os": [
  580. "openbsd"
  581. ],
  582. "engines": {
  583. "node": ">=18"
  584. }
  585. },
  586. "node_modules/@esbuild/openharmony-arm64": {
  587. "version": "0.27.3",
  588. "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
  589. "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
  590. "cpu": [
  591. "arm64"
  592. ],
  593. "license": "MIT",
  594. "optional": true,
  595. "os": [
  596. "openharmony"
  597. ],
  598. "engines": {
  599. "node": ">=18"
  600. }
  601. },
  602. "node_modules/@esbuild/sunos-x64": {
  603. "version": "0.27.3",
  604. "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
  605. "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
  606. "cpu": [
  607. "x64"
  608. ],
  609. "license": "MIT",
  610. "optional": true,
  611. "os": [
  612. "sunos"
  613. ],
  614. "engines": {
  615. "node": ">=18"
  616. }
  617. },
  618. "node_modules/@esbuild/win32-arm64": {
  619. "version": "0.27.3",
  620. "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
  621. "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
  622. "cpu": [
  623. "arm64"
  624. ],
  625. "license": "MIT",
  626. "optional": true,
  627. "os": [
  628. "win32"
  629. ],
  630. "engines": {
  631. "node": ">=18"
  632. }
  633. },
  634. "node_modules/@esbuild/win32-ia32": {
  635. "version": "0.27.3",
  636. "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
  637. "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
  638. "cpu": [
  639. "ia32"
  640. ],
  641. "license": "MIT",
  642. "optional": true,
  643. "os": [
  644. "win32"
  645. ],
  646. "engines": {
  647. "node": ">=18"
  648. }
  649. },
  650. "node_modules/@esbuild/win32-x64": {
  651. "version": "0.27.3",
  652. "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
  653. "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
  654. "cpu": [
  655. "x64"
  656. ],
  657. "license": "MIT",
  658. "optional": true,
  659. "os": [
  660. "win32"
  661. ],
  662. "engines": {
  663. "node": ">=18"
  664. }
  665. },
  666. "node_modules/@eslint-community/eslint-utils": {
  667. "version": "4.9.1",
  668. "dev": true,
  669. "license": "MIT",
  670. "dependencies": {
  671. "eslint-visitor-keys": "^3.4.3"
  672. },
  673. "engines": {
  674. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  675. },
  676. "funding": {
  677. "url": "https://opencollective.com/eslint"
  678. },
  679. "peerDependencies": {
  680. "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
  681. }
  682. },
  683. "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
  684. "version": "3.4.3",
  685. "dev": true,
  686. "license": "Apache-2.0",
  687. "engines": {
  688. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  689. },
  690. "funding": {
  691. "url": "https://opencollective.com/eslint"
  692. }
  693. },
  694. "node_modules/@eslint-community/regexpp": {
  695. "version": "4.12.2",
  696. "dev": true,
  697. "license": "MIT",
  698. "engines": {
  699. "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
  700. }
  701. },
  702. "node_modules/@eslint/config-array": {
  703. "version": "0.21.1",
  704. "dev": true,
  705. "license": "Apache-2.0",
  706. "dependencies": {
  707. "@eslint/object-schema": "^2.1.7",
  708. "debug": "^4.3.1",
  709. "minimatch": "^3.1.2"
  710. },
  711. "engines": {
  712. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  713. }
  714. },
  715. "node_modules/@eslint/config-helpers": {
  716. "version": "0.4.2",
  717. "dev": true,
  718. "license": "Apache-2.0",
  719. "dependencies": {
  720. "@eslint/core": "^0.17.0"
  721. },
  722. "engines": {
  723. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  724. }
  725. },
  726. "node_modules/@eslint/core": {
  727. "version": "0.17.0",
  728. "dev": true,
  729. "license": "Apache-2.0",
  730. "dependencies": {
  731. "@types/json-schema": "^7.0.15"
  732. },
  733. "engines": {
  734. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  735. }
  736. },
  737. "node_modules/@eslint/eslintrc": {
  738. "version": "3.3.4",
  739. "dev": true,
  740. "license": "MIT",
  741. "dependencies": {
  742. "ajv": "^6.14.0",
  743. "debug": "^4.3.2",
  744. "espree": "^10.0.1",
  745. "globals": "^14.0.0",
  746. "ignore": "^5.2.0",
  747. "import-fresh": "^3.2.1",
  748. "js-yaml": "^4.1.1",
  749. "minimatch": "^3.1.3",
  750. "strip-json-comments": "^3.1.1"
  751. },
  752. "engines": {
  753. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  754. },
  755. "funding": {
  756. "url": "https://opencollective.com/eslint"
  757. }
  758. },
  759. "node_modules/@eslint/eslintrc/node_modules/globals": {
  760. "version": "14.0.0",
  761. "dev": true,
  762. "license": "MIT",
  763. "engines": {
  764. "node": ">=18"
  765. },
  766. "funding": {
  767. "url": "https://github.com/sponsors/sindresorhus"
  768. }
  769. },
  770. "node_modules/@eslint/js": {
  771. "version": "9.39.3",
  772. "dev": true,
  773. "license": "MIT",
  774. "engines": {
  775. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  776. },
  777. "funding": {
  778. "url": "https://eslint.org/donate"
  779. }
  780. },
  781. "node_modules/@eslint/object-schema": {
  782. "version": "2.1.7",
  783. "dev": true,
  784. "license": "Apache-2.0",
  785. "engines": {
  786. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  787. }
  788. },
  789. "node_modules/@eslint/plugin-kit": {
  790. "version": "0.4.1",
  791. "dev": true,
  792. "license": "Apache-2.0",
  793. "dependencies": {
  794. "@eslint/core": "^0.17.0",
  795. "levn": "^0.4.1"
  796. },
  797. "engines": {
  798. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  799. }
  800. },
  801. "node_modules/@humanfs/core": {
  802. "version": "0.19.1",
  803. "dev": true,
  804. "license": "Apache-2.0",
  805. "engines": {
  806. "node": ">=18.18.0"
  807. }
  808. },
  809. "node_modules/@humanfs/node": {
  810. "version": "0.16.7",
  811. "dev": true,
  812. "license": "Apache-2.0",
  813. "dependencies": {
  814. "@humanfs/core": "^0.19.1",
  815. "@humanwhocodes/retry": "^0.4.0"
  816. },
  817. "engines": {
  818. "node": ">=18.18.0"
  819. }
  820. },
  821. "node_modules/@humanwhocodes/module-importer": {
  822. "version": "1.0.1",
  823. "dev": true,
  824. "license": "Apache-2.0",
  825. "engines": {
  826. "node": ">=12.22"
  827. },
  828. "funding": {
  829. "type": "github",
  830. "url": "https://github.com/sponsors/nzakas"
  831. }
  832. },
  833. "node_modules/@humanwhocodes/retry": {
  834. "version": "0.4.3",
  835. "dev": true,
  836. "license": "Apache-2.0",
  837. "engines": {
  838. "node": ">=18.18"
  839. },
  840. "funding": {
  841. "type": "github",
  842. "url": "https://github.com/sponsors/nzakas"
  843. }
  844. },
  845. "node_modules/@jridgewell/gen-mapping": {
  846. "version": "0.3.13",
  847. "license": "MIT",
  848. "dependencies": {
  849. "@jridgewell/sourcemap-codec": "^1.5.0",
  850. "@jridgewell/trace-mapping": "^0.3.24"
  851. }
  852. },
  853. "node_modules/@jridgewell/remapping": {
  854. "version": "2.3.5",
  855. "license": "MIT",
  856. "dependencies": {
  857. "@jridgewell/gen-mapping": "^0.3.5",
  858. "@jridgewell/trace-mapping": "^0.3.24"
  859. }
  860. },
  861. "node_modules/@jridgewell/resolve-uri": {
  862. "version": "3.1.2",
  863. "license": "MIT",
  864. "engines": {
  865. "node": ">=6.0.0"
  866. }
  867. },
  868. "node_modules/@jridgewell/sourcemap-codec": {
  869. "version": "1.5.5",
  870. "license": "MIT"
  871. },
  872. "node_modules/@jridgewell/trace-mapping": {
  873. "version": "0.3.31",
  874. "license": "MIT",
  875. "dependencies": {
  876. "@jridgewell/resolve-uri": "^3.1.0",
  877. "@jridgewell/sourcemap-codec": "^1.4.14"
  878. }
  879. },
  880. "node_modules/@radix-ui/number": {
  881. "version": "1.1.1",
  882. "license": "MIT"
  883. },
  884. "node_modules/@radix-ui/primitive": {
  885. "version": "1.1.3",
  886. "license": "MIT"
  887. },
  888. "node_modules/@radix-ui/react-collapsible": {
  889. "version": "1.1.12",
  890. "license": "MIT",
  891. "dependencies": {
  892. "@radix-ui/primitive": "1.1.3",
  893. "@radix-ui/react-compose-refs": "1.1.2",
  894. "@radix-ui/react-context": "1.1.2",
  895. "@radix-ui/react-id": "1.1.1",
  896. "@radix-ui/react-presence": "1.1.5",
  897. "@radix-ui/react-primitive": "2.1.3",
  898. "@radix-ui/react-use-controllable-state": "1.2.2",
  899. "@radix-ui/react-use-layout-effect": "1.1.1"
  900. },
  901. "peerDependencies": {
  902. "@types/react": "*",
  903. "@types/react-dom": "*",
  904. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  905. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  906. },
  907. "peerDependenciesMeta": {
  908. "@types/react": {
  909. "optional": true
  910. },
  911. "@types/react-dom": {
  912. "optional": true
  913. }
  914. }
  915. },
  916. "node_modules/@radix-ui/react-collection": {
  917. "version": "1.1.7",
  918. "license": "MIT",
  919. "dependencies": {
  920. "@radix-ui/react-compose-refs": "1.1.2",
  921. "@radix-ui/react-context": "1.1.2",
  922. "@radix-ui/react-primitive": "2.1.3",
  923. "@radix-ui/react-slot": "1.2.3"
  924. },
  925. "peerDependencies": {
  926. "@types/react": "*",
  927. "@types/react-dom": "*",
  928. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  929. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  930. },
  931. "peerDependenciesMeta": {
  932. "@types/react": {
  933. "optional": true
  934. },
  935. "@types/react-dom": {
  936. "optional": true
  937. }
  938. }
  939. },
  940. "node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-slot": {
  941. "version": "1.2.3",
  942. "license": "MIT",
  943. "dependencies": {
  944. "@radix-ui/react-compose-refs": "1.1.2"
  945. },
  946. "peerDependencies": {
  947. "@types/react": "*",
  948. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  949. },
  950. "peerDependenciesMeta": {
  951. "@types/react": {
  952. "optional": true
  953. }
  954. }
  955. },
  956. "node_modules/@radix-ui/react-compose-refs": {
  957. "version": "1.1.2",
  958. "license": "MIT",
  959. "peerDependencies": {
  960. "@types/react": "*",
  961. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  962. },
  963. "peerDependenciesMeta": {
  964. "@types/react": {
  965. "optional": true
  966. }
  967. }
  968. },
  969. "node_modules/@radix-ui/react-context": {
  970. "version": "1.1.2",
  971. "license": "MIT",
  972. "peerDependencies": {
  973. "@types/react": "*",
  974. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  975. },
  976. "peerDependenciesMeta": {
  977. "@types/react": {
  978. "optional": true
  979. }
  980. }
  981. },
  982. "node_modules/@radix-ui/react-dialog": {
  983. "version": "1.1.15",
  984. "license": "MIT",
  985. "dependencies": {
  986. "@radix-ui/primitive": "1.1.3",
  987. "@radix-ui/react-compose-refs": "1.1.2",
  988. "@radix-ui/react-context": "1.1.2",
  989. "@radix-ui/react-dismissable-layer": "1.1.11",
  990. "@radix-ui/react-focus-guards": "1.1.3",
  991. "@radix-ui/react-focus-scope": "1.1.7",
  992. "@radix-ui/react-id": "1.1.1",
  993. "@radix-ui/react-portal": "1.1.9",
  994. "@radix-ui/react-presence": "1.1.5",
  995. "@radix-ui/react-primitive": "2.1.3",
  996. "@radix-ui/react-slot": "1.2.3",
  997. "@radix-ui/react-use-controllable-state": "1.2.2",
  998. "aria-hidden": "^1.2.4",
  999. "react-remove-scroll": "^2.6.3"
  1000. },
  1001. "peerDependencies": {
  1002. "@types/react": "*",
  1003. "@types/react-dom": "*",
  1004. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1005. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1006. },
  1007. "peerDependenciesMeta": {
  1008. "@types/react": {
  1009. "optional": true
  1010. },
  1011. "@types/react-dom": {
  1012. "optional": true
  1013. }
  1014. }
  1015. },
  1016. "node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-slot": {
  1017. "version": "1.2.3",
  1018. "license": "MIT",
  1019. "dependencies": {
  1020. "@radix-ui/react-compose-refs": "1.1.2"
  1021. },
  1022. "peerDependencies": {
  1023. "@types/react": "*",
  1024. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1025. },
  1026. "peerDependenciesMeta": {
  1027. "@types/react": {
  1028. "optional": true
  1029. }
  1030. }
  1031. },
  1032. "node_modules/@radix-ui/react-direction": {
  1033. "version": "1.1.1",
  1034. "license": "MIT",
  1035. "peerDependencies": {
  1036. "@types/react": "*",
  1037. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1038. },
  1039. "peerDependenciesMeta": {
  1040. "@types/react": {
  1041. "optional": true
  1042. }
  1043. }
  1044. },
  1045. "node_modules/@radix-ui/react-dismissable-layer": {
  1046. "version": "1.1.11",
  1047. "license": "MIT",
  1048. "dependencies": {
  1049. "@radix-ui/primitive": "1.1.3",
  1050. "@radix-ui/react-compose-refs": "1.1.2",
  1051. "@radix-ui/react-primitive": "2.1.3",
  1052. "@radix-ui/react-use-callback-ref": "1.1.1",
  1053. "@radix-ui/react-use-escape-keydown": "1.1.1"
  1054. },
  1055. "peerDependencies": {
  1056. "@types/react": "*",
  1057. "@types/react-dom": "*",
  1058. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1059. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1060. },
  1061. "peerDependenciesMeta": {
  1062. "@types/react": {
  1063. "optional": true
  1064. },
  1065. "@types/react-dom": {
  1066. "optional": true
  1067. }
  1068. }
  1069. },
  1070. "node_modules/@radix-ui/react-focus-guards": {
  1071. "version": "1.1.3",
  1072. "license": "MIT",
  1073. "peerDependencies": {
  1074. "@types/react": "*",
  1075. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1076. },
  1077. "peerDependenciesMeta": {
  1078. "@types/react": {
  1079. "optional": true
  1080. }
  1081. }
  1082. },
  1083. "node_modules/@radix-ui/react-focus-scope": {
  1084. "version": "1.1.7",
  1085. "license": "MIT",
  1086. "dependencies": {
  1087. "@radix-ui/react-compose-refs": "1.1.2",
  1088. "@radix-ui/react-primitive": "2.1.3",
  1089. "@radix-ui/react-use-callback-ref": "1.1.1"
  1090. },
  1091. "peerDependencies": {
  1092. "@types/react": "*",
  1093. "@types/react-dom": "*",
  1094. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1095. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1096. },
  1097. "peerDependenciesMeta": {
  1098. "@types/react": {
  1099. "optional": true
  1100. },
  1101. "@types/react-dom": {
  1102. "optional": true
  1103. }
  1104. }
  1105. },
  1106. "node_modules/@radix-ui/react-id": {
  1107. "version": "1.1.1",
  1108. "license": "MIT",
  1109. "dependencies": {
  1110. "@radix-ui/react-use-layout-effect": "1.1.1"
  1111. },
  1112. "peerDependencies": {
  1113. "@types/react": "*",
  1114. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1115. },
  1116. "peerDependenciesMeta": {
  1117. "@types/react": {
  1118. "optional": true
  1119. }
  1120. }
  1121. },
  1122. "node_modules/@radix-ui/react-label": {
  1123. "version": "2.1.8",
  1124. "license": "MIT",
  1125. "dependencies": {
  1126. "@radix-ui/react-primitive": "2.1.4"
  1127. },
  1128. "peerDependencies": {
  1129. "@types/react": "*",
  1130. "@types/react-dom": "*",
  1131. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1132. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1133. },
  1134. "peerDependenciesMeta": {
  1135. "@types/react": {
  1136. "optional": true
  1137. },
  1138. "@types/react-dom": {
  1139. "optional": true
  1140. }
  1141. }
  1142. },
  1143. "node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-primitive": {
  1144. "version": "2.1.4",
  1145. "license": "MIT",
  1146. "dependencies": {
  1147. "@radix-ui/react-slot": "1.2.4"
  1148. },
  1149. "peerDependencies": {
  1150. "@types/react": "*",
  1151. "@types/react-dom": "*",
  1152. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1153. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1154. },
  1155. "peerDependenciesMeta": {
  1156. "@types/react": {
  1157. "optional": true
  1158. },
  1159. "@types/react-dom": {
  1160. "optional": true
  1161. }
  1162. }
  1163. },
  1164. "node_modules/@radix-ui/react-portal": {
  1165. "version": "1.1.9",
  1166. "license": "MIT",
  1167. "dependencies": {
  1168. "@radix-ui/react-primitive": "2.1.3",
  1169. "@radix-ui/react-use-layout-effect": "1.1.1"
  1170. },
  1171. "peerDependencies": {
  1172. "@types/react": "*",
  1173. "@types/react-dom": "*",
  1174. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1175. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1176. },
  1177. "peerDependenciesMeta": {
  1178. "@types/react": {
  1179. "optional": true
  1180. },
  1181. "@types/react-dom": {
  1182. "optional": true
  1183. }
  1184. }
  1185. },
  1186. "node_modules/@radix-ui/react-presence": {
  1187. "version": "1.1.5",
  1188. "license": "MIT",
  1189. "dependencies": {
  1190. "@radix-ui/react-compose-refs": "1.1.2",
  1191. "@radix-ui/react-use-layout-effect": "1.1.1"
  1192. },
  1193. "peerDependencies": {
  1194. "@types/react": "*",
  1195. "@types/react-dom": "*",
  1196. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1197. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1198. },
  1199. "peerDependenciesMeta": {
  1200. "@types/react": {
  1201. "optional": true
  1202. },
  1203. "@types/react-dom": {
  1204. "optional": true
  1205. }
  1206. }
  1207. },
  1208. "node_modules/@radix-ui/react-primitive": {
  1209. "version": "2.1.3",
  1210. "license": "MIT",
  1211. "dependencies": {
  1212. "@radix-ui/react-slot": "1.2.3"
  1213. },
  1214. "peerDependencies": {
  1215. "@types/react": "*",
  1216. "@types/react-dom": "*",
  1217. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1218. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1219. },
  1220. "peerDependenciesMeta": {
  1221. "@types/react": {
  1222. "optional": true
  1223. },
  1224. "@types/react-dom": {
  1225. "optional": true
  1226. }
  1227. }
  1228. },
  1229. "node_modules/@radix-ui/react-primitive/node_modules/@radix-ui/react-slot": {
  1230. "version": "1.2.3",
  1231. "license": "MIT",
  1232. "dependencies": {
  1233. "@radix-ui/react-compose-refs": "1.1.2"
  1234. },
  1235. "peerDependencies": {
  1236. "@types/react": "*",
  1237. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1238. },
  1239. "peerDependenciesMeta": {
  1240. "@types/react": {
  1241. "optional": true
  1242. }
  1243. }
  1244. },
  1245. "node_modules/@radix-ui/react-roving-focus": {
  1246. "version": "1.1.11",
  1247. "license": "MIT",
  1248. "dependencies": {
  1249. "@radix-ui/primitive": "1.1.3",
  1250. "@radix-ui/react-collection": "1.1.7",
  1251. "@radix-ui/react-compose-refs": "1.1.2",
  1252. "@radix-ui/react-context": "1.1.2",
  1253. "@radix-ui/react-direction": "1.1.1",
  1254. "@radix-ui/react-id": "1.1.1",
  1255. "@radix-ui/react-primitive": "2.1.3",
  1256. "@radix-ui/react-use-callback-ref": "1.1.1",
  1257. "@radix-ui/react-use-controllable-state": "1.2.2"
  1258. },
  1259. "peerDependencies": {
  1260. "@types/react": "*",
  1261. "@types/react-dom": "*",
  1262. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1263. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1264. },
  1265. "peerDependenciesMeta": {
  1266. "@types/react": {
  1267. "optional": true
  1268. },
  1269. "@types/react-dom": {
  1270. "optional": true
  1271. }
  1272. }
  1273. },
  1274. "node_modules/@radix-ui/react-scroll-area": {
  1275. "version": "1.2.10",
  1276. "license": "MIT",
  1277. "dependencies": {
  1278. "@radix-ui/number": "1.1.1",
  1279. "@radix-ui/primitive": "1.1.3",
  1280. "@radix-ui/react-compose-refs": "1.1.2",
  1281. "@radix-ui/react-context": "1.1.2",
  1282. "@radix-ui/react-direction": "1.1.1",
  1283. "@radix-ui/react-presence": "1.1.5",
  1284. "@radix-ui/react-primitive": "2.1.3",
  1285. "@radix-ui/react-use-callback-ref": "1.1.1",
  1286. "@radix-ui/react-use-layout-effect": "1.1.1"
  1287. },
  1288. "peerDependencies": {
  1289. "@types/react": "*",
  1290. "@types/react-dom": "*",
  1291. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1292. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1293. },
  1294. "peerDependenciesMeta": {
  1295. "@types/react": {
  1296. "optional": true
  1297. },
  1298. "@types/react-dom": {
  1299. "optional": true
  1300. }
  1301. }
  1302. },
  1303. "node_modules/@radix-ui/react-separator": {
  1304. "version": "1.1.8",
  1305. "license": "MIT",
  1306. "dependencies": {
  1307. "@radix-ui/react-primitive": "2.1.4"
  1308. },
  1309. "peerDependencies": {
  1310. "@types/react": "*",
  1311. "@types/react-dom": "*",
  1312. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1313. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1314. },
  1315. "peerDependenciesMeta": {
  1316. "@types/react": {
  1317. "optional": true
  1318. },
  1319. "@types/react-dom": {
  1320. "optional": true
  1321. }
  1322. }
  1323. },
  1324. "node_modules/@radix-ui/react-separator/node_modules/@radix-ui/react-primitive": {
  1325. "version": "2.1.4",
  1326. "license": "MIT",
  1327. "dependencies": {
  1328. "@radix-ui/react-slot": "1.2.4"
  1329. },
  1330. "peerDependencies": {
  1331. "@types/react": "*",
  1332. "@types/react-dom": "*",
  1333. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1334. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1335. },
  1336. "peerDependenciesMeta": {
  1337. "@types/react": {
  1338. "optional": true
  1339. },
  1340. "@types/react-dom": {
  1341. "optional": true
  1342. }
  1343. }
  1344. },
  1345. "node_modules/@radix-ui/react-slider": {
  1346. "version": "1.3.6",
  1347. "license": "MIT",
  1348. "dependencies": {
  1349. "@radix-ui/number": "1.1.1",
  1350. "@radix-ui/primitive": "1.1.3",
  1351. "@radix-ui/react-collection": "1.1.7",
  1352. "@radix-ui/react-compose-refs": "1.1.2",
  1353. "@radix-ui/react-context": "1.1.2",
  1354. "@radix-ui/react-direction": "1.1.1",
  1355. "@radix-ui/react-primitive": "2.1.3",
  1356. "@radix-ui/react-use-controllable-state": "1.2.2",
  1357. "@radix-ui/react-use-layout-effect": "1.1.1",
  1358. "@radix-ui/react-use-previous": "1.1.1",
  1359. "@radix-ui/react-use-size": "1.1.1"
  1360. },
  1361. "peerDependencies": {
  1362. "@types/react": "*",
  1363. "@types/react-dom": "*",
  1364. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1365. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1366. },
  1367. "peerDependenciesMeta": {
  1368. "@types/react": {
  1369. "optional": true
  1370. },
  1371. "@types/react-dom": {
  1372. "optional": true
  1373. }
  1374. }
  1375. },
  1376. "node_modules/@radix-ui/react-slot": {
  1377. "version": "1.2.4",
  1378. "license": "MIT",
  1379. "dependencies": {
  1380. "@radix-ui/react-compose-refs": "1.1.2"
  1381. },
  1382. "peerDependencies": {
  1383. "@types/react": "*",
  1384. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1385. },
  1386. "peerDependenciesMeta": {
  1387. "@types/react": {
  1388. "optional": true
  1389. }
  1390. }
  1391. },
  1392. "node_modules/@radix-ui/react-switch": {
  1393. "version": "1.2.6",
  1394. "license": "MIT",
  1395. "dependencies": {
  1396. "@radix-ui/primitive": "1.1.3",
  1397. "@radix-ui/react-compose-refs": "1.1.2",
  1398. "@radix-ui/react-context": "1.1.2",
  1399. "@radix-ui/react-primitive": "2.1.3",
  1400. "@radix-ui/react-use-controllable-state": "1.2.2",
  1401. "@radix-ui/react-use-previous": "1.1.1",
  1402. "@radix-ui/react-use-size": "1.1.1"
  1403. },
  1404. "peerDependencies": {
  1405. "@types/react": "*",
  1406. "@types/react-dom": "*",
  1407. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1408. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1409. },
  1410. "peerDependenciesMeta": {
  1411. "@types/react": {
  1412. "optional": true
  1413. },
  1414. "@types/react-dom": {
  1415. "optional": true
  1416. }
  1417. }
  1418. },
  1419. "node_modules/@radix-ui/react-toggle": {
  1420. "version": "1.1.10",
  1421. "license": "MIT",
  1422. "dependencies": {
  1423. "@radix-ui/primitive": "1.1.3",
  1424. "@radix-ui/react-primitive": "2.1.3",
  1425. "@radix-ui/react-use-controllable-state": "1.2.2"
  1426. },
  1427. "peerDependencies": {
  1428. "@types/react": "*",
  1429. "@types/react-dom": "*",
  1430. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1431. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1432. },
  1433. "peerDependenciesMeta": {
  1434. "@types/react": {
  1435. "optional": true
  1436. },
  1437. "@types/react-dom": {
  1438. "optional": true
  1439. }
  1440. }
  1441. },
  1442. "node_modules/@radix-ui/react-toggle-group": {
  1443. "version": "1.1.11",
  1444. "license": "MIT",
  1445. "dependencies": {
  1446. "@radix-ui/primitive": "1.1.3",
  1447. "@radix-ui/react-context": "1.1.2",
  1448. "@radix-ui/react-direction": "1.1.1",
  1449. "@radix-ui/react-primitive": "2.1.3",
  1450. "@radix-ui/react-roving-focus": "1.1.11",
  1451. "@radix-ui/react-toggle": "1.1.10",
  1452. "@radix-ui/react-use-controllable-state": "1.2.2"
  1453. },
  1454. "peerDependencies": {
  1455. "@types/react": "*",
  1456. "@types/react-dom": "*",
  1457. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
  1458. "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1459. },
  1460. "peerDependenciesMeta": {
  1461. "@types/react": {
  1462. "optional": true
  1463. },
  1464. "@types/react-dom": {
  1465. "optional": true
  1466. }
  1467. }
  1468. },
  1469. "node_modules/@radix-ui/react-use-callback-ref": {
  1470. "version": "1.1.1",
  1471. "license": "MIT",
  1472. "peerDependencies": {
  1473. "@types/react": "*",
  1474. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1475. },
  1476. "peerDependenciesMeta": {
  1477. "@types/react": {
  1478. "optional": true
  1479. }
  1480. }
  1481. },
  1482. "node_modules/@radix-ui/react-use-controllable-state": {
  1483. "version": "1.2.2",
  1484. "license": "MIT",
  1485. "dependencies": {
  1486. "@radix-ui/react-use-effect-event": "0.0.2",
  1487. "@radix-ui/react-use-layout-effect": "1.1.1"
  1488. },
  1489. "peerDependencies": {
  1490. "@types/react": "*",
  1491. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1492. },
  1493. "peerDependenciesMeta": {
  1494. "@types/react": {
  1495. "optional": true
  1496. }
  1497. }
  1498. },
  1499. "node_modules/@radix-ui/react-use-effect-event": {
  1500. "version": "0.0.2",
  1501. "license": "MIT",
  1502. "dependencies": {
  1503. "@radix-ui/react-use-layout-effect": "1.1.1"
  1504. },
  1505. "peerDependencies": {
  1506. "@types/react": "*",
  1507. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1508. },
  1509. "peerDependenciesMeta": {
  1510. "@types/react": {
  1511. "optional": true
  1512. }
  1513. }
  1514. },
  1515. "node_modules/@radix-ui/react-use-escape-keydown": {
  1516. "version": "1.1.1",
  1517. "license": "MIT",
  1518. "dependencies": {
  1519. "@radix-ui/react-use-callback-ref": "1.1.1"
  1520. },
  1521. "peerDependencies": {
  1522. "@types/react": "*",
  1523. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1524. },
  1525. "peerDependenciesMeta": {
  1526. "@types/react": {
  1527. "optional": true
  1528. }
  1529. }
  1530. },
  1531. "node_modules/@radix-ui/react-use-layout-effect": {
  1532. "version": "1.1.1",
  1533. "license": "MIT",
  1534. "peerDependencies": {
  1535. "@types/react": "*",
  1536. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1537. },
  1538. "peerDependenciesMeta": {
  1539. "@types/react": {
  1540. "optional": true
  1541. }
  1542. }
  1543. },
  1544. "node_modules/@radix-ui/react-use-previous": {
  1545. "version": "1.1.1",
  1546. "license": "MIT",
  1547. "peerDependencies": {
  1548. "@types/react": "*",
  1549. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1550. },
  1551. "peerDependenciesMeta": {
  1552. "@types/react": {
  1553. "optional": true
  1554. }
  1555. }
  1556. },
  1557. "node_modules/@radix-ui/react-use-size": {
  1558. "version": "1.1.1",
  1559. "license": "MIT",
  1560. "dependencies": {
  1561. "@radix-ui/react-use-layout-effect": "1.1.1"
  1562. },
  1563. "peerDependencies": {
  1564. "@types/react": "*",
  1565. "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
  1566. },
  1567. "peerDependenciesMeta": {
  1568. "@types/react": {
  1569. "optional": true
  1570. }
  1571. }
  1572. },
  1573. "node_modules/@rolldown/pluginutils": {
  1574. "version": "1.0.0-rc.2",
  1575. "dev": true,
  1576. "license": "MIT"
  1577. },
  1578. "node_modules/@rollup/rollup-android-arm-eabi": {
  1579. "version": "4.59.0",
  1580. "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz",
  1581. "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==",
  1582. "cpu": [
  1583. "arm"
  1584. ],
  1585. "license": "MIT",
  1586. "optional": true,
  1587. "os": [
  1588. "android"
  1589. ]
  1590. },
  1591. "node_modules/@rollup/rollup-android-arm64": {
  1592. "version": "4.59.0",
  1593. "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz",
  1594. "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==",
  1595. "cpu": [
  1596. "arm64"
  1597. ],
  1598. "license": "MIT",
  1599. "optional": true,
  1600. "os": [
  1601. "android"
  1602. ]
  1603. },
  1604. "node_modules/@rollup/rollup-darwin-arm64": {
  1605. "version": "4.59.0",
  1606. "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz",
  1607. "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==",
  1608. "cpu": [
  1609. "arm64"
  1610. ],
  1611. "license": "MIT",
  1612. "optional": true,
  1613. "os": [
  1614. "darwin"
  1615. ]
  1616. },
  1617. "node_modules/@rollup/rollup-darwin-x64": {
  1618. "version": "4.59.0",
  1619. "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz",
  1620. "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==",
  1621. "cpu": [
  1622. "x64"
  1623. ],
  1624. "license": "MIT",
  1625. "optional": true,
  1626. "os": [
  1627. "darwin"
  1628. ]
  1629. },
  1630. "node_modules/@rollup/rollup-freebsd-arm64": {
  1631. "version": "4.59.0",
  1632. "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz",
  1633. "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==",
  1634. "cpu": [
  1635. "arm64"
  1636. ],
  1637. "license": "MIT",
  1638. "optional": true,
  1639. "os": [
  1640. "freebsd"
  1641. ]
  1642. },
  1643. "node_modules/@rollup/rollup-freebsd-x64": {
  1644. "version": "4.59.0",
  1645. "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz",
  1646. "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==",
  1647. "cpu": [
  1648. "x64"
  1649. ],
  1650. "license": "MIT",
  1651. "optional": true,
  1652. "os": [
  1653. "freebsd"
  1654. ]
  1655. },
  1656. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  1657. "version": "4.59.0",
  1658. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz",
  1659. "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==",
  1660. "cpu": [
  1661. "arm"
  1662. ],
  1663. "libc": [
  1664. "glibc"
  1665. ],
  1666. "license": "MIT",
  1667. "optional": true,
  1668. "os": [
  1669. "linux"
  1670. ]
  1671. },
  1672. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  1673. "version": "4.59.0",
  1674. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz",
  1675. "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==",
  1676. "cpu": [
  1677. "arm"
  1678. ],
  1679. "libc": [
  1680. "musl"
  1681. ],
  1682. "license": "MIT",
  1683. "optional": true,
  1684. "os": [
  1685. "linux"
  1686. ]
  1687. },
  1688. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  1689. "version": "4.59.0",
  1690. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz",
  1691. "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==",
  1692. "cpu": [
  1693. "arm64"
  1694. ],
  1695. "libc": [
  1696. "glibc"
  1697. ],
  1698. "license": "MIT",
  1699. "optional": true,
  1700. "os": [
  1701. "linux"
  1702. ]
  1703. },
  1704. "node_modules/@rollup/rollup-linux-arm64-musl": {
  1705. "version": "4.59.0",
  1706. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz",
  1707. "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==",
  1708. "cpu": [
  1709. "arm64"
  1710. ],
  1711. "libc": [
  1712. "musl"
  1713. ],
  1714. "license": "MIT",
  1715. "optional": true,
  1716. "os": [
  1717. "linux"
  1718. ]
  1719. },
  1720. "node_modules/@rollup/rollup-linux-loong64-gnu": {
  1721. "version": "4.59.0",
  1722. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz",
  1723. "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==",
  1724. "cpu": [
  1725. "loong64"
  1726. ],
  1727. "libc": [
  1728. "glibc"
  1729. ],
  1730. "license": "MIT",
  1731. "optional": true,
  1732. "os": [
  1733. "linux"
  1734. ]
  1735. },
  1736. "node_modules/@rollup/rollup-linux-loong64-musl": {
  1737. "version": "4.59.0",
  1738. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz",
  1739. "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==",
  1740. "cpu": [
  1741. "loong64"
  1742. ],
  1743. "libc": [
  1744. "musl"
  1745. ],
  1746. "license": "MIT",
  1747. "optional": true,
  1748. "os": [
  1749. "linux"
  1750. ]
  1751. },
  1752. "node_modules/@rollup/rollup-linux-ppc64-gnu": {
  1753. "version": "4.59.0",
  1754. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz",
  1755. "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==",
  1756. "cpu": [
  1757. "ppc64"
  1758. ],
  1759. "libc": [
  1760. "glibc"
  1761. ],
  1762. "license": "MIT",
  1763. "optional": true,
  1764. "os": [
  1765. "linux"
  1766. ]
  1767. },
  1768. "node_modules/@rollup/rollup-linux-ppc64-musl": {
  1769. "version": "4.59.0",
  1770. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz",
  1771. "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==",
  1772. "cpu": [
  1773. "ppc64"
  1774. ],
  1775. "libc": [
  1776. "musl"
  1777. ],
  1778. "license": "MIT",
  1779. "optional": true,
  1780. "os": [
  1781. "linux"
  1782. ]
  1783. },
  1784. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  1785. "version": "4.59.0",
  1786. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz",
  1787. "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==",
  1788. "cpu": [
  1789. "riscv64"
  1790. ],
  1791. "libc": [
  1792. "glibc"
  1793. ],
  1794. "license": "MIT",
  1795. "optional": true,
  1796. "os": [
  1797. "linux"
  1798. ]
  1799. },
  1800. "node_modules/@rollup/rollup-linux-riscv64-musl": {
  1801. "version": "4.59.0",
  1802. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz",
  1803. "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==",
  1804. "cpu": [
  1805. "riscv64"
  1806. ],
  1807. "libc": [
  1808. "musl"
  1809. ],
  1810. "license": "MIT",
  1811. "optional": true,
  1812. "os": [
  1813. "linux"
  1814. ]
  1815. },
  1816. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  1817. "version": "4.59.0",
  1818. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz",
  1819. "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==",
  1820. "cpu": [
  1821. "s390x"
  1822. ],
  1823. "libc": [
  1824. "glibc"
  1825. ],
  1826. "license": "MIT",
  1827. "optional": true,
  1828. "os": [
  1829. "linux"
  1830. ]
  1831. },
  1832. "node_modules/@rollup/rollup-linux-x64-gnu": {
  1833. "version": "4.59.0",
  1834. "cpu": [
  1835. "x64"
  1836. ],
  1837. "libc": [
  1838. "glibc"
  1839. ],
  1840. "license": "MIT",
  1841. "optional": true,
  1842. "os": [
  1843. "linux"
  1844. ]
  1845. },
  1846. "node_modules/@rollup/rollup-linux-x64-musl": {
  1847. "version": "4.59.0",
  1848. "cpu": [
  1849. "x64"
  1850. ],
  1851. "libc": [
  1852. "musl"
  1853. ],
  1854. "license": "MIT",
  1855. "optional": true,
  1856. "os": [
  1857. "linux"
  1858. ]
  1859. },
  1860. "node_modules/@rollup/rollup-openbsd-x64": {
  1861. "version": "4.59.0",
  1862. "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz",
  1863. "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==",
  1864. "cpu": [
  1865. "x64"
  1866. ],
  1867. "license": "MIT",
  1868. "optional": true,
  1869. "os": [
  1870. "openbsd"
  1871. ]
  1872. },
  1873. "node_modules/@rollup/rollup-openharmony-arm64": {
  1874. "version": "4.59.0",
  1875. "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz",
  1876. "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==",
  1877. "cpu": [
  1878. "arm64"
  1879. ],
  1880. "license": "MIT",
  1881. "optional": true,
  1882. "os": [
  1883. "openharmony"
  1884. ]
  1885. },
  1886. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  1887. "version": "4.59.0",
  1888. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz",
  1889. "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==",
  1890. "cpu": [
  1891. "arm64"
  1892. ],
  1893. "license": "MIT",
  1894. "optional": true,
  1895. "os": [
  1896. "win32"
  1897. ]
  1898. },
  1899. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  1900. "version": "4.59.0",
  1901. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz",
  1902. "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==",
  1903. "cpu": [
  1904. "ia32"
  1905. ],
  1906. "license": "MIT",
  1907. "optional": true,
  1908. "os": [
  1909. "win32"
  1910. ]
  1911. },
  1912. "node_modules/@rollup/rollup-win32-x64-gnu": {
  1913. "version": "4.59.0",
  1914. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz",
  1915. "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==",
  1916. "cpu": [
  1917. "x64"
  1918. ],
  1919. "license": "MIT",
  1920. "optional": true,
  1921. "os": [
  1922. "win32"
  1923. ]
  1924. },
  1925. "node_modules/@rollup/rollup-win32-x64-msvc": {
  1926. "version": "4.59.0",
  1927. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz",
  1928. "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==",
  1929. "cpu": [
  1930. "x64"
  1931. ],
  1932. "license": "MIT",
  1933. "optional": true,
  1934. "os": [
  1935. "win32"
  1936. ]
  1937. },
  1938. "node_modules/@swc/core": {
  1939. "version": "1.15.18",
  1940. "dev": true,
  1941. "hasInstallScript": true,
  1942. "license": "Apache-2.0",
  1943. "dependencies": {
  1944. "@swc/counter": "^0.1.3",
  1945. "@swc/types": "^0.1.25"
  1946. },
  1947. "engines": {
  1948. "node": ">=10"
  1949. },
  1950. "funding": {
  1951. "type": "opencollective",
  1952. "url": "https://opencollective.com/swc"
  1953. },
  1954. "optionalDependencies": {
  1955. "@swc/core-darwin-arm64": "1.15.18",
  1956. "@swc/core-darwin-x64": "1.15.18",
  1957. "@swc/core-linux-arm-gnueabihf": "1.15.18",
  1958. "@swc/core-linux-arm64-gnu": "1.15.18",
  1959. "@swc/core-linux-arm64-musl": "1.15.18",
  1960. "@swc/core-linux-x64-gnu": "1.15.18",
  1961. "@swc/core-linux-x64-musl": "1.15.18",
  1962. "@swc/core-win32-arm64-msvc": "1.15.18",
  1963. "@swc/core-win32-ia32-msvc": "1.15.18",
  1964. "@swc/core-win32-x64-msvc": "1.15.18"
  1965. },
  1966. "peerDependencies": {
  1967. "@swc/helpers": ">=0.5.17"
  1968. },
  1969. "peerDependenciesMeta": {
  1970. "@swc/helpers": {
  1971. "optional": true
  1972. }
  1973. }
  1974. },
  1975. "node_modules/@swc/core-darwin-arm64": {
  1976. "version": "1.15.18",
  1977. "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.15.18.tgz",
  1978. "integrity": "sha512-+mIv7uBuSaywN3C9LNuWaX1jJJ3SKfiJuE6Lr3bd+/1Iv8oMU7oLBjYMluX1UrEPzwN2qCdY6Io0yVicABoCwQ==",
  1979. "cpu": [
  1980. "arm64"
  1981. ],
  1982. "dev": true,
  1983. "license": "Apache-2.0 AND MIT",
  1984. "optional": true,
  1985. "os": [
  1986. "darwin"
  1987. ],
  1988. "engines": {
  1989. "node": ">=10"
  1990. }
  1991. },
  1992. "node_modules/@swc/core-darwin-x64": {
  1993. "version": "1.15.18",
  1994. "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.15.18.tgz",
  1995. "integrity": "sha512-wZle0eaQhnzxWX5V/2kEOI6Z9vl/lTFEC6V4EWcn+5pDjhemCpQv9e/TDJ0GIoiClX8EDWRvuZwh+Z3dhL1NAg==",
  1996. "cpu": [
  1997. "x64"
  1998. ],
  1999. "dev": true,
  2000. "license": "Apache-2.0 AND MIT",
  2001. "optional": true,
  2002. "os": [
  2003. "darwin"
  2004. ],
  2005. "engines": {
  2006. "node": ">=10"
  2007. }
  2008. },
  2009. "node_modules/@swc/core-linux-arm-gnueabihf": {
  2010. "version": "1.15.18",
  2011. "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.18.tgz",
  2012. "integrity": "sha512-ao61HGXVqrJFHAcPtF4/DegmwEkVCo4HApnotLU8ognfmU8x589z7+tcf3hU+qBiU1WOXV5fQX6W9Nzs6hjxDw==",
  2013. "cpu": [
  2014. "arm"
  2015. ],
  2016. "dev": true,
  2017. "license": "Apache-2.0",
  2018. "optional": true,
  2019. "os": [
  2020. "linux"
  2021. ],
  2022. "engines": {
  2023. "node": ">=10"
  2024. }
  2025. },
  2026. "node_modules/@swc/core-linux-arm64-gnu": {
  2027. "version": "1.15.18",
  2028. "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.18.tgz",
  2029. "integrity": "sha512-3xnctOBLIq3kj8PxOCgPrGjBLP/kNOddr6f5gukYt/1IZxsITQaU9TDyjeX6jG+FiCIHjCuWuffsyQDL5Ew1bg==",
  2030. "cpu": [
  2031. "arm64"
  2032. ],
  2033. "dev": true,
  2034. "libc": [
  2035. "glibc"
  2036. ],
  2037. "license": "Apache-2.0 AND MIT",
  2038. "optional": true,
  2039. "os": [
  2040. "linux"
  2041. ],
  2042. "engines": {
  2043. "node": ">=10"
  2044. }
  2045. },
  2046. "node_modules/@swc/core-linux-arm64-musl": {
  2047. "version": "1.15.18",
  2048. "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.18.tgz",
  2049. "integrity": "sha512-0a+Lix+FSSHBSBOA0XznCcHo5/1nA6oLLjcnocvzXeqtdjnPb+SvchItHI+lfeiuj1sClYPDvPMLSLyXFaiIKw==",
  2050. "cpu": [
  2051. "arm64"
  2052. ],
  2053. "dev": true,
  2054. "libc": [
  2055. "musl"
  2056. ],
  2057. "license": "Apache-2.0 AND MIT",
  2058. "optional": true,
  2059. "os": [
  2060. "linux"
  2061. ],
  2062. "engines": {
  2063. "node": ">=10"
  2064. }
  2065. },
  2066. "node_modules/@swc/core-linux-x64-gnu": {
  2067. "version": "1.15.18",
  2068. "cpu": [
  2069. "x64"
  2070. ],
  2071. "dev": true,
  2072. "libc": [
  2073. "glibc"
  2074. ],
  2075. "license": "Apache-2.0 AND MIT",
  2076. "optional": true,
  2077. "os": [
  2078. "linux"
  2079. ],
  2080. "engines": {
  2081. "node": ">=10"
  2082. }
  2083. },
  2084. "node_modules/@swc/core-linux-x64-musl": {
  2085. "version": "1.15.18",
  2086. "cpu": [
  2087. "x64"
  2088. ],
  2089. "dev": true,
  2090. "libc": [
  2091. "musl"
  2092. ],
  2093. "license": "Apache-2.0 AND MIT",
  2094. "optional": true,
  2095. "os": [
  2096. "linux"
  2097. ],
  2098. "engines": {
  2099. "node": ">=10"
  2100. }
  2101. },
  2102. "node_modules/@swc/core-win32-arm64-msvc": {
  2103. "version": "1.15.18",
  2104. "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.18.tgz",
  2105. "integrity": "sha512-zk0RYO+LjiBCat2RTMHzAWaMky0cra9loH4oRrLKLLNuL+jarxKLFDA8xTZWEkCPLjUTwlRN7d28eDLLMgtUcQ==",
  2106. "cpu": [
  2107. "arm64"
  2108. ],
  2109. "dev": true,
  2110. "license": "Apache-2.0 AND MIT",
  2111. "optional": true,
  2112. "os": [
  2113. "win32"
  2114. ],
  2115. "engines": {
  2116. "node": ">=10"
  2117. }
  2118. },
  2119. "node_modules/@swc/core-win32-ia32-msvc": {
  2120. "version": "1.15.18",
  2121. "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.18.tgz",
  2122. "integrity": "sha512-yVuTrZ0RccD5+PEkpcLOBAuPbYBXS6rslENvIXfvJGXSdX5QGi1ehC4BjAMl5FkKLiam4kJECUI0l7Hq7T1vwg==",
  2123. "cpu": [
  2124. "ia32"
  2125. ],
  2126. "dev": true,
  2127. "license": "Apache-2.0 AND MIT",
  2128. "optional": true,
  2129. "os": [
  2130. "win32"
  2131. ],
  2132. "engines": {
  2133. "node": ">=10"
  2134. }
  2135. },
  2136. "node_modules/@swc/core-win32-x64-msvc": {
  2137. "version": "1.15.18",
  2138. "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.18.tgz",
  2139. "integrity": "sha512-7NRmE4hmUQNCbYU3Hn9Tz57mK9Qq4c97ZS+YlamlK6qG9Fb5g/BB3gPDe0iLlJkns/sYv2VWSkm8c3NmbEGjbg==",
  2140. "cpu": [
  2141. "x64"
  2142. ],
  2143. "dev": true,
  2144. "license": "Apache-2.0 AND MIT",
  2145. "optional": true,
  2146. "os": [
  2147. "win32"
  2148. ],
  2149. "engines": {
  2150. "node": ">=10"
  2151. }
  2152. },
  2153. "node_modules/@swc/counter": {
  2154. "version": "0.1.3",
  2155. "dev": true,
  2156. "license": "Apache-2.0"
  2157. },
  2158. "node_modules/@swc/types": {
  2159. "version": "0.1.25",
  2160. "dev": true,
  2161. "license": "Apache-2.0",
  2162. "dependencies": {
  2163. "@swc/counter": "^0.1.3"
  2164. }
  2165. },
  2166. "node_modules/@tailwindcss/node": {
  2167. "version": "4.2.1",
  2168. "license": "MIT",
  2169. "dependencies": {
  2170. "@jridgewell/remapping": "^2.3.5",
  2171. "enhanced-resolve": "^5.19.0",
  2172. "jiti": "^2.6.1",
  2173. "lightningcss": "1.31.1",
  2174. "magic-string": "^0.30.21",
  2175. "source-map-js": "^1.2.1",
  2176. "tailwindcss": "4.2.1"
  2177. }
  2178. },
  2179. "node_modules/@tailwindcss/oxide": {
  2180. "version": "4.2.1",
  2181. "license": "MIT",
  2182. "engines": {
  2183. "node": ">= 20"
  2184. },
  2185. "optionalDependencies": {
  2186. "@tailwindcss/oxide-android-arm64": "4.2.1",
  2187. "@tailwindcss/oxide-darwin-arm64": "4.2.1",
  2188. "@tailwindcss/oxide-darwin-x64": "4.2.1",
  2189. "@tailwindcss/oxide-freebsd-x64": "4.2.1",
  2190. "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.1",
  2191. "@tailwindcss/oxide-linux-arm64-gnu": "4.2.1",
  2192. "@tailwindcss/oxide-linux-arm64-musl": "4.2.1",
  2193. "@tailwindcss/oxide-linux-x64-gnu": "4.2.1",
  2194. "@tailwindcss/oxide-linux-x64-musl": "4.2.1",
  2195. "@tailwindcss/oxide-wasm32-wasi": "4.2.1",
  2196. "@tailwindcss/oxide-win32-arm64-msvc": "4.2.1",
  2197. "@tailwindcss/oxide-win32-x64-msvc": "4.2.1"
  2198. }
  2199. },
  2200. "node_modules/@tailwindcss/oxide-android-arm64": {
  2201. "version": "4.2.1",
  2202. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.1.tgz",
  2203. "integrity": "sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==",
  2204. "cpu": [
  2205. "arm64"
  2206. ],
  2207. "license": "MIT",
  2208. "optional": true,
  2209. "os": [
  2210. "android"
  2211. ],
  2212. "engines": {
  2213. "node": ">= 20"
  2214. }
  2215. },
  2216. "node_modules/@tailwindcss/oxide-darwin-arm64": {
  2217. "version": "4.2.1",
  2218. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.1.tgz",
  2219. "integrity": "sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==",
  2220. "cpu": [
  2221. "arm64"
  2222. ],
  2223. "license": "MIT",
  2224. "optional": true,
  2225. "os": [
  2226. "darwin"
  2227. ],
  2228. "engines": {
  2229. "node": ">= 20"
  2230. }
  2231. },
  2232. "node_modules/@tailwindcss/oxide-darwin-x64": {
  2233. "version": "4.2.1",
  2234. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.1.tgz",
  2235. "integrity": "sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==",
  2236. "cpu": [
  2237. "x64"
  2238. ],
  2239. "license": "MIT",
  2240. "optional": true,
  2241. "os": [
  2242. "darwin"
  2243. ],
  2244. "engines": {
  2245. "node": ">= 20"
  2246. }
  2247. },
  2248. "node_modules/@tailwindcss/oxide-freebsd-x64": {
  2249. "version": "4.2.1",
  2250. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.1.tgz",
  2251. "integrity": "sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==",
  2252. "cpu": [
  2253. "x64"
  2254. ],
  2255. "license": "MIT",
  2256. "optional": true,
  2257. "os": [
  2258. "freebsd"
  2259. ],
  2260. "engines": {
  2261. "node": ">= 20"
  2262. }
  2263. },
  2264. "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
  2265. "version": "4.2.1",
  2266. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.1.tgz",
  2267. "integrity": "sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==",
  2268. "cpu": [
  2269. "arm"
  2270. ],
  2271. "license": "MIT",
  2272. "optional": true,
  2273. "os": [
  2274. "linux"
  2275. ],
  2276. "engines": {
  2277. "node": ">= 20"
  2278. }
  2279. },
  2280. "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
  2281. "version": "4.2.1",
  2282. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.1.tgz",
  2283. "integrity": "sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==",
  2284. "cpu": [
  2285. "arm64"
  2286. ],
  2287. "libc": [
  2288. "glibc"
  2289. ],
  2290. "license": "MIT",
  2291. "optional": true,
  2292. "os": [
  2293. "linux"
  2294. ],
  2295. "engines": {
  2296. "node": ">= 20"
  2297. }
  2298. },
  2299. "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
  2300. "version": "4.2.1",
  2301. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.1.tgz",
  2302. "integrity": "sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==",
  2303. "cpu": [
  2304. "arm64"
  2305. ],
  2306. "libc": [
  2307. "musl"
  2308. ],
  2309. "license": "MIT",
  2310. "optional": true,
  2311. "os": [
  2312. "linux"
  2313. ],
  2314. "engines": {
  2315. "node": ">= 20"
  2316. }
  2317. },
  2318. "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
  2319. "version": "4.2.1",
  2320. "cpu": [
  2321. "x64"
  2322. ],
  2323. "libc": [
  2324. "glibc"
  2325. ],
  2326. "license": "MIT",
  2327. "optional": true,
  2328. "os": [
  2329. "linux"
  2330. ],
  2331. "engines": {
  2332. "node": ">= 20"
  2333. }
  2334. },
  2335. "node_modules/@tailwindcss/oxide-linux-x64-musl": {
  2336. "version": "4.2.1",
  2337. "cpu": [
  2338. "x64"
  2339. ],
  2340. "libc": [
  2341. "musl"
  2342. ],
  2343. "license": "MIT",
  2344. "optional": true,
  2345. "os": [
  2346. "linux"
  2347. ],
  2348. "engines": {
  2349. "node": ">= 20"
  2350. }
  2351. },
  2352. "node_modules/@tailwindcss/oxide-wasm32-wasi": {
  2353. "version": "4.2.1",
  2354. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.1.tgz",
  2355. "integrity": "sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==",
  2356. "bundleDependencies": [
  2357. "@napi-rs/wasm-runtime",
  2358. "@emnapi/core",
  2359. "@emnapi/runtime",
  2360. "@tybys/wasm-util",
  2361. "@emnapi/wasi-threads",
  2362. "tslib"
  2363. ],
  2364. "cpu": [
  2365. "wasm32"
  2366. ],
  2367. "license": "MIT",
  2368. "optional": true,
  2369. "dependencies": {
  2370. "@emnapi/core": "^1.8.1",
  2371. "@emnapi/runtime": "^1.8.1",
  2372. "@emnapi/wasi-threads": "^1.1.0",
  2373. "@napi-rs/wasm-runtime": "^1.1.1",
  2374. "@tybys/wasm-util": "^0.10.1",
  2375. "tslib": "^2.8.1"
  2376. },
  2377. "engines": {
  2378. "node": ">=14.0.0"
  2379. }
  2380. },
  2381. "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
  2382. "version": "4.2.1",
  2383. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.1.tgz",
  2384. "integrity": "sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==",
  2385. "cpu": [
  2386. "arm64"
  2387. ],
  2388. "license": "MIT",
  2389. "optional": true,
  2390. "os": [
  2391. "win32"
  2392. ],
  2393. "engines": {
  2394. "node": ">= 20"
  2395. }
  2396. },
  2397. "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
  2398. "version": "4.2.1",
  2399. "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.1.tgz",
  2400. "integrity": "sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==",
  2401. "cpu": [
  2402. "x64"
  2403. ],
  2404. "license": "MIT",
  2405. "optional": true,
  2406. "os": [
  2407. "win32"
  2408. ],
  2409. "engines": {
  2410. "node": ">= 20"
  2411. }
  2412. },
  2413. "node_modules/@tailwindcss/vite": {
  2414. "version": "4.2.1",
  2415. "license": "MIT",
  2416. "dependencies": {
  2417. "@tailwindcss/node": "4.2.1",
  2418. "@tailwindcss/oxide": "4.2.1",
  2419. "tailwindcss": "4.2.1"
  2420. },
  2421. "peerDependencies": {
  2422. "vite": "^5.2.0 || ^6 || ^7"
  2423. }
  2424. },
  2425. "node_modules/@types/estree": {
  2426. "version": "1.0.8",
  2427. "license": "MIT"
  2428. },
  2429. "node_modules/@types/json-schema": {
  2430. "version": "7.0.15",
  2431. "dev": true,
  2432. "license": "MIT"
  2433. },
  2434. "node_modules/@types/node": {
  2435. "version": "24.12.0",
  2436. "devOptional": true,
  2437. "license": "MIT",
  2438. "dependencies": {
  2439. "undici-types": "~7.16.0"
  2440. }
  2441. },
  2442. "node_modules/@types/react": {
  2443. "version": "19.2.14",
  2444. "devOptional": true,
  2445. "license": "MIT",
  2446. "dependencies": {
  2447. "csstype": "^3.2.2"
  2448. }
  2449. },
  2450. "node_modules/@types/react-dom": {
  2451. "version": "19.2.3",
  2452. "devOptional": true,
  2453. "license": "MIT",
  2454. "peerDependencies": {
  2455. "@types/react": "^19.2.0"
  2456. }
  2457. },
  2458. "node_modules/@typescript-eslint/eslint-plugin": {
  2459. "version": "8.56.1",
  2460. "dev": true,
  2461. "license": "MIT",
  2462. "dependencies": {
  2463. "@eslint-community/regexpp": "^4.12.2",
  2464. "@typescript-eslint/scope-manager": "8.56.1",
  2465. "@typescript-eslint/type-utils": "8.56.1",
  2466. "@typescript-eslint/utils": "8.56.1",
  2467. "@typescript-eslint/visitor-keys": "8.56.1",
  2468. "ignore": "^7.0.5",
  2469. "natural-compare": "^1.4.0",
  2470. "ts-api-utils": "^2.4.0"
  2471. },
  2472. "engines": {
  2473. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2474. },
  2475. "funding": {
  2476. "type": "opencollective",
  2477. "url": "https://opencollective.com/typescript-eslint"
  2478. },
  2479. "peerDependencies": {
  2480. "@typescript-eslint/parser": "^8.56.1",
  2481. "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
  2482. "typescript": ">=4.8.4 <6.0.0"
  2483. }
  2484. },
  2485. "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
  2486. "version": "7.0.5",
  2487. "dev": true,
  2488. "license": "MIT",
  2489. "engines": {
  2490. "node": ">= 4"
  2491. }
  2492. },
  2493. "node_modules/@typescript-eslint/parser": {
  2494. "version": "8.56.1",
  2495. "dev": true,
  2496. "license": "MIT",
  2497. "dependencies": {
  2498. "@typescript-eslint/scope-manager": "8.56.1",
  2499. "@typescript-eslint/types": "8.56.1",
  2500. "@typescript-eslint/typescript-estree": "8.56.1",
  2501. "@typescript-eslint/visitor-keys": "8.56.1",
  2502. "debug": "^4.4.3"
  2503. },
  2504. "engines": {
  2505. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2506. },
  2507. "funding": {
  2508. "type": "opencollective",
  2509. "url": "https://opencollective.com/typescript-eslint"
  2510. },
  2511. "peerDependencies": {
  2512. "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
  2513. "typescript": ">=4.8.4 <6.0.0"
  2514. }
  2515. },
  2516. "node_modules/@typescript-eslint/project-service": {
  2517. "version": "8.56.1",
  2518. "dev": true,
  2519. "license": "MIT",
  2520. "dependencies": {
  2521. "@typescript-eslint/tsconfig-utils": "^8.56.1",
  2522. "@typescript-eslint/types": "^8.56.1",
  2523. "debug": "^4.4.3"
  2524. },
  2525. "engines": {
  2526. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2527. },
  2528. "funding": {
  2529. "type": "opencollective",
  2530. "url": "https://opencollective.com/typescript-eslint"
  2531. },
  2532. "peerDependencies": {
  2533. "typescript": ">=4.8.4 <6.0.0"
  2534. }
  2535. },
  2536. "node_modules/@typescript-eslint/scope-manager": {
  2537. "version": "8.56.1",
  2538. "dev": true,
  2539. "license": "MIT",
  2540. "dependencies": {
  2541. "@typescript-eslint/types": "8.56.1",
  2542. "@typescript-eslint/visitor-keys": "8.56.1"
  2543. },
  2544. "engines": {
  2545. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2546. },
  2547. "funding": {
  2548. "type": "opencollective",
  2549. "url": "https://opencollective.com/typescript-eslint"
  2550. }
  2551. },
  2552. "node_modules/@typescript-eslint/tsconfig-utils": {
  2553. "version": "8.56.1",
  2554. "dev": true,
  2555. "license": "MIT",
  2556. "engines": {
  2557. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2558. },
  2559. "funding": {
  2560. "type": "opencollective",
  2561. "url": "https://opencollective.com/typescript-eslint"
  2562. },
  2563. "peerDependencies": {
  2564. "typescript": ">=4.8.4 <6.0.0"
  2565. }
  2566. },
  2567. "node_modules/@typescript-eslint/type-utils": {
  2568. "version": "8.56.1",
  2569. "dev": true,
  2570. "license": "MIT",
  2571. "dependencies": {
  2572. "@typescript-eslint/types": "8.56.1",
  2573. "@typescript-eslint/typescript-estree": "8.56.1",
  2574. "@typescript-eslint/utils": "8.56.1",
  2575. "debug": "^4.4.3",
  2576. "ts-api-utils": "^2.4.0"
  2577. },
  2578. "engines": {
  2579. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2580. },
  2581. "funding": {
  2582. "type": "opencollective",
  2583. "url": "https://opencollective.com/typescript-eslint"
  2584. },
  2585. "peerDependencies": {
  2586. "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
  2587. "typescript": ">=4.8.4 <6.0.0"
  2588. }
  2589. },
  2590. "node_modules/@typescript-eslint/types": {
  2591. "version": "8.56.1",
  2592. "dev": true,
  2593. "license": "MIT",
  2594. "engines": {
  2595. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2596. },
  2597. "funding": {
  2598. "type": "opencollective",
  2599. "url": "https://opencollective.com/typescript-eslint"
  2600. }
  2601. },
  2602. "node_modules/@typescript-eslint/typescript-estree": {
  2603. "version": "8.56.1",
  2604. "dev": true,
  2605. "license": "MIT",
  2606. "dependencies": {
  2607. "@typescript-eslint/project-service": "8.56.1",
  2608. "@typescript-eslint/tsconfig-utils": "8.56.1",
  2609. "@typescript-eslint/types": "8.56.1",
  2610. "@typescript-eslint/visitor-keys": "8.56.1",
  2611. "debug": "^4.4.3",
  2612. "minimatch": "^10.2.2",
  2613. "semver": "^7.7.3",
  2614. "tinyglobby": "^0.2.15",
  2615. "ts-api-utils": "^2.4.0"
  2616. },
  2617. "engines": {
  2618. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2619. },
  2620. "funding": {
  2621. "type": "opencollective",
  2622. "url": "https://opencollective.com/typescript-eslint"
  2623. },
  2624. "peerDependencies": {
  2625. "typescript": ">=4.8.4 <6.0.0"
  2626. }
  2627. },
  2628. "node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
  2629. "version": "4.0.4",
  2630. "dev": true,
  2631. "license": "MIT",
  2632. "engines": {
  2633. "node": "18 || 20 || >=22"
  2634. }
  2635. },
  2636. "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
  2637. "version": "5.0.4",
  2638. "dev": true,
  2639. "license": "MIT",
  2640. "dependencies": {
  2641. "balanced-match": "^4.0.2"
  2642. },
  2643. "engines": {
  2644. "node": "18 || 20 || >=22"
  2645. }
  2646. },
  2647. "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
  2648. "version": "10.2.4",
  2649. "dev": true,
  2650. "license": "BlueOak-1.0.0",
  2651. "dependencies": {
  2652. "brace-expansion": "^5.0.2"
  2653. },
  2654. "engines": {
  2655. "node": "18 || 20 || >=22"
  2656. },
  2657. "funding": {
  2658. "url": "https://github.com/sponsors/isaacs"
  2659. }
  2660. },
  2661. "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
  2662. "version": "7.7.4",
  2663. "dev": true,
  2664. "license": "ISC",
  2665. "bin": {
  2666. "semver": "bin/semver.js"
  2667. },
  2668. "engines": {
  2669. "node": ">=10"
  2670. }
  2671. },
  2672. "node_modules/@typescript-eslint/utils": {
  2673. "version": "8.56.1",
  2674. "dev": true,
  2675. "license": "MIT",
  2676. "dependencies": {
  2677. "@eslint-community/eslint-utils": "^4.9.1",
  2678. "@typescript-eslint/scope-manager": "8.56.1",
  2679. "@typescript-eslint/types": "8.56.1",
  2680. "@typescript-eslint/typescript-estree": "8.56.1"
  2681. },
  2682. "engines": {
  2683. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2684. },
  2685. "funding": {
  2686. "type": "opencollective",
  2687. "url": "https://opencollective.com/typescript-eslint"
  2688. },
  2689. "peerDependencies": {
  2690. "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
  2691. "typescript": ">=4.8.4 <6.0.0"
  2692. }
  2693. },
  2694. "node_modules/@typescript-eslint/visitor-keys": {
  2695. "version": "8.56.1",
  2696. "dev": true,
  2697. "license": "MIT",
  2698. "dependencies": {
  2699. "@typescript-eslint/types": "8.56.1",
  2700. "eslint-visitor-keys": "^5.0.0"
  2701. },
  2702. "engines": {
  2703. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  2704. },
  2705. "funding": {
  2706. "type": "opencollective",
  2707. "url": "https://opencollective.com/typescript-eslint"
  2708. }
  2709. },
  2710. "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
  2711. "version": "5.0.1",
  2712. "dev": true,
  2713. "license": "Apache-2.0",
  2714. "engines": {
  2715. "node": "^20.19.0 || ^22.13.0 || >=24"
  2716. },
  2717. "funding": {
  2718. "url": "https://opencollective.com/eslint"
  2719. }
  2720. },
  2721. "node_modules/@vitejs/plugin-react-swc": {
  2722. "version": "4.2.3",
  2723. "dev": true,
  2724. "license": "MIT",
  2725. "dependencies": {
  2726. "@rolldown/pluginutils": "1.0.0-rc.2",
  2727. "@swc/core": "^1.15.11"
  2728. },
  2729. "engines": {
  2730. "node": "^20.19.0 || >=22.12.0"
  2731. },
  2732. "peerDependencies": {
  2733. "vite": "^4 || ^5 || ^6 || ^7"
  2734. }
  2735. },
  2736. "node_modules/acorn": {
  2737. "version": "8.16.0",
  2738. "dev": true,
  2739. "license": "MIT",
  2740. "bin": {
  2741. "acorn": "bin/acorn"
  2742. },
  2743. "engines": {
  2744. "node": ">=0.4.0"
  2745. }
  2746. },
  2747. "node_modules/acorn-jsx": {
  2748. "version": "5.3.2",
  2749. "dev": true,
  2750. "license": "MIT",
  2751. "peerDependencies": {
  2752. "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
  2753. }
  2754. },
  2755. "node_modules/ajv": {
  2756. "version": "6.14.0",
  2757. "dev": true,
  2758. "license": "MIT",
  2759. "dependencies": {
  2760. "fast-deep-equal": "^3.1.1",
  2761. "fast-json-stable-stringify": "^2.0.0",
  2762. "json-schema-traverse": "^0.4.1",
  2763. "uri-js": "^4.2.2"
  2764. },
  2765. "funding": {
  2766. "type": "github",
  2767. "url": "https://github.com/sponsors/epoberezkin"
  2768. }
  2769. },
  2770. "node_modules/ansi-styles": {
  2771. "version": "4.3.0",
  2772. "dev": true,
  2773. "license": "MIT",
  2774. "dependencies": {
  2775. "color-convert": "^2.0.1"
  2776. },
  2777. "engines": {
  2778. "node": ">=8"
  2779. },
  2780. "funding": {
  2781. "url": "https://github.com/chalk/ansi-styles?sponsor=1"
  2782. }
  2783. },
  2784. "node_modules/argparse": {
  2785. "version": "2.0.1",
  2786. "dev": true,
  2787. "license": "Python-2.0"
  2788. },
  2789. "node_modules/aria-hidden": {
  2790. "version": "1.2.6",
  2791. "license": "MIT",
  2792. "dependencies": {
  2793. "tslib": "^2.0.0"
  2794. },
  2795. "engines": {
  2796. "node": ">=10"
  2797. }
  2798. },
  2799. "node_modules/balanced-match": {
  2800. "version": "1.0.2",
  2801. "dev": true,
  2802. "license": "MIT"
  2803. },
  2804. "node_modules/baseline-browser-mapping": {
  2805. "version": "2.10.0",
  2806. "dev": true,
  2807. "license": "Apache-2.0",
  2808. "bin": {
  2809. "baseline-browser-mapping": "dist/cli.cjs"
  2810. },
  2811. "engines": {
  2812. "node": ">=6.0.0"
  2813. }
  2814. },
  2815. "node_modules/brace-expansion": {
  2816. "version": "1.1.12",
  2817. "dev": true,
  2818. "license": "MIT",
  2819. "dependencies": {
  2820. "balanced-match": "^1.0.0",
  2821. "concat-map": "0.0.1"
  2822. }
  2823. },
  2824. "node_modules/browserslist": {
  2825. "version": "4.28.1",
  2826. "dev": true,
  2827. "funding": [
  2828. {
  2829. "type": "opencollective",
  2830. "url": "https://opencollective.com/browserslist"
  2831. },
  2832. {
  2833. "type": "tidelift",
  2834. "url": "https://tidelift.com/funding/github/npm/browserslist"
  2835. },
  2836. {
  2837. "type": "github",
  2838. "url": "https://github.com/sponsors/ai"
  2839. }
  2840. ],
  2841. "license": "MIT",
  2842. "dependencies": {
  2843. "baseline-browser-mapping": "^2.9.0",
  2844. "caniuse-lite": "^1.0.30001759",
  2845. "electron-to-chromium": "^1.5.263",
  2846. "node-releases": "^2.0.27",
  2847. "update-browserslist-db": "^1.2.0"
  2848. },
  2849. "bin": {
  2850. "browserslist": "cli.js"
  2851. },
  2852. "engines": {
  2853. "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
  2854. }
  2855. },
  2856. "node_modules/callsites": {
  2857. "version": "3.1.0",
  2858. "dev": true,
  2859. "license": "MIT",
  2860. "engines": {
  2861. "node": ">=6"
  2862. }
  2863. },
  2864. "node_modules/caniuse-lite": {
  2865. "version": "1.0.30001777",
  2866. "dev": true,
  2867. "funding": [
  2868. {
  2869. "type": "opencollective",
  2870. "url": "https://opencollective.com/browserslist"
  2871. },
  2872. {
  2873. "type": "tidelift",
  2874. "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
  2875. },
  2876. {
  2877. "type": "github",
  2878. "url": "https://github.com/sponsors/ai"
  2879. }
  2880. ],
  2881. "license": "CC-BY-4.0"
  2882. },
  2883. "node_modules/chalk": {
  2884. "version": "4.1.2",
  2885. "dev": true,
  2886. "license": "MIT",
  2887. "dependencies": {
  2888. "ansi-styles": "^4.1.0",
  2889. "supports-color": "^7.1.0"
  2890. },
  2891. "engines": {
  2892. "node": ">=10"
  2893. },
  2894. "funding": {
  2895. "url": "https://github.com/chalk/chalk?sponsor=1"
  2896. }
  2897. },
  2898. "node_modules/class-variance-authority": {
  2899. "version": "0.7.1",
  2900. "license": "Apache-2.0",
  2901. "dependencies": {
  2902. "clsx": "^2.1.1"
  2903. },
  2904. "funding": {
  2905. "url": "https://polar.sh/cva"
  2906. }
  2907. },
  2908. "node_modules/clsx": {
  2909. "version": "2.1.1",
  2910. "license": "MIT",
  2911. "engines": {
  2912. "node": ">=6"
  2913. }
  2914. },
  2915. "node_modules/color-convert": {
  2916. "version": "2.0.1",
  2917. "dev": true,
  2918. "license": "MIT",
  2919. "dependencies": {
  2920. "color-name": "~1.1.4"
  2921. },
  2922. "engines": {
  2923. "node": ">=7.0.0"
  2924. }
  2925. },
  2926. "node_modules/color-name": {
  2927. "version": "1.1.4",
  2928. "dev": true,
  2929. "license": "MIT"
  2930. },
  2931. "node_modules/concat-map": {
  2932. "version": "0.0.1",
  2933. "dev": true,
  2934. "license": "MIT"
  2935. },
  2936. "node_modules/convert-source-map": {
  2937. "version": "2.0.0",
  2938. "dev": true,
  2939. "license": "MIT"
  2940. },
  2941. "node_modules/cross-spawn": {
  2942. "version": "7.0.6",
  2943. "dev": true,
  2944. "license": "MIT",
  2945. "dependencies": {
  2946. "path-key": "^3.1.0",
  2947. "shebang-command": "^2.0.0",
  2948. "which": "^2.0.1"
  2949. },
  2950. "engines": {
  2951. "node": ">= 8"
  2952. }
  2953. },
  2954. "node_modules/csstype": {
  2955. "version": "3.2.3",
  2956. "devOptional": true,
  2957. "license": "MIT"
  2958. },
  2959. "node_modules/debug": {
  2960. "version": "4.4.3",
  2961. "dev": true,
  2962. "license": "MIT",
  2963. "dependencies": {
  2964. "ms": "^2.1.3"
  2965. },
  2966. "engines": {
  2967. "node": ">=6.0"
  2968. },
  2969. "peerDependenciesMeta": {
  2970. "supports-color": {
  2971. "optional": true
  2972. }
  2973. }
  2974. },
  2975. "node_modules/deep-is": {
  2976. "version": "0.1.4",
  2977. "dev": true,
  2978. "license": "MIT"
  2979. },
  2980. "node_modules/detect-libc": {
  2981. "version": "2.1.2",
  2982. "license": "Apache-2.0",
  2983. "engines": {
  2984. "node": ">=8"
  2985. }
  2986. },
  2987. "node_modules/detect-node-es": {
  2988. "version": "1.1.0",
  2989. "license": "MIT"
  2990. },
  2991. "node_modules/electron-to-chromium": {
  2992. "version": "1.5.307",
  2993. "dev": true,
  2994. "license": "ISC"
  2995. },
  2996. "node_modules/enhanced-resolve": {
  2997. "version": "5.20.0",
  2998. "license": "MIT",
  2999. "dependencies": {
  3000. "graceful-fs": "^4.2.4",
  3001. "tapable": "^2.3.0"
  3002. },
  3003. "engines": {
  3004. "node": ">=10.13.0"
  3005. }
  3006. },
  3007. "node_modules/esbuild": {
  3008. "version": "0.27.3",
  3009. "hasInstallScript": true,
  3010. "license": "MIT",
  3011. "bin": {
  3012. "esbuild": "bin/esbuild"
  3013. },
  3014. "engines": {
  3015. "node": ">=18"
  3016. },
  3017. "optionalDependencies": {
  3018. "@esbuild/aix-ppc64": "0.27.3",
  3019. "@esbuild/android-arm": "0.27.3",
  3020. "@esbuild/android-arm64": "0.27.3",
  3021. "@esbuild/android-x64": "0.27.3",
  3022. "@esbuild/darwin-arm64": "0.27.3",
  3023. "@esbuild/darwin-x64": "0.27.3",
  3024. "@esbuild/freebsd-arm64": "0.27.3",
  3025. "@esbuild/freebsd-x64": "0.27.3",
  3026. "@esbuild/linux-arm": "0.27.3",
  3027. "@esbuild/linux-arm64": "0.27.3",
  3028. "@esbuild/linux-ia32": "0.27.3",
  3029. "@esbuild/linux-loong64": "0.27.3",
  3030. "@esbuild/linux-mips64el": "0.27.3",
  3031. "@esbuild/linux-ppc64": "0.27.3",
  3032. "@esbuild/linux-riscv64": "0.27.3",
  3033. "@esbuild/linux-s390x": "0.27.3",
  3034. "@esbuild/linux-x64": "0.27.3",
  3035. "@esbuild/netbsd-arm64": "0.27.3",
  3036. "@esbuild/netbsd-x64": "0.27.3",
  3037. "@esbuild/openbsd-arm64": "0.27.3",
  3038. "@esbuild/openbsd-x64": "0.27.3",
  3039. "@esbuild/openharmony-arm64": "0.27.3",
  3040. "@esbuild/sunos-x64": "0.27.3",
  3041. "@esbuild/win32-arm64": "0.27.3",
  3042. "@esbuild/win32-ia32": "0.27.3",
  3043. "@esbuild/win32-x64": "0.27.3"
  3044. }
  3045. },
  3046. "node_modules/escalade": {
  3047. "version": "3.2.0",
  3048. "dev": true,
  3049. "license": "MIT",
  3050. "engines": {
  3051. "node": ">=6"
  3052. }
  3053. },
  3054. "node_modules/escape-string-regexp": {
  3055. "version": "4.0.0",
  3056. "dev": true,
  3057. "license": "MIT",
  3058. "engines": {
  3059. "node": ">=10"
  3060. },
  3061. "funding": {
  3062. "url": "https://github.com/sponsors/sindresorhus"
  3063. }
  3064. },
  3065. "node_modules/eslint": {
  3066. "version": "9.39.3",
  3067. "dev": true,
  3068. "license": "MIT",
  3069. "dependencies": {
  3070. "@eslint-community/eslint-utils": "^4.8.0",
  3071. "@eslint-community/regexpp": "^4.12.1",
  3072. "@eslint/config-array": "^0.21.1",
  3073. "@eslint/config-helpers": "^0.4.2",
  3074. "@eslint/core": "^0.17.0",
  3075. "@eslint/eslintrc": "^3.3.1",
  3076. "@eslint/js": "9.39.3",
  3077. "@eslint/plugin-kit": "^0.4.1",
  3078. "@humanfs/node": "^0.16.6",
  3079. "@humanwhocodes/module-importer": "^1.0.1",
  3080. "@humanwhocodes/retry": "^0.4.2",
  3081. "@types/estree": "^1.0.6",
  3082. "ajv": "^6.12.4",
  3083. "chalk": "^4.0.0",
  3084. "cross-spawn": "^7.0.6",
  3085. "debug": "^4.3.2",
  3086. "escape-string-regexp": "^4.0.0",
  3087. "eslint-scope": "^8.4.0",
  3088. "eslint-visitor-keys": "^4.2.1",
  3089. "espree": "^10.4.0",
  3090. "esquery": "^1.5.0",
  3091. "esutils": "^2.0.2",
  3092. "fast-deep-equal": "^3.1.3",
  3093. "file-entry-cache": "^8.0.0",
  3094. "find-up": "^5.0.0",
  3095. "glob-parent": "^6.0.2",
  3096. "ignore": "^5.2.0",
  3097. "imurmurhash": "^0.1.4",
  3098. "is-glob": "^4.0.0",
  3099. "json-stable-stringify-without-jsonify": "^1.0.1",
  3100. "lodash.merge": "^4.6.2",
  3101. "minimatch": "^3.1.2",
  3102. "natural-compare": "^1.4.0",
  3103. "optionator": "^0.9.3"
  3104. },
  3105. "bin": {
  3106. "eslint": "bin/eslint.js"
  3107. },
  3108. "engines": {
  3109. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  3110. },
  3111. "funding": {
  3112. "url": "https://eslint.org/donate"
  3113. },
  3114. "peerDependencies": {
  3115. "jiti": "*"
  3116. },
  3117. "peerDependenciesMeta": {
  3118. "jiti": {
  3119. "optional": true
  3120. }
  3121. }
  3122. },
  3123. "node_modules/eslint-plugin-react-hooks": {
  3124. "version": "7.0.1",
  3125. "dev": true,
  3126. "license": "MIT",
  3127. "dependencies": {
  3128. "@babel/core": "^7.24.4",
  3129. "@babel/parser": "^7.24.4",
  3130. "hermes-parser": "^0.25.1",
  3131. "zod": "^3.25.0 || ^4.0.0",
  3132. "zod-validation-error": "^3.5.0 || ^4.0.0"
  3133. },
  3134. "engines": {
  3135. "node": ">=18"
  3136. },
  3137. "peerDependencies": {
  3138. "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
  3139. }
  3140. },
  3141. "node_modules/eslint-plugin-react-refresh": {
  3142. "version": "0.4.26",
  3143. "dev": true,
  3144. "license": "MIT",
  3145. "peerDependencies": {
  3146. "eslint": ">=8.40"
  3147. }
  3148. },
  3149. "node_modules/eslint-scope": {
  3150. "version": "8.4.0",
  3151. "dev": true,
  3152. "license": "BSD-2-Clause",
  3153. "dependencies": {
  3154. "esrecurse": "^4.3.0",
  3155. "estraverse": "^5.2.0"
  3156. },
  3157. "engines": {
  3158. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  3159. },
  3160. "funding": {
  3161. "url": "https://opencollective.com/eslint"
  3162. }
  3163. },
  3164. "node_modules/eslint-visitor-keys": {
  3165. "version": "4.2.1",
  3166. "dev": true,
  3167. "license": "Apache-2.0",
  3168. "engines": {
  3169. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  3170. },
  3171. "funding": {
  3172. "url": "https://opencollective.com/eslint"
  3173. }
  3174. },
  3175. "node_modules/espree": {
  3176. "version": "10.4.0",
  3177. "dev": true,
  3178. "license": "BSD-2-Clause",
  3179. "dependencies": {
  3180. "acorn": "^8.15.0",
  3181. "acorn-jsx": "^5.3.2",
  3182. "eslint-visitor-keys": "^4.2.1"
  3183. },
  3184. "engines": {
  3185. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  3186. },
  3187. "funding": {
  3188. "url": "https://opencollective.com/eslint"
  3189. }
  3190. },
  3191. "node_modules/esquery": {
  3192. "version": "1.7.0",
  3193. "dev": true,
  3194. "license": "BSD-3-Clause",
  3195. "dependencies": {
  3196. "estraverse": "^5.1.0"
  3197. },
  3198. "engines": {
  3199. "node": ">=0.10"
  3200. }
  3201. },
  3202. "node_modules/esrecurse": {
  3203. "version": "4.3.0",
  3204. "dev": true,
  3205. "license": "BSD-2-Clause",
  3206. "dependencies": {
  3207. "estraverse": "^5.2.0"
  3208. },
  3209. "engines": {
  3210. "node": ">=4.0"
  3211. }
  3212. },
  3213. "node_modules/estraverse": {
  3214. "version": "5.3.0",
  3215. "dev": true,
  3216. "license": "BSD-2-Clause",
  3217. "engines": {
  3218. "node": ">=4.0"
  3219. }
  3220. },
  3221. "node_modules/esutils": {
  3222. "version": "2.0.3",
  3223. "dev": true,
  3224. "license": "BSD-2-Clause",
  3225. "engines": {
  3226. "node": ">=0.10.0"
  3227. }
  3228. },
  3229. "node_modules/fast-deep-equal": {
  3230. "version": "3.1.3",
  3231. "dev": true,
  3232. "license": "MIT"
  3233. },
  3234. "node_modules/fast-json-stable-stringify": {
  3235. "version": "2.1.0",
  3236. "dev": true,
  3237. "license": "MIT"
  3238. },
  3239. "node_modules/fast-levenshtein": {
  3240. "version": "2.0.6",
  3241. "dev": true,
  3242. "license": "MIT"
  3243. },
  3244. "node_modules/fdir": {
  3245. "version": "6.5.0",
  3246. "license": "MIT",
  3247. "engines": {
  3248. "node": ">=12.0.0"
  3249. },
  3250. "peerDependencies": {
  3251. "picomatch": "^3 || ^4"
  3252. },
  3253. "peerDependenciesMeta": {
  3254. "picomatch": {
  3255. "optional": true
  3256. }
  3257. }
  3258. },
  3259. "node_modules/file-entry-cache": {
  3260. "version": "8.0.0",
  3261. "dev": true,
  3262. "license": "MIT",
  3263. "dependencies": {
  3264. "flat-cache": "^4.0.0"
  3265. },
  3266. "engines": {
  3267. "node": ">=16.0.0"
  3268. }
  3269. },
  3270. "node_modules/find-up": {
  3271. "version": "5.0.0",
  3272. "dev": true,
  3273. "license": "MIT",
  3274. "dependencies": {
  3275. "locate-path": "^6.0.0",
  3276. "path-exists": "^4.0.0"
  3277. },
  3278. "engines": {
  3279. "node": ">=10"
  3280. },
  3281. "funding": {
  3282. "url": "https://github.com/sponsors/sindresorhus"
  3283. }
  3284. },
  3285. "node_modules/flat-cache": {
  3286. "version": "4.0.1",
  3287. "dev": true,
  3288. "license": "MIT",
  3289. "dependencies": {
  3290. "flatted": "^3.2.9",
  3291. "keyv": "^4.5.4"
  3292. },
  3293. "engines": {
  3294. "node": ">=16"
  3295. }
  3296. },
  3297. "node_modules/flatted": {
  3298. "version": "3.4.1",
  3299. "dev": true,
  3300. "license": "ISC"
  3301. },
  3302. "node_modules/fsevents": {
  3303. "version": "2.3.3",
  3304. "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  3305. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  3306. "hasInstallScript": true,
  3307. "license": "MIT",
  3308. "optional": true,
  3309. "os": [
  3310. "darwin"
  3311. ],
  3312. "engines": {
  3313. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  3314. }
  3315. },
  3316. "node_modules/gensync": {
  3317. "version": "1.0.0-beta.2",
  3318. "dev": true,
  3319. "license": "MIT",
  3320. "engines": {
  3321. "node": ">=6.9.0"
  3322. }
  3323. },
  3324. "node_modules/get-nonce": {
  3325. "version": "1.0.1",
  3326. "license": "MIT",
  3327. "engines": {
  3328. "node": ">=6"
  3329. }
  3330. },
  3331. "node_modules/glob-parent": {
  3332. "version": "6.0.2",
  3333. "dev": true,
  3334. "license": "ISC",
  3335. "dependencies": {
  3336. "is-glob": "^4.0.3"
  3337. },
  3338. "engines": {
  3339. "node": ">=10.13.0"
  3340. }
  3341. },
  3342. "node_modules/globals": {
  3343. "version": "16.5.0",
  3344. "dev": true,
  3345. "license": "MIT",
  3346. "engines": {
  3347. "node": ">=18"
  3348. },
  3349. "funding": {
  3350. "url": "https://github.com/sponsors/sindresorhus"
  3351. }
  3352. },
  3353. "node_modules/graceful-fs": {
  3354. "version": "4.2.11",
  3355. "license": "ISC"
  3356. },
  3357. "node_modules/has-flag": {
  3358. "version": "4.0.0",
  3359. "dev": true,
  3360. "license": "MIT",
  3361. "engines": {
  3362. "node": ">=8"
  3363. }
  3364. },
  3365. "node_modules/hermes-estree": {
  3366. "version": "0.25.1",
  3367. "dev": true,
  3368. "license": "MIT"
  3369. },
  3370. "node_modules/hermes-parser": {
  3371. "version": "0.25.1",
  3372. "dev": true,
  3373. "license": "MIT",
  3374. "dependencies": {
  3375. "hermes-estree": "0.25.1"
  3376. }
  3377. },
  3378. "node_modules/ignore": {
  3379. "version": "5.3.2",
  3380. "dev": true,
  3381. "license": "MIT",
  3382. "engines": {
  3383. "node": ">= 4"
  3384. }
  3385. },
  3386. "node_modules/import-fresh": {
  3387. "version": "3.3.1",
  3388. "dev": true,
  3389. "license": "MIT",
  3390. "dependencies": {
  3391. "parent-module": "^1.0.0",
  3392. "resolve-from": "^4.0.0"
  3393. },
  3394. "engines": {
  3395. "node": ">=6"
  3396. },
  3397. "funding": {
  3398. "url": "https://github.com/sponsors/sindresorhus"
  3399. }
  3400. },
  3401. "node_modules/imurmurhash": {
  3402. "version": "0.1.4",
  3403. "dev": true,
  3404. "license": "MIT",
  3405. "engines": {
  3406. "node": ">=0.8.19"
  3407. }
  3408. },
  3409. "node_modules/is-extglob": {
  3410. "version": "2.1.1",
  3411. "dev": true,
  3412. "license": "MIT",
  3413. "engines": {
  3414. "node": ">=0.10.0"
  3415. }
  3416. },
  3417. "node_modules/is-glob": {
  3418. "version": "4.0.3",
  3419. "dev": true,
  3420. "license": "MIT",
  3421. "dependencies": {
  3422. "is-extglob": "^2.1.1"
  3423. },
  3424. "engines": {
  3425. "node": ">=0.10.0"
  3426. }
  3427. },
  3428. "node_modules/isexe": {
  3429. "version": "2.0.0",
  3430. "dev": true,
  3431. "license": "ISC"
  3432. },
  3433. "node_modules/jiti": {
  3434. "version": "2.6.1",
  3435. "license": "MIT",
  3436. "bin": {
  3437. "jiti": "lib/jiti-cli.mjs"
  3438. }
  3439. },
  3440. "node_modules/js-tokens": {
  3441. "version": "4.0.0",
  3442. "dev": true,
  3443. "license": "MIT"
  3444. },
  3445. "node_modules/js-yaml": {
  3446. "version": "4.1.1",
  3447. "dev": true,
  3448. "license": "MIT",
  3449. "dependencies": {
  3450. "argparse": "^2.0.1"
  3451. },
  3452. "bin": {
  3453. "js-yaml": "bin/js-yaml.js"
  3454. }
  3455. },
  3456. "node_modules/jsesc": {
  3457. "version": "3.1.0",
  3458. "dev": true,
  3459. "license": "MIT",
  3460. "bin": {
  3461. "jsesc": "bin/jsesc"
  3462. },
  3463. "engines": {
  3464. "node": ">=6"
  3465. }
  3466. },
  3467. "node_modules/json-buffer": {
  3468. "version": "3.0.1",
  3469. "dev": true,
  3470. "license": "MIT"
  3471. },
  3472. "node_modules/json-schema-traverse": {
  3473. "version": "0.4.1",
  3474. "dev": true,
  3475. "license": "MIT"
  3476. },
  3477. "node_modules/json-stable-stringify-without-jsonify": {
  3478. "version": "1.0.1",
  3479. "dev": true,
  3480. "license": "MIT"
  3481. },
  3482. "node_modules/json5": {
  3483. "version": "2.2.3",
  3484. "dev": true,
  3485. "license": "MIT",
  3486. "bin": {
  3487. "json5": "lib/cli.js"
  3488. },
  3489. "engines": {
  3490. "node": ">=6"
  3491. }
  3492. },
  3493. "node_modules/keyv": {
  3494. "version": "4.5.4",
  3495. "dev": true,
  3496. "license": "MIT",
  3497. "dependencies": {
  3498. "json-buffer": "3.0.1"
  3499. }
  3500. },
  3501. "node_modules/levn": {
  3502. "version": "0.4.1",
  3503. "dev": true,
  3504. "license": "MIT",
  3505. "dependencies": {
  3506. "prelude-ls": "^1.2.1",
  3507. "type-check": "~0.4.0"
  3508. },
  3509. "engines": {
  3510. "node": ">= 0.8.0"
  3511. }
  3512. },
  3513. "node_modules/lightningcss": {
  3514. "version": "1.31.1",
  3515. "license": "MPL-2.0",
  3516. "dependencies": {
  3517. "detect-libc": "^2.0.3"
  3518. },
  3519. "engines": {
  3520. "node": ">= 12.0.0"
  3521. },
  3522. "funding": {
  3523. "type": "opencollective",
  3524. "url": "https://opencollective.com/parcel"
  3525. },
  3526. "optionalDependencies": {
  3527. "lightningcss-android-arm64": "1.31.1",
  3528. "lightningcss-darwin-arm64": "1.31.1",
  3529. "lightningcss-darwin-x64": "1.31.1",
  3530. "lightningcss-freebsd-x64": "1.31.1",
  3531. "lightningcss-linux-arm-gnueabihf": "1.31.1",
  3532. "lightningcss-linux-arm64-gnu": "1.31.1",
  3533. "lightningcss-linux-arm64-musl": "1.31.1",
  3534. "lightningcss-linux-x64-gnu": "1.31.1",
  3535. "lightningcss-linux-x64-musl": "1.31.1",
  3536. "lightningcss-win32-arm64-msvc": "1.31.1",
  3537. "lightningcss-win32-x64-msvc": "1.31.1"
  3538. }
  3539. },
  3540. "node_modules/lightningcss-android-arm64": {
  3541. "version": "1.31.1",
  3542. "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.31.1.tgz",
  3543. "integrity": "sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==",
  3544. "cpu": [
  3545. "arm64"
  3546. ],
  3547. "license": "MPL-2.0",
  3548. "optional": true,
  3549. "os": [
  3550. "android"
  3551. ],
  3552. "engines": {
  3553. "node": ">= 12.0.0"
  3554. },
  3555. "funding": {
  3556. "type": "opencollective",
  3557. "url": "https://opencollective.com/parcel"
  3558. }
  3559. },
  3560. "node_modules/lightningcss-darwin-arm64": {
  3561. "version": "1.31.1",
  3562. "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.31.1.tgz",
  3563. "integrity": "sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==",
  3564. "cpu": [
  3565. "arm64"
  3566. ],
  3567. "license": "MPL-2.0",
  3568. "optional": true,
  3569. "os": [
  3570. "darwin"
  3571. ],
  3572. "engines": {
  3573. "node": ">= 12.0.0"
  3574. },
  3575. "funding": {
  3576. "type": "opencollective",
  3577. "url": "https://opencollective.com/parcel"
  3578. }
  3579. },
  3580. "node_modules/lightningcss-darwin-x64": {
  3581. "version": "1.31.1",
  3582. "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.31.1.tgz",
  3583. "integrity": "sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==",
  3584. "cpu": [
  3585. "x64"
  3586. ],
  3587. "license": "MPL-2.0",
  3588. "optional": true,
  3589. "os": [
  3590. "darwin"
  3591. ],
  3592. "engines": {
  3593. "node": ">= 12.0.0"
  3594. },
  3595. "funding": {
  3596. "type": "opencollective",
  3597. "url": "https://opencollective.com/parcel"
  3598. }
  3599. },
  3600. "node_modules/lightningcss-freebsd-x64": {
  3601. "version": "1.31.1",
  3602. "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.31.1.tgz",
  3603. "integrity": "sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==",
  3604. "cpu": [
  3605. "x64"
  3606. ],
  3607. "license": "MPL-2.0",
  3608. "optional": true,
  3609. "os": [
  3610. "freebsd"
  3611. ],
  3612. "engines": {
  3613. "node": ">= 12.0.0"
  3614. },
  3615. "funding": {
  3616. "type": "opencollective",
  3617. "url": "https://opencollective.com/parcel"
  3618. }
  3619. },
  3620. "node_modules/lightningcss-linux-arm-gnueabihf": {
  3621. "version": "1.31.1",
  3622. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.31.1.tgz",
  3623. "integrity": "sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==",
  3624. "cpu": [
  3625. "arm"
  3626. ],
  3627. "license": "MPL-2.0",
  3628. "optional": true,
  3629. "os": [
  3630. "linux"
  3631. ],
  3632. "engines": {
  3633. "node": ">= 12.0.0"
  3634. },
  3635. "funding": {
  3636. "type": "opencollective",
  3637. "url": "https://opencollective.com/parcel"
  3638. }
  3639. },
  3640. "node_modules/lightningcss-linux-arm64-gnu": {
  3641. "version": "1.31.1",
  3642. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.31.1.tgz",
  3643. "integrity": "sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==",
  3644. "cpu": [
  3645. "arm64"
  3646. ],
  3647. "libc": [
  3648. "glibc"
  3649. ],
  3650. "license": "MPL-2.0",
  3651. "optional": true,
  3652. "os": [
  3653. "linux"
  3654. ],
  3655. "engines": {
  3656. "node": ">= 12.0.0"
  3657. },
  3658. "funding": {
  3659. "type": "opencollective",
  3660. "url": "https://opencollective.com/parcel"
  3661. }
  3662. },
  3663. "node_modules/lightningcss-linux-arm64-musl": {
  3664. "version": "1.31.1",
  3665. "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.31.1.tgz",
  3666. "integrity": "sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==",
  3667. "cpu": [
  3668. "arm64"
  3669. ],
  3670. "libc": [
  3671. "musl"
  3672. ],
  3673. "license": "MPL-2.0",
  3674. "optional": true,
  3675. "os": [
  3676. "linux"
  3677. ],
  3678. "engines": {
  3679. "node": ">= 12.0.0"
  3680. },
  3681. "funding": {
  3682. "type": "opencollective",
  3683. "url": "https://opencollective.com/parcel"
  3684. }
  3685. },
  3686. "node_modules/lightningcss-linux-x64-gnu": {
  3687. "version": "1.31.1",
  3688. "cpu": [
  3689. "x64"
  3690. ],
  3691. "libc": [
  3692. "glibc"
  3693. ],
  3694. "license": "MPL-2.0",
  3695. "optional": true,
  3696. "os": [
  3697. "linux"
  3698. ],
  3699. "engines": {
  3700. "node": ">= 12.0.0"
  3701. },
  3702. "funding": {
  3703. "type": "opencollective",
  3704. "url": "https://opencollective.com/parcel"
  3705. }
  3706. },
  3707. "node_modules/lightningcss-linux-x64-musl": {
  3708. "version": "1.31.1",
  3709. "cpu": [
  3710. "x64"
  3711. ],
  3712. "libc": [
  3713. "musl"
  3714. ],
  3715. "license": "MPL-2.0",
  3716. "optional": true,
  3717. "os": [
  3718. "linux"
  3719. ],
  3720. "engines": {
  3721. "node": ">= 12.0.0"
  3722. },
  3723. "funding": {
  3724. "type": "opencollective",
  3725. "url": "https://opencollective.com/parcel"
  3726. }
  3727. },
  3728. "node_modules/lightningcss-win32-arm64-msvc": {
  3729. "version": "1.31.1",
  3730. "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.31.1.tgz",
  3731. "integrity": "sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==",
  3732. "cpu": [
  3733. "arm64"
  3734. ],
  3735. "license": "MPL-2.0",
  3736. "optional": true,
  3737. "os": [
  3738. "win32"
  3739. ],
  3740. "engines": {
  3741. "node": ">= 12.0.0"
  3742. },
  3743. "funding": {
  3744. "type": "opencollective",
  3745. "url": "https://opencollective.com/parcel"
  3746. }
  3747. },
  3748. "node_modules/lightningcss-win32-x64-msvc": {
  3749. "version": "1.31.1",
  3750. "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.31.1.tgz",
  3751. "integrity": "sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==",
  3752. "cpu": [
  3753. "x64"
  3754. ],
  3755. "license": "MPL-2.0",
  3756. "optional": true,
  3757. "os": [
  3758. "win32"
  3759. ],
  3760. "engines": {
  3761. "node": ">= 12.0.0"
  3762. },
  3763. "funding": {
  3764. "type": "opencollective",
  3765. "url": "https://opencollective.com/parcel"
  3766. }
  3767. },
  3768. "node_modules/locate-path": {
  3769. "version": "6.0.0",
  3770. "dev": true,
  3771. "license": "MIT",
  3772. "dependencies": {
  3773. "p-locate": "^5.0.0"
  3774. },
  3775. "engines": {
  3776. "node": ">=10"
  3777. },
  3778. "funding": {
  3779. "url": "https://github.com/sponsors/sindresorhus"
  3780. }
  3781. },
  3782. "node_modules/lodash.merge": {
  3783. "version": "4.6.2",
  3784. "dev": true,
  3785. "license": "MIT"
  3786. },
  3787. "node_modules/lru-cache": {
  3788. "version": "5.1.1",
  3789. "dev": true,
  3790. "license": "ISC",
  3791. "dependencies": {
  3792. "yallist": "^3.0.2"
  3793. }
  3794. },
  3795. "node_modules/lucide-react": {
  3796. "version": "0.577.0",
  3797. "license": "ISC",
  3798. "peerDependencies": {
  3799. "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
  3800. }
  3801. },
  3802. "node_modules/magic-string": {
  3803. "version": "0.30.21",
  3804. "license": "MIT",
  3805. "dependencies": {
  3806. "@jridgewell/sourcemap-codec": "^1.5.5"
  3807. }
  3808. },
  3809. "node_modules/minimatch": {
  3810. "version": "3.1.5",
  3811. "dev": true,
  3812. "license": "ISC",
  3813. "dependencies": {
  3814. "brace-expansion": "^1.1.7"
  3815. },
  3816. "engines": {
  3817. "node": "*"
  3818. }
  3819. },
  3820. "node_modules/ms": {
  3821. "version": "2.1.3",
  3822. "dev": true,
  3823. "license": "MIT"
  3824. },
  3825. "node_modules/nanoid": {
  3826. "version": "3.3.11",
  3827. "funding": [
  3828. {
  3829. "type": "github",
  3830. "url": "https://github.com/sponsors/ai"
  3831. }
  3832. ],
  3833. "license": "MIT",
  3834. "bin": {
  3835. "nanoid": "bin/nanoid.cjs"
  3836. },
  3837. "engines": {
  3838. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  3839. }
  3840. },
  3841. "node_modules/natural-compare": {
  3842. "version": "1.4.0",
  3843. "dev": true,
  3844. "license": "MIT"
  3845. },
  3846. "node_modules/node-releases": {
  3847. "version": "2.0.36",
  3848. "dev": true,
  3849. "license": "MIT"
  3850. },
  3851. "node_modules/optionator": {
  3852. "version": "0.9.4",
  3853. "dev": true,
  3854. "license": "MIT",
  3855. "dependencies": {
  3856. "deep-is": "^0.1.3",
  3857. "fast-levenshtein": "^2.0.6",
  3858. "levn": "^0.4.1",
  3859. "prelude-ls": "^1.2.1",
  3860. "type-check": "^0.4.0",
  3861. "word-wrap": "^1.2.5"
  3862. },
  3863. "engines": {
  3864. "node": ">= 0.8.0"
  3865. }
  3866. },
  3867. "node_modules/p-limit": {
  3868. "version": "3.1.0",
  3869. "dev": true,
  3870. "license": "MIT",
  3871. "dependencies": {
  3872. "yocto-queue": "^0.1.0"
  3873. },
  3874. "engines": {
  3875. "node": ">=10"
  3876. },
  3877. "funding": {
  3878. "url": "https://github.com/sponsors/sindresorhus"
  3879. }
  3880. },
  3881. "node_modules/p-locate": {
  3882. "version": "5.0.0",
  3883. "dev": true,
  3884. "license": "MIT",
  3885. "dependencies": {
  3886. "p-limit": "^3.0.2"
  3887. },
  3888. "engines": {
  3889. "node": ">=10"
  3890. },
  3891. "funding": {
  3892. "url": "https://github.com/sponsors/sindresorhus"
  3893. }
  3894. },
  3895. "node_modules/parent-module": {
  3896. "version": "1.0.1",
  3897. "dev": true,
  3898. "license": "MIT",
  3899. "dependencies": {
  3900. "callsites": "^3.0.0"
  3901. },
  3902. "engines": {
  3903. "node": ">=6"
  3904. }
  3905. },
  3906. "node_modules/path-exists": {
  3907. "version": "4.0.0",
  3908. "dev": true,
  3909. "license": "MIT",
  3910. "engines": {
  3911. "node": ">=8"
  3912. }
  3913. },
  3914. "node_modules/path-key": {
  3915. "version": "3.1.1",
  3916. "dev": true,
  3917. "license": "MIT",
  3918. "engines": {
  3919. "node": ">=8"
  3920. }
  3921. },
  3922. "node_modules/picocolors": {
  3923. "version": "1.1.1",
  3924. "license": "ISC"
  3925. },
  3926. "node_modules/picomatch": {
  3927. "version": "4.0.3",
  3928. "license": "MIT",
  3929. "engines": {
  3930. "node": ">=12"
  3931. },
  3932. "funding": {
  3933. "url": "https://github.com/sponsors/jonschlinkert"
  3934. }
  3935. },
  3936. "node_modules/postcss": {
  3937. "version": "8.5.8",
  3938. "funding": [
  3939. {
  3940. "type": "opencollective",
  3941. "url": "https://opencollective.com/postcss/"
  3942. },
  3943. {
  3944. "type": "tidelift",
  3945. "url": "https://tidelift.com/funding/github/npm/postcss"
  3946. },
  3947. {
  3948. "type": "github",
  3949. "url": "https://github.com/sponsors/ai"
  3950. }
  3951. ],
  3952. "license": "MIT",
  3953. "dependencies": {
  3954. "nanoid": "^3.3.11",
  3955. "picocolors": "^1.1.1",
  3956. "source-map-js": "^1.2.1"
  3957. },
  3958. "engines": {
  3959. "node": "^10 || ^12 || >=14"
  3960. }
  3961. },
  3962. "node_modules/prelude-ls": {
  3963. "version": "1.2.1",
  3964. "dev": true,
  3965. "license": "MIT",
  3966. "engines": {
  3967. "node": ">= 0.8.0"
  3968. }
  3969. },
  3970. "node_modules/punycode": {
  3971. "version": "2.3.1",
  3972. "dev": true,
  3973. "license": "MIT",
  3974. "engines": {
  3975. "node": ">=6"
  3976. }
  3977. },
  3978. "node_modules/react": {
  3979. "version": "19.2.4",
  3980. "license": "MIT",
  3981. "engines": {
  3982. "node": ">=0.10.0"
  3983. }
  3984. },
  3985. "node_modules/react-dom": {
  3986. "version": "19.2.4",
  3987. "license": "MIT",
  3988. "dependencies": {
  3989. "scheduler": "^0.27.0"
  3990. },
  3991. "peerDependencies": {
  3992. "react": "^19.2.4"
  3993. }
  3994. },
  3995. "node_modules/react-remove-scroll": {
  3996. "version": "2.7.2",
  3997. "license": "MIT",
  3998. "dependencies": {
  3999. "react-remove-scroll-bar": "^2.3.7",
  4000. "react-style-singleton": "^2.2.3",
  4001. "tslib": "^2.1.0",
  4002. "use-callback-ref": "^1.3.3",
  4003. "use-sidecar": "^1.1.3"
  4004. },
  4005. "engines": {
  4006. "node": ">=10"
  4007. },
  4008. "peerDependencies": {
  4009. "@types/react": "*",
  4010. "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
  4011. },
  4012. "peerDependenciesMeta": {
  4013. "@types/react": {
  4014. "optional": true
  4015. }
  4016. }
  4017. },
  4018. "node_modules/react-remove-scroll-bar": {
  4019. "version": "2.3.8",
  4020. "license": "MIT",
  4021. "dependencies": {
  4022. "react-style-singleton": "^2.2.2",
  4023. "tslib": "^2.0.0"
  4024. },
  4025. "engines": {
  4026. "node": ">=10"
  4027. },
  4028. "peerDependencies": {
  4029. "@types/react": "*",
  4030. "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
  4031. },
  4032. "peerDependenciesMeta": {
  4033. "@types/react": {
  4034. "optional": true
  4035. }
  4036. }
  4037. },
  4038. "node_modules/react-style-singleton": {
  4039. "version": "2.2.3",
  4040. "license": "MIT",
  4041. "dependencies": {
  4042. "get-nonce": "^1.0.0",
  4043. "tslib": "^2.0.0"
  4044. },
  4045. "engines": {
  4046. "node": ">=10"
  4047. },
  4048. "peerDependencies": {
  4049. "@types/react": "*",
  4050. "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
  4051. },
  4052. "peerDependenciesMeta": {
  4053. "@types/react": {
  4054. "optional": true
  4055. }
  4056. }
  4057. },
  4058. "node_modules/resolve-from": {
  4059. "version": "4.0.0",
  4060. "dev": true,
  4061. "license": "MIT",
  4062. "engines": {
  4063. "node": ">=4"
  4064. }
  4065. },
  4066. "node_modules/rollup": {
  4067. "version": "4.59.0",
  4068. "license": "MIT",
  4069. "dependencies": {
  4070. "@types/estree": "1.0.8"
  4071. },
  4072. "bin": {
  4073. "rollup": "dist/bin/rollup"
  4074. },
  4075. "engines": {
  4076. "node": ">=18.0.0",
  4077. "npm": ">=8.0.0"
  4078. },
  4079. "optionalDependencies": {
  4080. "@rollup/rollup-android-arm-eabi": "4.59.0",
  4081. "@rollup/rollup-android-arm64": "4.59.0",
  4082. "@rollup/rollup-darwin-arm64": "4.59.0",
  4083. "@rollup/rollup-darwin-x64": "4.59.0",
  4084. "@rollup/rollup-freebsd-arm64": "4.59.0",
  4085. "@rollup/rollup-freebsd-x64": "4.59.0",
  4086. "@rollup/rollup-linux-arm-gnueabihf": "4.59.0",
  4087. "@rollup/rollup-linux-arm-musleabihf": "4.59.0",
  4088. "@rollup/rollup-linux-arm64-gnu": "4.59.0",
  4089. "@rollup/rollup-linux-arm64-musl": "4.59.0",
  4090. "@rollup/rollup-linux-loong64-gnu": "4.59.0",
  4091. "@rollup/rollup-linux-loong64-musl": "4.59.0",
  4092. "@rollup/rollup-linux-ppc64-gnu": "4.59.0",
  4093. "@rollup/rollup-linux-ppc64-musl": "4.59.0",
  4094. "@rollup/rollup-linux-riscv64-gnu": "4.59.0",
  4095. "@rollup/rollup-linux-riscv64-musl": "4.59.0",
  4096. "@rollup/rollup-linux-s390x-gnu": "4.59.0",
  4097. "@rollup/rollup-linux-x64-gnu": "4.59.0",
  4098. "@rollup/rollup-linux-x64-musl": "4.59.0",
  4099. "@rollup/rollup-openbsd-x64": "4.59.0",
  4100. "@rollup/rollup-openharmony-arm64": "4.59.0",
  4101. "@rollup/rollup-win32-arm64-msvc": "4.59.0",
  4102. "@rollup/rollup-win32-ia32-msvc": "4.59.0",
  4103. "@rollup/rollup-win32-x64-gnu": "4.59.0",
  4104. "@rollup/rollup-win32-x64-msvc": "4.59.0",
  4105. "fsevents": "~2.3.2"
  4106. }
  4107. },
  4108. "node_modules/scheduler": {
  4109. "version": "0.27.0",
  4110. "license": "MIT"
  4111. },
  4112. "node_modules/semver": {
  4113. "version": "6.3.1",
  4114. "dev": true,
  4115. "license": "ISC",
  4116. "bin": {
  4117. "semver": "bin/semver.js"
  4118. }
  4119. },
  4120. "node_modules/shebang-command": {
  4121. "version": "2.0.0",
  4122. "dev": true,
  4123. "license": "MIT",
  4124. "dependencies": {
  4125. "shebang-regex": "^3.0.0"
  4126. },
  4127. "engines": {
  4128. "node": ">=8"
  4129. }
  4130. },
  4131. "node_modules/shebang-regex": {
  4132. "version": "3.0.0",
  4133. "dev": true,
  4134. "license": "MIT",
  4135. "engines": {
  4136. "node": ">=8"
  4137. }
  4138. },
  4139. "node_modules/source-map-js": {
  4140. "version": "1.2.1",
  4141. "license": "BSD-3-Clause",
  4142. "engines": {
  4143. "node": ">=0.10.0"
  4144. }
  4145. },
  4146. "node_modules/strip-json-comments": {
  4147. "version": "3.1.1",
  4148. "dev": true,
  4149. "license": "MIT",
  4150. "engines": {
  4151. "node": ">=8"
  4152. },
  4153. "funding": {
  4154. "url": "https://github.com/sponsors/sindresorhus"
  4155. }
  4156. },
  4157. "node_modules/supports-color": {
  4158. "version": "7.2.0",
  4159. "dev": true,
  4160. "license": "MIT",
  4161. "dependencies": {
  4162. "has-flag": "^4.0.0"
  4163. },
  4164. "engines": {
  4165. "node": ">=8"
  4166. }
  4167. },
  4168. "node_modules/tailwind-merge": {
  4169. "version": "3.5.0",
  4170. "license": "MIT",
  4171. "funding": {
  4172. "type": "github",
  4173. "url": "https://github.com/sponsors/dcastil"
  4174. }
  4175. },
  4176. "node_modules/tailwindcss": {
  4177. "version": "4.2.1",
  4178. "license": "MIT"
  4179. },
  4180. "node_modules/tapable": {
  4181. "version": "2.3.0",
  4182. "license": "MIT",
  4183. "engines": {
  4184. "node": ">=6"
  4185. },
  4186. "funding": {
  4187. "type": "opencollective",
  4188. "url": "https://opencollective.com/webpack"
  4189. }
  4190. },
  4191. "node_modules/tinyglobby": {
  4192. "version": "0.2.15",
  4193. "license": "MIT",
  4194. "dependencies": {
  4195. "fdir": "^6.5.0",
  4196. "picomatch": "^4.0.3"
  4197. },
  4198. "engines": {
  4199. "node": ">=12.0.0"
  4200. },
  4201. "funding": {
  4202. "url": "https://github.com/sponsors/SuperchupuDev"
  4203. }
  4204. },
  4205. "node_modules/ts-api-utils": {
  4206. "version": "2.4.0",
  4207. "dev": true,
  4208. "license": "MIT",
  4209. "engines": {
  4210. "node": ">=18.12"
  4211. },
  4212. "peerDependencies": {
  4213. "typescript": ">=4.8.4"
  4214. }
  4215. },
  4216. "node_modules/tslib": {
  4217. "version": "2.8.1",
  4218. "license": "0BSD"
  4219. },
  4220. "node_modules/type-check": {
  4221. "version": "0.4.0",
  4222. "dev": true,
  4223. "license": "MIT",
  4224. "dependencies": {
  4225. "prelude-ls": "^1.2.1"
  4226. },
  4227. "engines": {
  4228. "node": ">= 0.8.0"
  4229. }
  4230. },
  4231. "node_modules/typescript": {
  4232. "version": "5.9.3",
  4233. "dev": true,
  4234. "license": "Apache-2.0",
  4235. "bin": {
  4236. "tsc": "bin/tsc",
  4237. "tsserver": "bin/tsserver"
  4238. },
  4239. "engines": {
  4240. "node": ">=14.17"
  4241. }
  4242. },
  4243. "node_modules/typescript-eslint": {
  4244. "version": "8.56.1",
  4245. "dev": true,
  4246. "license": "MIT",
  4247. "dependencies": {
  4248. "@typescript-eslint/eslint-plugin": "8.56.1",
  4249. "@typescript-eslint/parser": "8.56.1",
  4250. "@typescript-eslint/typescript-estree": "8.56.1",
  4251. "@typescript-eslint/utils": "8.56.1"
  4252. },
  4253. "engines": {
  4254. "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  4255. },
  4256. "funding": {
  4257. "type": "opencollective",
  4258. "url": "https://opencollective.com/typescript-eslint"
  4259. },
  4260. "peerDependencies": {
  4261. "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
  4262. "typescript": ">=4.8.4 <6.0.0"
  4263. }
  4264. },
  4265. "node_modules/undici-types": {
  4266. "version": "7.16.0",
  4267. "devOptional": true,
  4268. "license": "MIT"
  4269. },
  4270. "node_modules/update-browserslist-db": {
  4271. "version": "1.2.3",
  4272. "dev": true,
  4273. "funding": [
  4274. {
  4275. "type": "opencollective",
  4276. "url": "https://opencollective.com/browserslist"
  4277. },
  4278. {
  4279. "type": "tidelift",
  4280. "url": "https://tidelift.com/funding/github/npm/browserslist"
  4281. },
  4282. {
  4283. "type": "github",
  4284. "url": "https://github.com/sponsors/ai"
  4285. }
  4286. ],
  4287. "license": "MIT",
  4288. "dependencies": {
  4289. "escalade": "^3.2.0",
  4290. "picocolors": "^1.1.1"
  4291. },
  4292. "bin": {
  4293. "update-browserslist-db": "cli.js"
  4294. },
  4295. "peerDependencies": {
  4296. "browserslist": ">= 4.21.0"
  4297. }
  4298. },
  4299. "node_modules/uri-js": {
  4300. "version": "4.4.1",
  4301. "dev": true,
  4302. "license": "BSD-2-Clause",
  4303. "dependencies": {
  4304. "punycode": "^2.1.0"
  4305. }
  4306. },
  4307. "node_modules/use-callback-ref": {
  4308. "version": "1.3.3",
  4309. "license": "MIT",
  4310. "dependencies": {
  4311. "tslib": "^2.0.0"
  4312. },
  4313. "engines": {
  4314. "node": ">=10"
  4315. },
  4316. "peerDependencies": {
  4317. "@types/react": "*",
  4318. "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
  4319. },
  4320. "peerDependenciesMeta": {
  4321. "@types/react": {
  4322. "optional": true
  4323. }
  4324. }
  4325. },
  4326. "node_modules/use-sidecar": {
  4327. "version": "1.1.3",
  4328. "license": "MIT",
  4329. "dependencies": {
  4330. "detect-node-es": "^1.1.0",
  4331. "tslib": "^2.0.0"
  4332. },
  4333. "engines": {
  4334. "node": ">=10"
  4335. },
  4336. "peerDependencies": {
  4337. "@types/react": "*",
  4338. "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
  4339. },
  4340. "peerDependenciesMeta": {
  4341. "@types/react": {
  4342. "optional": true
  4343. }
  4344. }
  4345. },
  4346. "node_modules/vite": {
  4347. "version": "7.3.1",
  4348. "license": "MIT",
  4349. "dependencies": {
  4350. "esbuild": "^0.27.0",
  4351. "fdir": "^6.5.0",
  4352. "picomatch": "^4.0.3",
  4353. "postcss": "^8.5.6",
  4354. "rollup": "^4.43.0",
  4355. "tinyglobby": "^0.2.15"
  4356. },
  4357. "bin": {
  4358. "vite": "bin/vite.js"
  4359. },
  4360. "engines": {
  4361. "node": "^20.19.0 || >=22.12.0"
  4362. },
  4363. "funding": {
  4364. "url": "https://github.com/vitejs/vite?sponsor=1"
  4365. },
  4366. "optionalDependencies": {
  4367. "fsevents": "~2.3.3"
  4368. },
  4369. "peerDependencies": {
  4370. "@types/node": "^20.19.0 || >=22.12.0",
  4371. "jiti": ">=1.21.0",
  4372. "less": "^4.0.0",
  4373. "lightningcss": "^1.21.0",
  4374. "sass": "^1.70.0",
  4375. "sass-embedded": "^1.70.0",
  4376. "stylus": ">=0.54.8",
  4377. "sugarss": "^5.0.0",
  4378. "terser": "^5.16.0",
  4379. "tsx": "^4.8.1",
  4380. "yaml": "^2.4.2"
  4381. },
  4382. "peerDependenciesMeta": {
  4383. "@types/node": {
  4384. "optional": true
  4385. },
  4386. "jiti": {
  4387. "optional": true
  4388. },
  4389. "less": {
  4390. "optional": true
  4391. },
  4392. "lightningcss": {
  4393. "optional": true
  4394. },
  4395. "sass": {
  4396. "optional": true
  4397. },
  4398. "sass-embedded": {
  4399. "optional": true
  4400. },
  4401. "stylus": {
  4402. "optional": true
  4403. },
  4404. "sugarss": {
  4405. "optional": true
  4406. },
  4407. "terser": {
  4408. "optional": true
  4409. },
  4410. "tsx": {
  4411. "optional": true
  4412. },
  4413. "yaml": {
  4414. "optional": true
  4415. }
  4416. }
  4417. },
  4418. "node_modules/which": {
  4419. "version": "2.0.2",
  4420. "dev": true,
  4421. "license": "ISC",
  4422. "dependencies": {
  4423. "isexe": "^2.0.0"
  4424. },
  4425. "bin": {
  4426. "node-which": "bin/node-which"
  4427. },
  4428. "engines": {
  4429. "node": ">= 8"
  4430. }
  4431. },
  4432. "node_modules/word-wrap": {
  4433. "version": "1.2.5",
  4434. "dev": true,
  4435. "license": "MIT",
  4436. "engines": {
  4437. "node": ">=0.10.0"
  4438. }
  4439. },
  4440. "node_modules/yallist": {
  4441. "version": "3.1.1",
  4442. "dev": true,
  4443. "license": "ISC"
  4444. },
  4445. "node_modules/yocto-queue": {
  4446. "version": "0.1.0",
  4447. "dev": true,
  4448. "license": "MIT",
  4449. "engines": {
  4450. "node": ">=10"
  4451. },
  4452. "funding": {
  4453. "url": "https://github.com/sponsors/sindresorhus"
  4454. }
  4455. },
  4456. "node_modules/zod": {
  4457. "version": "4.3.6",
  4458. "dev": true,
  4459. "license": "MIT",
  4460. "funding": {
  4461. "url": "https://github.com/sponsors/colinhacks"
  4462. }
  4463. },
  4464. "node_modules/zod-validation-error": {
  4465. "version": "4.0.2",
  4466. "dev": true,
  4467. "license": "MIT",
  4468. "engines": {
  4469. "node": ">=18.0.0"
  4470. },
  4471. "peerDependencies": {
  4472. "zod": "^3.25.0 || ^4.0.0"
  4473. }
  4474. }
  4475. }
  4476. }