package-lock.json 134 KB

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