package-lock.json 118 KB

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