package-lock.json 164 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620
  1. {
  2. "name": "knowmathbot-frontend",
  3. "version": "0.1.0",
  4. "lockfileVersion": 3,
  5. "requires": true,
  6. "packages": {
  7. "": {
  8. "name": "knowmathbot-frontend",
  9. "version": "0.1.0",
  10. "dependencies": {
  11. "cytoscape": "^3.33.2",
  12. "cytoscape-cose-bilkent": "^4.1.0",
  13. "katex": "^0.16.44",
  14. "pixi-live2d-display": "^0.4.0",
  15. "pixi.js": "^6.5.10",
  16. "react": "^19.0.0",
  17. "react-dom": "^19.0.0",
  18. "react-markdown": "^10.1.0",
  19. "react-router-dom": "^6.26.2",
  20. "rehype-katex": "^7.0.1",
  21. "remark-math": "^6.0.0"
  22. },
  23. "devDependencies": {
  24. "@types/react": "^19.0.10",
  25. "@types/react-dom": "^19.0.4",
  26. "@vitejs/plugin-react": "^4.3.4",
  27. "typescript": "^5.7.3",
  28. "vite": "^6.0.7"
  29. }
  30. },
  31. "node_modules/@babel/code-frame": {
  32. "version": "7.29.0",
  33. "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
  34. "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
  35. "dev": true,
  36. "license": "MIT",
  37. "dependencies": {
  38. "@babel/helper-validator-identifier": "^7.28.5",
  39. "js-tokens": "^4.0.0",
  40. "picocolors": "^1.1.1"
  41. },
  42. "engines": {
  43. "node": ">=6.9.0"
  44. }
  45. },
  46. "node_modules/@babel/compat-data": {
  47. "version": "7.29.0",
  48. "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
  49. "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
  50. "dev": true,
  51. "license": "MIT",
  52. "engines": {
  53. "node": ">=6.9.0"
  54. }
  55. },
  56. "node_modules/@babel/core": {
  57. "version": "7.29.0",
  58. "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
  59. "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
  60. "dev": true,
  61. "license": "MIT",
  62. "dependencies": {
  63. "@babel/code-frame": "^7.29.0",
  64. "@babel/generator": "^7.29.0",
  65. "@babel/helper-compilation-targets": "^7.28.6",
  66. "@babel/helper-module-transforms": "^7.28.6",
  67. "@babel/helpers": "^7.28.6",
  68. "@babel/parser": "^7.29.0",
  69. "@babel/template": "^7.28.6",
  70. "@babel/traverse": "^7.29.0",
  71. "@babel/types": "^7.29.0",
  72. "@jridgewell/remapping": "^2.3.5",
  73. "convert-source-map": "^2.0.0",
  74. "debug": "^4.1.0",
  75. "gensync": "^1.0.0-beta.2",
  76. "json5": "^2.2.3",
  77. "semver": "^6.3.1"
  78. },
  79. "engines": {
  80. "node": ">=6.9.0"
  81. },
  82. "funding": {
  83. "type": "opencollective",
  84. "url": "https://opencollective.com/babel"
  85. }
  86. },
  87. "node_modules/@babel/generator": {
  88. "version": "7.29.1",
  89. "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
  90. "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
  91. "dev": true,
  92. "license": "MIT",
  93. "dependencies": {
  94. "@babel/parser": "^7.29.0",
  95. "@babel/types": "^7.29.0",
  96. "@jridgewell/gen-mapping": "^0.3.12",
  97. "@jridgewell/trace-mapping": "^0.3.28",
  98. "jsesc": "^3.0.2"
  99. },
  100. "engines": {
  101. "node": ">=6.9.0"
  102. }
  103. },
  104. "node_modules/@babel/helper-compilation-targets": {
  105. "version": "7.28.6",
  106. "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
  107. "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
  108. "dev": true,
  109. "license": "MIT",
  110. "dependencies": {
  111. "@babel/compat-data": "^7.28.6",
  112. "@babel/helper-validator-option": "^7.27.1",
  113. "browserslist": "^4.24.0",
  114. "lru-cache": "^5.1.1",
  115. "semver": "^6.3.1"
  116. },
  117. "engines": {
  118. "node": ">=6.9.0"
  119. }
  120. },
  121. "node_modules/@babel/helper-globals": {
  122. "version": "7.28.0",
  123. "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
  124. "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
  125. "dev": true,
  126. "license": "MIT",
  127. "engines": {
  128. "node": ">=6.9.0"
  129. }
  130. },
  131. "node_modules/@babel/helper-module-imports": {
  132. "version": "7.28.6",
  133. "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
  134. "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
  135. "dev": true,
  136. "license": "MIT",
  137. "dependencies": {
  138. "@babel/traverse": "^7.28.6",
  139. "@babel/types": "^7.28.6"
  140. },
  141. "engines": {
  142. "node": ">=6.9.0"
  143. }
  144. },
  145. "node_modules/@babel/helper-module-transforms": {
  146. "version": "7.28.6",
  147. "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
  148. "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
  149. "dev": true,
  150. "license": "MIT",
  151. "dependencies": {
  152. "@babel/helper-module-imports": "^7.28.6",
  153. "@babel/helper-validator-identifier": "^7.28.5",
  154. "@babel/traverse": "^7.28.6"
  155. },
  156. "engines": {
  157. "node": ">=6.9.0"
  158. },
  159. "peerDependencies": {
  160. "@babel/core": "^7.0.0"
  161. }
  162. },
  163. "node_modules/@babel/helper-plugin-utils": {
  164. "version": "7.28.6",
  165. "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz",
  166. "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
  167. "dev": true,
  168. "license": "MIT",
  169. "engines": {
  170. "node": ">=6.9.0"
  171. }
  172. },
  173. "node_modules/@babel/helper-string-parser": {
  174. "version": "7.27.1",
  175. "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
  176. "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
  177. "dev": true,
  178. "license": "MIT",
  179. "engines": {
  180. "node": ">=6.9.0"
  181. }
  182. },
  183. "node_modules/@babel/helper-validator-identifier": {
  184. "version": "7.28.5",
  185. "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
  186. "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
  187. "dev": true,
  188. "license": "MIT",
  189. "engines": {
  190. "node": ">=6.9.0"
  191. }
  192. },
  193. "node_modules/@babel/helper-validator-option": {
  194. "version": "7.27.1",
  195. "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
  196. "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
  197. "dev": true,
  198. "license": "MIT",
  199. "engines": {
  200. "node": ">=6.9.0"
  201. }
  202. },
  203. "node_modules/@babel/helpers": {
  204. "version": "7.28.6",
  205. "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz",
  206. "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
  207. "dev": true,
  208. "license": "MIT",
  209. "dependencies": {
  210. "@babel/template": "^7.28.6",
  211. "@babel/types": "^7.28.6"
  212. },
  213. "engines": {
  214. "node": ">=6.9.0"
  215. }
  216. },
  217. "node_modules/@babel/parser": {
  218. "version": "7.29.0",
  219. "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
  220. "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
  221. "dev": true,
  222. "license": "MIT",
  223. "dependencies": {
  224. "@babel/types": "^7.29.0"
  225. },
  226. "bin": {
  227. "parser": "bin/babel-parser.js"
  228. },
  229. "engines": {
  230. "node": ">=6.0.0"
  231. }
  232. },
  233. "node_modules/@babel/plugin-transform-react-jsx-self": {
  234. "version": "7.27.1",
  235. "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
  236. "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
  237. "dev": true,
  238. "license": "MIT",
  239. "dependencies": {
  240. "@babel/helper-plugin-utils": "^7.27.1"
  241. },
  242. "engines": {
  243. "node": ">=6.9.0"
  244. },
  245. "peerDependencies": {
  246. "@babel/core": "^7.0.0-0"
  247. }
  248. },
  249. "node_modules/@babel/plugin-transform-react-jsx-source": {
  250. "version": "7.27.1",
  251. "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
  252. "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
  253. "dev": true,
  254. "license": "MIT",
  255. "dependencies": {
  256. "@babel/helper-plugin-utils": "^7.27.1"
  257. },
  258. "engines": {
  259. "node": ">=6.9.0"
  260. },
  261. "peerDependencies": {
  262. "@babel/core": "^7.0.0-0"
  263. }
  264. },
  265. "node_modules/@babel/template": {
  266. "version": "7.28.6",
  267. "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
  268. "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
  269. "dev": true,
  270. "license": "MIT",
  271. "dependencies": {
  272. "@babel/code-frame": "^7.28.6",
  273. "@babel/parser": "^7.28.6",
  274. "@babel/types": "^7.28.6"
  275. },
  276. "engines": {
  277. "node": ">=6.9.0"
  278. }
  279. },
  280. "node_modules/@babel/traverse": {
  281. "version": "7.29.0",
  282. "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
  283. "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
  284. "dev": true,
  285. "license": "MIT",
  286. "dependencies": {
  287. "@babel/code-frame": "^7.29.0",
  288. "@babel/generator": "^7.29.0",
  289. "@babel/helper-globals": "^7.28.0",
  290. "@babel/parser": "^7.29.0",
  291. "@babel/template": "^7.28.6",
  292. "@babel/types": "^7.29.0",
  293. "debug": "^4.3.1"
  294. },
  295. "engines": {
  296. "node": ">=6.9.0"
  297. }
  298. },
  299. "node_modules/@babel/types": {
  300. "version": "7.29.0",
  301. "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
  302. "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
  303. "dev": true,
  304. "license": "MIT",
  305. "dependencies": {
  306. "@babel/helper-string-parser": "^7.27.1",
  307. "@babel/helper-validator-identifier": "^7.28.5"
  308. },
  309. "engines": {
  310. "node": ">=6.9.0"
  311. }
  312. },
  313. "node_modules/@esbuild/aix-ppc64": {
  314. "version": "0.25.12",
  315. "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
  316. "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
  317. "cpu": [
  318. "ppc64"
  319. ],
  320. "dev": true,
  321. "license": "MIT",
  322. "optional": true,
  323. "os": [
  324. "aix"
  325. ],
  326. "engines": {
  327. "node": ">=18"
  328. }
  329. },
  330. "node_modules/@esbuild/android-arm": {
  331. "version": "0.25.12",
  332. "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
  333. "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
  334. "cpu": [
  335. "arm"
  336. ],
  337. "dev": true,
  338. "license": "MIT",
  339. "optional": true,
  340. "os": [
  341. "android"
  342. ],
  343. "engines": {
  344. "node": ">=18"
  345. }
  346. },
  347. "node_modules/@esbuild/android-arm64": {
  348. "version": "0.25.12",
  349. "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
  350. "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
  351. "cpu": [
  352. "arm64"
  353. ],
  354. "dev": true,
  355. "license": "MIT",
  356. "optional": true,
  357. "os": [
  358. "android"
  359. ],
  360. "engines": {
  361. "node": ">=18"
  362. }
  363. },
  364. "node_modules/@esbuild/android-x64": {
  365. "version": "0.25.12",
  366. "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
  367. "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
  368. "cpu": [
  369. "x64"
  370. ],
  371. "dev": true,
  372. "license": "MIT",
  373. "optional": true,
  374. "os": [
  375. "android"
  376. ],
  377. "engines": {
  378. "node": ">=18"
  379. }
  380. },
  381. "node_modules/@esbuild/darwin-arm64": {
  382. "version": "0.25.12",
  383. "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
  384. "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
  385. "cpu": [
  386. "arm64"
  387. ],
  388. "dev": true,
  389. "license": "MIT",
  390. "optional": true,
  391. "os": [
  392. "darwin"
  393. ],
  394. "engines": {
  395. "node": ">=18"
  396. }
  397. },
  398. "node_modules/@esbuild/darwin-x64": {
  399. "version": "0.25.12",
  400. "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
  401. "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
  402. "cpu": [
  403. "x64"
  404. ],
  405. "dev": true,
  406. "license": "MIT",
  407. "optional": true,
  408. "os": [
  409. "darwin"
  410. ],
  411. "engines": {
  412. "node": ">=18"
  413. }
  414. },
  415. "node_modules/@esbuild/freebsd-arm64": {
  416. "version": "0.25.12",
  417. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
  418. "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
  419. "cpu": [
  420. "arm64"
  421. ],
  422. "dev": true,
  423. "license": "MIT",
  424. "optional": true,
  425. "os": [
  426. "freebsd"
  427. ],
  428. "engines": {
  429. "node": ">=18"
  430. }
  431. },
  432. "node_modules/@esbuild/freebsd-x64": {
  433. "version": "0.25.12",
  434. "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
  435. "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
  436. "cpu": [
  437. "x64"
  438. ],
  439. "dev": true,
  440. "license": "MIT",
  441. "optional": true,
  442. "os": [
  443. "freebsd"
  444. ],
  445. "engines": {
  446. "node": ">=18"
  447. }
  448. },
  449. "node_modules/@esbuild/linux-arm": {
  450. "version": "0.25.12",
  451. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
  452. "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
  453. "cpu": [
  454. "arm"
  455. ],
  456. "dev": true,
  457. "license": "MIT",
  458. "optional": true,
  459. "os": [
  460. "linux"
  461. ],
  462. "engines": {
  463. "node": ">=18"
  464. }
  465. },
  466. "node_modules/@esbuild/linux-arm64": {
  467. "version": "0.25.12",
  468. "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
  469. "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
  470. "cpu": [
  471. "arm64"
  472. ],
  473. "dev": true,
  474. "license": "MIT",
  475. "optional": true,
  476. "os": [
  477. "linux"
  478. ],
  479. "engines": {
  480. "node": ">=18"
  481. }
  482. },
  483. "node_modules/@esbuild/linux-ia32": {
  484. "version": "0.25.12",
  485. "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
  486. "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
  487. "cpu": [
  488. "ia32"
  489. ],
  490. "dev": true,
  491. "license": "MIT",
  492. "optional": true,
  493. "os": [
  494. "linux"
  495. ],
  496. "engines": {
  497. "node": ">=18"
  498. }
  499. },
  500. "node_modules/@esbuild/linux-loong64": {
  501. "version": "0.25.12",
  502. "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
  503. "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
  504. "cpu": [
  505. "loong64"
  506. ],
  507. "dev": true,
  508. "license": "MIT",
  509. "optional": true,
  510. "os": [
  511. "linux"
  512. ],
  513. "engines": {
  514. "node": ">=18"
  515. }
  516. },
  517. "node_modules/@esbuild/linux-mips64el": {
  518. "version": "0.25.12",
  519. "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
  520. "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
  521. "cpu": [
  522. "mips64el"
  523. ],
  524. "dev": true,
  525. "license": "MIT",
  526. "optional": true,
  527. "os": [
  528. "linux"
  529. ],
  530. "engines": {
  531. "node": ">=18"
  532. }
  533. },
  534. "node_modules/@esbuild/linux-ppc64": {
  535. "version": "0.25.12",
  536. "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
  537. "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
  538. "cpu": [
  539. "ppc64"
  540. ],
  541. "dev": true,
  542. "license": "MIT",
  543. "optional": true,
  544. "os": [
  545. "linux"
  546. ],
  547. "engines": {
  548. "node": ">=18"
  549. }
  550. },
  551. "node_modules/@esbuild/linux-riscv64": {
  552. "version": "0.25.12",
  553. "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
  554. "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
  555. "cpu": [
  556. "riscv64"
  557. ],
  558. "dev": true,
  559. "license": "MIT",
  560. "optional": true,
  561. "os": [
  562. "linux"
  563. ],
  564. "engines": {
  565. "node": ">=18"
  566. }
  567. },
  568. "node_modules/@esbuild/linux-s390x": {
  569. "version": "0.25.12",
  570. "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
  571. "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
  572. "cpu": [
  573. "s390x"
  574. ],
  575. "dev": true,
  576. "license": "MIT",
  577. "optional": true,
  578. "os": [
  579. "linux"
  580. ],
  581. "engines": {
  582. "node": ">=18"
  583. }
  584. },
  585. "node_modules/@esbuild/linux-x64": {
  586. "version": "0.25.12",
  587. "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
  588. "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
  589. "cpu": [
  590. "x64"
  591. ],
  592. "dev": true,
  593. "license": "MIT",
  594. "optional": true,
  595. "os": [
  596. "linux"
  597. ],
  598. "engines": {
  599. "node": ">=18"
  600. }
  601. },
  602. "node_modules/@esbuild/netbsd-arm64": {
  603. "version": "0.25.12",
  604. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
  605. "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
  606. "cpu": [
  607. "arm64"
  608. ],
  609. "dev": true,
  610. "license": "MIT",
  611. "optional": true,
  612. "os": [
  613. "netbsd"
  614. ],
  615. "engines": {
  616. "node": ">=18"
  617. }
  618. },
  619. "node_modules/@esbuild/netbsd-x64": {
  620. "version": "0.25.12",
  621. "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
  622. "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
  623. "cpu": [
  624. "x64"
  625. ],
  626. "dev": true,
  627. "license": "MIT",
  628. "optional": true,
  629. "os": [
  630. "netbsd"
  631. ],
  632. "engines": {
  633. "node": ">=18"
  634. }
  635. },
  636. "node_modules/@esbuild/openbsd-arm64": {
  637. "version": "0.25.12",
  638. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
  639. "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
  640. "cpu": [
  641. "arm64"
  642. ],
  643. "dev": true,
  644. "license": "MIT",
  645. "optional": true,
  646. "os": [
  647. "openbsd"
  648. ],
  649. "engines": {
  650. "node": ">=18"
  651. }
  652. },
  653. "node_modules/@esbuild/openbsd-x64": {
  654. "version": "0.25.12",
  655. "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
  656. "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
  657. "cpu": [
  658. "x64"
  659. ],
  660. "dev": true,
  661. "license": "MIT",
  662. "optional": true,
  663. "os": [
  664. "openbsd"
  665. ],
  666. "engines": {
  667. "node": ">=18"
  668. }
  669. },
  670. "node_modules/@esbuild/openharmony-arm64": {
  671. "version": "0.25.12",
  672. "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
  673. "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
  674. "cpu": [
  675. "arm64"
  676. ],
  677. "dev": true,
  678. "license": "MIT",
  679. "optional": true,
  680. "os": [
  681. "openharmony"
  682. ],
  683. "engines": {
  684. "node": ">=18"
  685. }
  686. },
  687. "node_modules/@esbuild/sunos-x64": {
  688. "version": "0.25.12",
  689. "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
  690. "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
  691. "cpu": [
  692. "x64"
  693. ],
  694. "dev": true,
  695. "license": "MIT",
  696. "optional": true,
  697. "os": [
  698. "sunos"
  699. ],
  700. "engines": {
  701. "node": ">=18"
  702. }
  703. },
  704. "node_modules/@esbuild/win32-arm64": {
  705. "version": "0.25.12",
  706. "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
  707. "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
  708. "cpu": [
  709. "arm64"
  710. ],
  711. "dev": true,
  712. "license": "MIT",
  713. "optional": true,
  714. "os": [
  715. "win32"
  716. ],
  717. "engines": {
  718. "node": ">=18"
  719. }
  720. },
  721. "node_modules/@esbuild/win32-ia32": {
  722. "version": "0.25.12",
  723. "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
  724. "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
  725. "cpu": [
  726. "ia32"
  727. ],
  728. "dev": true,
  729. "license": "MIT",
  730. "optional": true,
  731. "os": [
  732. "win32"
  733. ],
  734. "engines": {
  735. "node": ">=18"
  736. }
  737. },
  738. "node_modules/@esbuild/win32-x64": {
  739. "version": "0.25.12",
  740. "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
  741. "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
  742. "cpu": [
  743. "x64"
  744. ],
  745. "dev": true,
  746. "license": "MIT",
  747. "optional": true,
  748. "os": [
  749. "win32"
  750. ],
  751. "engines": {
  752. "node": ">=18"
  753. }
  754. },
  755. "node_modules/@jridgewell/gen-mapping": {
  756. "version": "0.3.13",
  757. "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
  758. "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
  759. "dev": true,
  760. "license": "MIT",
  761. "dependencies": {
  762. "@jridgewell/sourcemap-codec": "^1.5.0",
  763. "@jridgewell/trace-mapping": "^0.3.24"
  764. }
  765. },
  766. "node_modules/@jridgewell/remapping": {
  767. "version": "2.3.5",
  768. "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
  769. "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
  770. "dev": true,
  771. "license": "MIT",
  772. "dependencies": {
  773. "@jridgewell/gen-mapping": "^0.3.5",
  774. "@jridgewell/trace-mapping": "^0.3.24"
  775. }
  776. },
  777. "node_modules/@jridgewell/resolve-uri": {
  778. "version": "3.1.2",
  779. "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
  780. "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
  781. "dev": true,
  782. "license": "MIT",
  783. "engines": {
  784. "node": ">=6.0.0"
  785. }
  786. },
  787. "node_modules/@jridgewell/sourcemap-codec": {
  788. "version": "1.5.5",
  789. "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
  790. "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
  791. "dev": true,
  792. "license": "MIT"
  793. },
  794. "node_modules/@jridgewell/trace-mapping": {
  795. "version": "0.3.31",
  796. "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
  797. "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
  798. "dev": true,
  799. "license": "MIT",
  800. "dependencies": {
  801. "@jridgewell/resolve-uri": "^3.1.0",
  802. "@jridgewell/sourcemap-codec": "^1.4.14"
  803. }
  804. },
  805. "node_modules/@pixi/accessibility": {
  806. "version": "6.5.10",
  807. "resolved": "https://registry.npmjs.org/@pixi/accessibility/-/accessibility-6.5.10.tgz",
  808. "integrity": "sha512-URrI1H+1kjjHSyhY1QXcUZ8S3omdVTrXg5y0gndtpOhIelErBTC9NWjJfw6s0Rlmv5+x5VAitQTgw9mRiatDgw==",
  809. "license": "MIT",
  810. "peerDependencies": {
  811. "@pixi/core": "6.5.10",
  812. "@pixi/display": "6.5.10",
  813. "@pixi/utils": "6.5.10"
  814. }
  815. },
  816. "node_modules/@pixi/app": {
  817. "version": "6.5.10",
  818. "resolved": "https://registry.npmjs.org/@pixi/app/-/app-6.5.10.tgz",
  819. "integrity": "sha512-VsNHLajZ5Dbc/Zrj7iWmIl3eu6Fec+afjW/NXXezD8Sp3nTDF0bv5F+GDgN/zSc2gqIvPHyundImT7hQGBDghg==",
  820. "license": "MIT",
  821. "peerDependencies": {
  822. "@pixi/core": "6.5.10",
  823. "@pixi/display": "6.5.10",
  824. "@pixi/math": "6.5.10",
  825. "@pixi/utils": "6.5.10"
  826. }
  827. },
  828. "node_modules/@pixi/compressed-textures": {
  829. "version": "6.5.10",
  830. "resolved": "https://registry.npmjs.org/@pixi/compressed-textures/-/compressed-textures-6.5.10.tgz",
  831. "integrity": "sha512-41NT5mkfam47DrkB8xMp3HUZDt7139JMB6rVNOmb3u2vm+2mdy9tzi5s9nN7bG9xgXlchxcFzytTURk+jwXVJA==",
  832. "license": "MIT",
  833. "peerDependencies": {
  834. "@pixi/constants": "6.5.10",
  835. "@pixi/core": "6.5.10",
  836. "@pixi/loaders": "6.5.10",
  837. "@pixi/settings": "6.5.10",
  838. "@pixi/utils": "6.5.10"
  839. }
  840. },
  841. "node_modules/@pixi/constants": {
  842. "version": "6.5.10",
  843. "resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-6.5.10.tgz",
  844. "integrity": "sha512-PUF2Y9YISRu5eVrVVHhHCWpc/KmxQTg3UH8rIUs8UI9dCK41/wsPd3pEahzf7H47v7x1HCohVZcFO3XQc1bUDw==",
  845. "license": "MIT"
  846. },
  847. "node_modules/@pixi/core": {
  848. "version": "6.5.10",
  849. "resolved": "https://registry.npmjs.org/@pixi/core/-/core-6.5.10.tgz",
  850. "integrity": "sha512-Gdzp5ENypyglvsh5Gv3teUZnZnmizo4xOsL+QqmWALdFlJXJwLJMVhKVThV/q/095XR6i4Ou54oshn+m4EkuFw==",
  851. "license": "MIT",
  852. "dependencies": {
  853. "@types/offscreencanvas": "^2019.6.4"
  854. },
  855. "funding": {
  856. "type": "opencollective",
  857. "url": "https://opencollective.com/pixijs"
  858. },
  859. "peerDependencies": {
  860. "@pixi/constants": "6.5.10",
  861. "@pixi/extensions": "6.5.10",
  862. "@pixi/math": "6.5.10",
  863. "@pixi/runner": "6.5.10",
  864. "@pixi/settings": "6.5.10",
  865. "@pixi/ticker": "6.5.10",
  866. "@pixi/utils": "6.5.10"
  867. }
  868. },
  869. "node_modules/@pixi/display": {
  870. "version": "6.5.10",
  871. "resolved": "https://registry.npmjs.org/@pixi/display/-/display-6.5.10.tgz",
  872. "integrity": "sha512-NxFdDDxlbH5fQkzGHraLGoTMucW9pVgXqQm13TSmkA3NWIi/SItHL4qT2SI8nmclT9Vid1VDEBCJFAbdeuQw1Q==",
  873. "license": "MIT",
  874. "peerDependencies": {
  875. "@pixi/constants": "6.5.10",
  876. "@pixi/math": "6.5.10",
  877. "@pixi/settings": "6.5.10",
  878. "@pixi/utils": "6.5.10"
  879. }
  880. },
  881. "node_modules/@pixi/extensions": {
  882. "version": "6.5.10",
  883. "resolved": "https://registry.npmjs.org/@pixi/extensions/-/extensions-6.5.10.tgz",
  884. "integrity": "sha512-EIUGza+E+sCy3dupuIjvRK/WyVyfSzHb5XsxRaxNrPwvG1iIUIqNqZ3owLYCo4h17fJWrj/yXVufNNtUKQccWQ==",
  885. "license": "MIT"
  886. },
  887. "node_modules/@pixi/extract": {
  888. "version": "6.5.10",
  889. "resolved": "https://registry.npmjs.org/@pixi/extract/-/extract-6.5.10.tgz",
  890. "integrity": "sha512-hXFIc4EGs14GFfXAjT1+6mzopzCMWeXeai38/Yod3vuBXkkp8+ksen6kE09vTnB9l1IpcIaCM+XZEokuqoGX2A==",
  891. "license": "MIT",
  892. "peerDependencies": {
  893. "@pixi/constants": "6.5.10",
  894. "@pixi/core": "6.5.10",
  895. "@pixi/math": "6.5.10",
  896. "@pixi/utils": "6.5.10"
  897. }
  898. },
  899. "node_modules/@pixi/filter-alpha": {
  900. "version": "6.5.10",
  901. "resolved": "https://registry.npmjs.org/@pixi/filter-alpha/-/filter-alpha-6.5.10.tgz",
  902. "integrity": "sha512-GWHLJvY0QOIDRjVx0hdUff6nl/PePQg84i8XXPmANrvA+gJ/eSRTQRmQcdgInQfawENADB/oRqpcCct6IAcKpQ==",
  903. "license": "MIT",
  904. "peerDependencies": {
  905. "@pixi/core": "6.5.10"
  906. }
  907. },
  908. "node_modules/@pixi/filter-blur": {
  909. "version": "6.5.10",
  910. "resolved": "https://registry.npmjs.org/@pixi/filter-blur/-/filter-blur-6.5.10.tgz",
  911. "integrity": "sha512-LJsRocVOdM9hTzZKjP+jmkfoL1nrJi5XpR0ItgRN8fflOC7A7Ln4iPe7nukbbq3H7QhZSunbygMubbO6xhThZw==",
  912. "license": "MIT",
  913. "peerDependencies": {
  914. "@pixi/constants": "6.5.10",
  915. "@pixi/core": "6.5.10",
  916. "@pixi/settings": "6.5.10"
  917. }
  918. },
  919. "node_modules/@pixi/filter-color-matrix": {
  920. "version": "6.5.10",
  921. "resolved": "https://registry.npmjs.org/@pixi/filter-color-matrix/-/filter-color-matrix-6.5.10.tgz",
  922. "integrity": "sha512-C2S44/EoWTrhqedLWOZTq9GZV5loEq1+MhyK9AUzEubWGMHhou1Juhn2mRZ7R6flKPCRQNKrXpStUwCAouud3Q==",
  923. "license": "MIT",
  924. "peerDependencies": {
  925. "@pixi/core": "6.5.10"
  926. }
  927. },
  928. "node_modules/@pixi/filter-displacement": {
  929. "version": "6.5.10",
  930. "resolved": "https://registry.npmjs.org/@pixi/filter-displacement/-/filter-displacement-6.5.10.tgz",
  931. "integrity": "sha512-fbblMYyPX/hO3Tpoaa4tOBYxqp4TxjNrz6xyt15tKSVxWQElk+Tx98GJ+aaBoiHOKt8ezzHplStWoHG++JIv/w==",
  932. "license": "MIT",
  933. "peerDependencies": {
  934. "@pixi/core": "6.5.10",
  935. "@pixi/math": "6.5.10"
  936. }
  937. },
  938. "node_modules/@pixi/filter-fxaa": {
  939. "version": "6.5.10",
  940. "resolved": "https://registry.npmjs.org/@pixi/filter-fxaa/-/filter-fxaa-6.5.10.tgz",
  941. "integrity": "sha512-wbHL9UtY3g7jTyvO8JaZks6DqV8AO5c96Hfu0zfndWBPs79Ul6/sq3LD2eE+yq5vK5T2R9Sr4s54ls1JT3Sppg==",
  942. "license": "MIT",
  943. "peerDependencies": {
  944. "@pixi/core": "6.5.10"
  945. }
  946. },
  947. "node_modules/@pixi/filter-noise": {
  948. "version": "6.5.10",
  949. "resolved": "https://registry.npmjs.org/@pixi/filter-noise/-/filter-noise-6.5.10.tgz",
  950. "integrity": "sha512-CX+/06NVaw3HsjipZVb7aemkca0TC8I6qfKI4lx2ugxS/6G6zkY5zqd8+nVSXW4DpUXB6eT0emwfRv6N00NvuA==",
  951. "license": "MIT",
  952. "peerDependencies": {
  953. "@pixi/core": "6.5.10"
  954. }
  955. },
  956. "node_modules/@pixi/graphics": {
  957. "version": "6.5.10",
  958. "resolved": "https://registry.npmjs.org/@pixi/graphics/-/graphics-6.5.10.tgz",
  959. "integrity": "sha512-KPHGJ910fi8bRQQ+VcTIgrK+bKIm8yAQaZKPqMtm14HzHPGcES6HkgeNY1sd7m8J4aS9btm5wOSyFu0p5IzTpA==",
  960. "license": "MIT",
  961. "peerDependencies": {
  962. "@pixi/constants": "6.5.10",
  963. "@pixi/core": "6.5.10",
  964. "@pixi/display": "6.5.10",
  965. "@pixi/math": "6.5.10",
  966. "@pixi/sprite": "6.5.10",
  967. "@pixi/utils": "6.5.10"
  968. }
  969. },
  970. "node_modules/@pixi/interaction": {
  971. "version": "6.5.10",
  972. "resolved": "https://registry.npmjs.org/@pixi/interaction/-/interaction-6.5.10.tgz",
  973. "integrity": "sha512-v809pJmXA2B9dV/vdrDMUqJT+fBB/ARZli2YRmI2dPbEbkaYr8FNmxCAJnwT8o+ymTx044Ie820hn9tVrtMtfA==",
  974. "license": "MIT",
  975. "peerDependencies": {
  976. "@pixi/core": "6.5.10",
  977. "@pixi/display": "6.5.10",
  978. "@pixi/math": "6.5.10",
  979. "@pixi/ticker": "6.5.10",
  980. "@pixi/utils": "6.5.10"
  981. }
  982. },
  983. "node_modules/@pixi/loaders": {
  984. "version": "6.5.10",
  985. "resolved": "https://registry.npmjs.org/@pixi/loaders/-/loaders-6.5.10.tgz",
  986. "integrity": "sha512-AuK7mXBmyVsDFL9DDFPB8sqP8fwQ2NOktvu98bQuJl0/p/UeK/0OAQnF3wcf3FeBv5YGXfNHL21c2DCisjKfTg==",
  987. "license": "MIT",
  988. "peerDependencies": {
  989. "@pixi/constants": "6.5.10",
  990. "@pixi/core": "6.5.10",
  991. "@pixi/utils": "6.5.10"
  992. }
  993. },
  994. "node_modules/@pixi/math": {
  995. "version": "6.5.10",
  996. "resolved": "https://registry.npmjs.org/@pixi/math/-/math-6.5.10.tgz",
  997. "integrity": "sha512-fxeu7ykVbMGxGV2S3qRTupHToeo1hdWBm8ihyURn3BMqJZe2SkZEECPd5RyvIuuNUtjRnmhkZRnF3Jsz2S+L0g==",
  998. "license": "MIT"
  999. },
  1000. "node_modules/@pixi/mesh": {
  1001. "version": "6.5.10",
  1002. "resolved": "https://registry.npmjs.org/@pixi/mesh/-/mesh-6.5.10.tgz",
  1003. "integrity": "sha512-tUNPsdp5/t/yRsCmfxIcufIfbQVzgAlMNgQ1igWOkSxzhB7vlEbZ8ZLLW5tQcNyM/r7Nhjz+RoB+RD+/BCtvlA==",
  1004. "license": "MIT",
  1005. "peerDependencies": {
  1006. "@pixi/constants": "6.5.10",
  1007. "@pixi/core": "6.5.10",
  1008. "@pixi/display": "6.5.10",
  1009. "@pixi/math": "6.5.10",
  1010. "@pixi/settings": "6.5.10",
  1011. "@pixi/utils": "6.5.10"
  1012. }
  1013. },
  1014. "node_modules/@pixi/mesh-extras": {
  1015. "version": "6.5.10",
  1016. "resolved": "https://registry.npmjs.org/@pixi/mesh-extras/-/mesh-extras-6.5.10.tgz",
  1017. "integrity": "sha512-UCG7OOPPFeikrX09haCibCMR0jPQ4UJ+4HiYiAv/3dahq5eEzBx+yAwVtxcVCjonkTf/lu5SzmHdzpsbHLx5aw==",
  1018. "license": "MIT",
  1019. "peerDependencies": {
  1020. "@pixi/constants": "6.5.10",
  1021. "@pixi/core": "6.5.10",
  1022. "@pixi/math": "6.5.10",
  1023. "@pixi/mesh": "6.5.10",
  1024. "@pixi/utils": "6.5.10"
  1025. }
  1026. },
  1027. "node_modules/@pixi/mixin-cache-as-bitmap": {
  1028. "version": "6.5.10",
  1029. "resolved": "https://registry.npmjs.org/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-6.5.10.tgz",
  1030. "integrity": "sha512-HV4qPZt8R7uuPZf1XE5S0e3jbN4+/EqgAIkueIyK3Em+0IO1rCmIbzzYxFPxkElMUu5VvN1r4hXK846z9ITnhw==",
  1031. "license": "MIT",
  1032. "peerDependencies": {
  1033. "@pixi/constants": "6.5.10",
  1034. "@pixi/core": "6.5.10",
  1035. "@pixi/display": "6.5.10",
  1036. "@pixi/math": "6.5.10",
  1037. "@pixi/settings": "6.5.10",
  1038. "@pixi/sprite": "6.5.10",
  1039. "@pixi/utils": "6.5.10"
  1040. }
  1041. },
  1042. "node_modules/@pixi/mixin-get-child-by-name": {
  1043. "version": "6.5.10",
  1044. "resolved": "https://registry.npmjs.org/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-6.5.10.tgz",
  1045. "integrity": "sha512-YYd9wjnI/4aKY0H5Ij413UppVZn3YE1No2CZrNevV6WbhylsJucowY3hJihtl9mxkpwtaUIyWMjmphkbOinbzA==",
  1046. "license": "MIT",
  1047. "peerDependencies": {
  1048. "@pixi/display": "6.5.10"
  1049. }
  1050. },
  1051. "node_modules/@pixi/mixin-get-global-position": {
  1052. "version": "6.5.10",
  1053. "resolved": "https://registry.npmjs.org/@pixi/mixin-get-global-position/-/mixin-get-global-position-6.5.10.tgz",
  1054. "integrity": "sha512-A83gTZP9CdQAyrAvOZl1P707Q0QvIC0V8UnBAMd4GxuhMOXJtXVPCdmfPVXUrfoywgnH+/Bgimq5xhsXTf8Hzg==",
  1055. "license": "MIT",
  1056. "peerDependencies": {
  1057. "@pixi/display": "6.5.10",
  1058. "@pixi/math": "6.5.10"
  1059. }
  1060. },
  1061. "node_modules/@pixi/particle-container": {
  1062. "version": "6.5.10",
  1063. "resolved": "https://registry.npmjs.org/@pixi/particle-container/-/particle-container-6.5.10.tgz",
  1064. "integrity": "sha512-CCNAdYGzKoOc3FtK2kyWCNjygdHppeOEqqK189yhg3yRSsvby+HMms/cM6bLK/4Vf6mFoAy1na3w/oXpqTR2Ag==",
  1065. "license": "MIT",
  1066. "peerDependencies": {
  1067. "@pixi/constants": "6.5.10",
  1068. "@pixi/core": "6.5.10",
  1069. "@pixi/display": "6.5.10",
  1070. "@pixi/math": "6.5.10",
  1071. "@pixi/sprite": "6.5.10",
  1072. "@pixi/utils": "6.5.10"
  1073. }
  1074. },
  1075. "node_modules/@pixi/polyfill": {
  1076. "version": "6.5.10",
  1077. "resolved": "https://registry.npmjs.org/@pixi/polyfill/-/polyfill-6.5.10.tgz",
  1078. "integrity": "sha512-KDTWyr285VvPM8GGTVIZAhmxGrOlTznUGK/9kWS3GtrogwLWn41S/86Yej1gYvotVyUomCcOok33Jzahb+vX1w==",
  1079. "license": "MIT",
  1080. "dependencies": {
  1081. "object-assign": "^4.1.1",
  1082. "promise-polyfill": "^8.2.0"
  1083. }
  1084. },
  1085. "node_modules/@pixi/prepare": {
  1086. "version": "6.5.10",
  1087. "resolved": "https://registry.npmjs.org/@pixi/prepare/-/prepare-6.5.10.tgz",
  1088. "integrity": "sha512-PHMApz/GPg7IX/7+2S98criN2+Mp+fgiKpojV9cnl0SlW2zMxfAHBBi8zik9rHBgjx8X6d6bR0MG1rPtb6vSxQ==",
  1089. "license": "MIT",
  1090. "peerDependencies": {
  1091. "@pixi/core": "6.5.10",
  1092. "@pixi/display": "6.5.10",
  1093. "@pixi/graphics": "6.5.10",
  1094. "@pixi/settings": "6.5.10",
  1095. "@pixi/text": "6.5.10",
  1096. "@pixi/ticker": "6.5.10",
  1097. "@pixi/utils": "6.5.10"
  1098. }
  1099. },
  1100. "node_modules/@pixi/runner": {
  1101. "version": "6.5.10",
  1102. "resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-6.5.10.tgz",
  1103. "integrity": "sha512-4HiHp6diCmigJT/DSbnqQP62OfWKmZB7zPWMdV1AEdr4YT1QxzXAW1wHg7dkoEfyTHqZKl0tm/zcqKq/iH7tMA==",
  1104. "license": "MIT"
  1105. },
  1106. "node_modules/@pixi/settings": {
  1107. "version": "6.5.10",
  1108. "resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-6.5.10.tgz",
  1109. "integrity": "sha512-ypAS5L7pQ2Qb88yQK72bXtc7sD8OrtLWNXdZ/gnw5kwSWCFaOSoqhKqJCXrR5DQtN98+RQefwbEAmMvqobhFyw==",
  1110. "license": "MIT",
  1111. "peerDependencies": {
  1112. "@pixi/constants": "6.5.10"
  1113. }
  1114. },
  1115. "node_modules/@pixi/sprite": {
  1116. "version": "6.5.10",
  1117. "resolved": "https://registry.npmjs.org/@pixi/sprite/-/sprite-6.5.10.tgz",
  1118. "integrity": "sha512-UiK+8LgM9XQ/SBDKjRgZ8WggdOSlFRXqiWjEZVmNkiyU8HvXeFzWPRhpc8RR1zDwAUhZWKtMhF8X/ba9m+z2lg==",
  1119. "license": "MIT",
  1120. "peerDependencies": {
  1121. "@pixi/constants": "6.5.10",
  1122. "@pixi/core": "6.5.10",
  1123. "@pixi/display": "6.5.10",
  1124. "@pixi/math": "6.5.10",
  1125. "@pixi/settings": "6.5.10",
  1126. "@pixi/utils": "6.5.10"
  1127. }
  1128. },
  1129. "node_modules/@pixi/sprite-animated": {
  1130. "version": "6.5.10",
  1131. "resolved": "https://registry.npmjs.org/@pixi/sprite-animated/-/sprite-animated-6.5.10.tgz",
  1132. "integrity": "sha512-x1kayucAqpVbNk+j+diC/7sQGQsAl6NCH1J2/EEaiQjlV3GOx1MXS9Tft1N1Y1y7otbg1XsnBd60/Yzcp05pxA==",
  1133. "license": "MIT",
  1134. "peerDependencies": {
  1135. "@pixi/core": "6.5.10",
  1136. "@pixi/sprite": "6.5.10",
  1137. "@pixi/ticker": "6.5.10"
  1138. }
  1139. },
  1140. "node_modules/@pixi/sprite-tiling": {
  1141. "version": "6.5.10",
  1142. "resolved": "https://registry.npmjs.org/@pixi/sprite-tiling/-/sprite-tiling-6.5.10.tgz",
  1143. "integrity": "sha512-lDFcPuwExrdJhli+WmjPivChjeCG6NiRl36iQ8n2zVi/MYVv9qfKCA6IdU7HBWk1AZdsg6KUTpwfmVLUI+qz3w==",
  1144. "license": "MIT",
  1145. "peerDependencies": {
  1146. "@pixi/constants": "6.5.10",
  1147. "@pixi/core": "6.5.10",
  1148. "@pixi/display": "6.5.10",
  1149. "@pixi/math": "6.5.10",
  1150. "@pixi/sprite": "6.5.10",
  1151. "@pixi/utils": "6.5.10"
  1152. }
  1153. },
  1154. "node_modules/@pixi/spritesheet": {
  1155. "version": "6.5.10",
  1156. "resolved": "https://registry.npmjs.org/@pixi/spritesheet/-/spritesheet-6.5.10.tgz",
  1157. "integrity": "sha512-7uOZ1cYyYtPb0ZEgXV1SZ8ujtluZNY0TL5z3+Qc8cgGGZK/MaWG7N6Wf+uR4BR2x8FLNwcyN5IjbQDKCpblrmg==",
  1158. "license": "MIT",
  1159. "peerDependencies": {
  1160. "@pixi/core": "6.5.10",
  1161. "@pixi/loaders": "6.5.10",
  1162. "@pixi/math": "6.5.10",
  1163. "@pixi/utils": "6.5.10"
  1164. }
  1165. },
  1166. "node_modules/@pixi/text": {
  1167. "version": "6.5.10",
  1168. "resolved": "https://registry.npmjs.org/@pixi/text/-/text-6.5.10.tgz",
  1169. "integrity": "sha512-ikwkonLJ+6QmEVW8Ji9fS5CjrKNbU4mHzYuwRQas/VJQuSWgd0myCcaw6ZbF1oSfQe70HgbNOR0sH8Q3Com0qg==",
  1170. "license": "MIT",
  1171. "peerDependencies": {
  1172. "@pixi/core": "6.5.10",
  1173. "@pixi/math": "6.5.10",
  1174. "@pixi/settings": "6.5.10",
  1175. "@pixi/sprite": "6.5.10",
  1176. "@pixi/utils": "6.5.10"
  1177. }
  1178. },
  1179. "node_modules/@pixi/text-bitmap": {
  1180. "version": "6.5.10",
  1181. "resolved": "https://registry.npmjs.org/@pixi/text-bitmap/-/text-bitmap-6.5.10.tgz",
  1182. "integrity": "sha512-g/iFIMGp6Pfi0BvX6Ykp48Z6JXVgKOrc7UCIR9CM21wYcCiQGqtdFwstV236xk6/D8NToUtSOcifhtQ28dVTdQ==",
  1183. "license": "MIT",
  1184. "peerDependencies": {
  1185. "@pixi/constants": "6.5.10",
  1186. "@pixi/core": "6.5.10",
  1187. "@pixi/display": "6.5.10",
  1188. "@pixi/loaders": "6.5.10",
  1189. "@pixi/math": "6.5.10",
  1190. "@pixi/mesh": "6.5.10",
  1191. "@pixi/settings": "6.5.10",
  1192. "@pixi/text": "6.5.10",
  1193. "@pixi/utils": "6.5.10"
  1194. }
  1195. },
  1196. "node_modules/@pixi/ticker": {
  1197. "version": "6.5.10",
  1198. "resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-6.5.10.tgz",
  1199. "integrity": "sha512-UqX1XYtzqFSirmTOy8QAK4Ccg4KkIZztrBdRPKwFSOEiKAJoGDCSBmyQBo/9aYQKGObbNnrJ7Hxv3/ucg3/1GA==",
  1200. "license": "MIT",
  1201. "peerDependencies": {
  1202. "@pixi/extensions": "6.5.10",
  1203. "@pixi/settings": "6.5.10"
  1204. }
  1205. },
  1206. "node_modules/@pixi/utils": {
  1207. "version": "6.5.10",
  1208. "resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-6.5.10.tgz",
  1209. "integrity": "sha512-4f4qDMmAz9IoSAe08G2LAxUcEtG9jSdudfsMQT2MG+OpfToirboE6cNoO0KnLCvLzDVE/mfisiQ9uJbVA9Ssdw==",
  1210. "license": "MIT",
  1211. "dependencies": {
  1212. "@types/earcut": "^2.1.0",
  1213. "earcut": "^2.2.4",
  1214. "eventemitter3": "^3.1.0",
  1215. "url": "^0.11.0"
  1216. },
  1217. "peerDependencies": {
  1218. "@pixi/constants": "6.5.10",
  1219. "@pixi/settings": "6.5.10"
  1220. }
  1221. },
  1222. "node_modules/@remix-run/router": {
  1223. "version": "1.23.2",
  1224. "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.23.2.tgz",
  1225. "integrity": "sha512-Ic6m2U/rMjTkhERIa/0ZtXJP17QUi2CbWE7cqx4J58M8aA3QTfW+2UlQ4psvTX9IO1RfNVhK3pcpdjej7L+t2w==",
  1226. "license": "MIT",
  1227. "engines": {
  1228. "node": ">=14.0.0"
  1229. }
  1230. },
  1231. "node_modules/@rolldown/pluginutils": {
  1232. "version": "1.0.0-beta.27",
  1233. "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
  1234. "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
  1235. "dev": true,
  1236. "license": "MIT"
  1237. },
  1238. "node_modules/@rollup/rollup-android-arm-eabi": {
  1239. "version": "4.59.0",
  1240. "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz",
  1241. "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==",
  1242. "cpu": [
  1243. "arm"
  1244. ],
  1245. "dev": true,
  1246. "license": "MIT",
  1247. "optional": true,
  1248. "os": [
  1249. "android"
  1250. ]
  1251. },
  1252. "node_modules/@rollup/rollup-android-arm64": {
  1253. "version": "4.59.0",
  1254. "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz",
  1255. "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==",
  1256. "cpu": [
  1257. "arm64"
  1258. ],
  1259. "dev": true,
  1260. "license": "MIT",
  1261. "optional": true,
  1262. "os": [
  1263. "android"
  1264. ]
  1265. },
  1266. "node_modules/@rollup/rollup-darwin-arm64": {
  1267. "version": "4.59.0",
  1268. "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz",
  1269. "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==",
  1270. "cpu": [
  1271. "arm64"
  1272. ],
  1273. "dev": true,
  1274. "license": "MIT",
  1275. "optional": true,
  1276. "os": [
  1277. "darwin"
  1278. ]
  1279. },
  1280. "node_modules/@rollup/rollup-darwin-x64": {
  1281. "version": "4.59.0",
  1282. "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz",
  1283. "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==",
  1284. "cpu": [
  1285. "x64"
  1286. ],
  1287. "dev": true,
  1288. "license": "MIT",
  1289. "optional": true,
  1290. "os": [
  1291. "darwin"
  1292. ]
  1293. },
  1294. "node_modules/@rollup/rollup-freebsd-arm64": {
  1295. "version": "4.59.0",
  1296. "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz",
  1297. "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==",
  1298. "cpu": [
  1299. "arm64"
  1300. ],
  1301. "dev": true,
  1302. "license": "MIT",
  1303. "optional": true,
  1304. "os": [
  1305. "freebsd"
  1306. ]
  1307. },
  1308. "node_modules/@rollup/rollup-freebsd-x64": {
  1309. "version": "4.59.0",
  1310. "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz",
  1311. "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==",
  1312. "cpu": [
  1313. "x64"
  1314. ],
  1315. "dev": true,
  1316. "license": "MIT",
  1317. "optional": true,
  1318. "os": [
  1319. "freebsd"
  1320. ]
  1321. },
  1322. "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
  1323. "version": "4.59.0",
  1324. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz",
  1325. "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==",
  1326. "cpu": [
  1327. "arm"
  1328. ],
  1329. "dev": true,
  1330. "license": "MIT",
  1331. "optional": true,
  1332. "os": [
  1333. "linux"
  1334. ]
  1335. },
  1336. "node_modules/@rollup/rollup-linux-arm-musleabihf": {
  1337. "version": "4.59.0",
  1338. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz",
  1339. "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==",
  1340. "cpu": [
  1341. "arm"
  1342. ],
  1343. "dev": true,
  1344. "license": "MIT",
  1345. "optional": true,
  1346. "os": [
  1347. "linux"
  1348. ]
  1349. },
  1350. "node_modules/@rollup/rollup-linux-arm64-gnu": {
  1351. "version": "4.59.0",
  1352. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz",
  1353. "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==",
  1354. "cpu": [
  1355. "arm64"
  1356. ],
  1357. "dev": true,
  1358. "license": "MIT",
  1359. "optional": true,
  1360. "os": [
  1361. "linux"
  1362. ]
  1363. },
  1364. "node_modules/@rollup/rollup-linux-arm64-musl": {
  1365. "version": "4.59.0",
  1366. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz",
  1367. "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==",
  1368. "cpu": [
  1369. "arm64"
  1370. ],
  1371. "dev": true,
  1372. "license": "MIT",
  1373. "optional": true,
  1374. "os": [
  1375. "linux"
  1376. ]
  1377. },
  1378. "node_modules/@rollup/rollup-linux-loong64-gnu": {
  1379. "version": "4.59.0",
  1380. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz",
  1381. "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==",
  1382. "cpu": [
  1383. "loong64"
  1384. ],
  1385. "dev": true,
  1386. "license": "MIT",
  1387. "optional": true,
  1388. "os": [
  1389. "linux"
  1390. ]
  1391. },
  1392. "node_modules/@rollup/rollup-linux-loong64-musl": {
  1393. "version": "4.59.0",
  1394. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz",
  1395. "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==",
  1396. "cpu": [
  1397. "loong64"
  1398. ],
  1399. "dev": true,
  1400. "license": "MIT",
  1401. "optional": true,
  1402. "os": [
  1403. "linux"
  1404. ]
  1405. },
  1406. "node_modules/@rollup/rollup-linux-ppc64-gnu": {
  1407. "version": "4.59.0",
  1408. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz",
  1409. "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==",
  1410. "cpu": [
  1411. "ppc64"
  1412. ],
  1413. "dev": true,
  1414. "license": "MIT",
  1415. "optional": true,
  1416. "os": [
  1417. "linux"
  1418. ]
  1419. },
  1420. "node_modules/@rollup/rollup-linux-ppc64-musl": {
  1421. "version": "4.59.0",
  1422. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz",
  1423. "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==",
  1424. "cpu": [
  1425. "ppc64"
  1426. ],
  1427. "dev": true,
  1428. "license": "MIT",
  1429. "optional": true,
  1430. "os": [
  1431. "linux"
  1432. ]
  1433. },
  1434. "node_modules/@rollup/rollup-linux-riscv64-gnu": {
  1435. "version": "4.59.0",
  1436. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz",
  1437. "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==",
  1438. "cpu": [
  1439. "riscv64"
  1440. ],
  1441. "dev": true,
  1442. "license": "MIT",
  1443. "optional": true,
  1444. "os": [
  1445. "linux"
  1446. ]
  1447. },
  1448. "node_modules/@rollup/rollup-linux-riscv64-musl": {
  1449. "version": "4.59.0",
  1450. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz",
  1451. "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==",
  1452. "cpu": [
  1453. "riscv64"
  1454. ],
  1455. "dev": true,
  1456. "license": "MIT",
  1457. "optional": true,
  1458. "os": [
  1459. "linux"
  1460. ]
  1461. },
  1462. "node_modules/@rollup/rollup-linux-s390x-gnu": {
  1463. "version": "4.59.0",
  1464. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz",
  1465. "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==",
  1466. "cpu": [
  1467. "s390x"
  1468. ],
  1469. "dev": true,
  1470. "license": "MIT",
  1471. "optional": true,
  1472. "os": [
  1473. "linux"
  1474. ]
  1475. },
  1476. "node_modules/@rollup/rollup-linux-x64-gnu": {
  1477. "version": "4.59.0",
  1478. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz",
  1479. "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==",
  1480. "cpu": [
  1481. "x64"
  1482. ],
  1483. "dev": true,
  1484. "license": "MIT",
  1485. "optional": true,
  1486. "os": [
  1487. "linux"
  1488. ]
  1489. },
  1490. "node_modules/@rollup/rollup-linux-x64-musl": {
  1491. "version": "4.59.0",
  1492. "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz",
  1493. "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==",
  1494. "cpu": [
  1495. "x64"
  1496. ],
  1497. "dev": true,
  1498. "license": "MIT",
  1499. "optional": true,
  1500. "os": [
  1501. "linux"
  1502. ]
  1503. },
  1504. "node_modules/@rollup/rollup-openbsd-x64": {
  1505. "version": "4.59.0",
  1506. "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz",
  1507. "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==",
  1508. "cpu": [
  1509. "x64"
  1510. ],
  1511. "dev": true,
  1512. "license": "MIT",
  1513. "optional": true,
  1514. "os": [
  1515. "openbsd"
  1516. ]
  1517. },
  1518. "node_modules/@rollup/rollup-openharmony-arm64": {
  1519. "version": "4.59.0",
  1520. "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz",
  1521. "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==",
  1522. "cpu": [
  1523. "arm64"
  1524. ],
  1525. "dev": true,
  1526. "license": "MIT",
  1527. "optional": true,
  1528. "os": [
  1529. "openharmony"
  1530. ]
  1531. },
  1532. "node_modules/@rollup/rollup-win32-arm64-msvc": {
  1533. "version": "4.59.0",
  1534. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz",
  1535. "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==",
  1536. "cpu": [
  1537. "arm64"
  1538. ],
  1539. "dev": true,
  1540. "license": "MIT",
  1541. "optional": true,
  1542. "os": [
  1543. "win32"
  1544. ]
  1545. },
  1546. "node_modules/@rollup/rollup-win32-ia32-msvc": {
  1547. "version": "4.59.0",
  1548. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz",
  1549. "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==",
  1550. "cpu": [
  1551. "ia32"
  1552. ],
  1553. "dev": true,
  1554. "license": "MIT",
  1555. "optional": true,
  1556. "os": [
  1557. "win32"
  1558. ]
  1559. },
  1560. "node_modules/@rollup/rollup-win32-x64-gnu": {
  1561. "version": "4.59.0",
  1562. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz",
  1563. "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==",
  1564. "cpu": [
  1565. "x64"
  1566. ],
  1567. "dev": true,
  1568. "license": "MIT",
  1569. "optional": true,
  1570. "os": [
  1571. "win32"
  1572. ]
  1573. },
  1574. "node_modules/@rollup/rollup-win32-x64-msvc": {
  1575. "version": "4.59.0",
  1576. "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz",
  1577. "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==",
  1578. "cpu": [
  1579. "x64"
  1580. ],
  1581. "dev": true,
  1582. "license": "MIT",
  1583. "optional": true,
  1584. "os": [
  1585. "win32"
  1586. ]
  1587. },
  1588. "node_modules/@types/babel__core": {
  1589. "version": "7.20.5",
  1590. "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
  1591. "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
  1592. "dev": true,
  1593. "license": "MIT",
  1594. "dependencies": {
  1595. "@babel/parser": "^7.20.7",
  1596. "@babel/types": "^7.20.7",
  1597. "@types/babel__generator": "*",
  1598. "@types/babel__template": "*",
  1599. "@types/babel__traverse": "*"
  1600. }
  1601. },
  1602. "node_modules/@types/babel__generator": {
  1603. "version": "7.27.0",
  1604. "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
  1605. "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
  1606. "dev": true,
  1607. "license": "MIT",
  1608. "dependencies": {
  1609. "@babel/types": "^7.0.0"
  1610. }
  1611. },
  1612. "node_modules/@types/babel__template": {
  1613. "version": "7.4.4",
  1614. "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
  1615. "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
  1616. "dev": true,
  1617. "license": "MIT",
  1618. "dependencies": {
  1619. "@babel/parser": "^7.1.0",
  1620. "@babel/types": "^7.0.0"
  1621. }
  1622. },
  1623. "node_modules/@types/babel__traverse": {
  1624. "version": "7.28.0",
  1625. "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
  1626. "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
  1627. "dev": true,
  1628. "license": "MIT",
  1629. "dependencies": {
  1630. "@babel/types": "^7.28.2"
  1631. }
  1632. },
  1633. "node_modules/@types/debug": {
  1634. "version": "4.1.13",
  1635. "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
  1636. "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==",
  1637. "license": "MIT",
  1638. "dependencies": {
  1639. "@types/ms": "*"
  1640. }
  1641. },
  1642. "node_modules/@types/earcut": {
  1643. "version": "2.1.4",
  1644. "resolved": "https://registry.npmjs.org/@types/earcut/-/earcut-2.1.4.tgz",
  1645. "integrity": "sha512-qp3m9PPz4gULB9MhjGID7wpo3gJ4bTGXm7ltNDsmOvsPduTeHp8wSW9YckBj3mljeOh4F0m2z/0JKAALRKbmLQ==",
  1646. "license": "MIT"
  1647. },
  1648. "node_modules/@types/estree": {
  1649. "version": "1.0.8",
  1650. "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
  1651. "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
  1652. "license": "MIT"
  1653. },
  1654. "node_modules/@types/estree-jsx": {
  1655. "version": "1.0.5",
  1656. "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
  1657. "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
  1658. "license": "MIT",
  1659. "dependencies": {
  1660. "@types/estree": "*"
  1661. }
  1662. },
  1663. "node_modules/@types/hast": {
  1664. "version": "3.0.4",
  1665. "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
  1666. "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
  1667. "license": "MIT",
  1668. "dependencies": {
  1669. "@types/unist": "*"
  1670. }
  1671. },
  1672. "node_modules/@types/katex": {
  1673. "version": "0.16.8",
  1674. "resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.16.8.tgz",
  1675. "integrity": "sha512-trgaNyfU+Xh2Tc+ABIb44a5AYUpicB3uwirOioeOkNPPbmgRNtcWyDeeFRzjPZENO9Vq8gvVqfhaaXWLlevVwg==",
  1676. "license": "MIT"
  1677. },
  1678. "node_modules/@types/mdast": {
  1679. "version": "4.0.4",
  1680. "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
  1681. "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
  1682. "license": "MIT",
  1683. "dependencies": {
  1684. "@types/unist": "*"
  1685. }
  1686. },
  1687. "node_modules/@types/ms": {
  1688. "version": "2.1.0",
  1689. "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
  1690. "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
  1691. "license": "MIT"
  1692. },
  1693. "node_modules/@types/offscreencanvas": {
  1694. "version": "2019.7.3",
  1695. "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.3.tgz",
  1696. "integrity": "sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A==",
  1697. "license": "MIT"
  1698. },
  1699. "node_modules/@types/react": {
  1700. "version": "19.2.14",
  1701. "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
  1702. "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
  1703. "license": "MIT",
  1704. "dependencies": {
  1705. "csstype": "^3.2.2"
  1706. }
  1707. },
  1708. "node_modules/@types/react-dom": {
  1709. "version": "19.2.3",
  1710. "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
  1711. "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
  1712. "dev": true,
  1713. "license": "MIT",
  1714. "peerDependencies": {
  1715. "@types/react": "^19.2.0"
  1716. }
  1717. },
  1718. "node_modules/@types/unist": {
  1719. "version": "3.0.3",
  1720. "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
  1721. "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
  1722. "license": "MIT"
  1723. },
  1724. "node_modules/@ungap/structured-clone": {
  1725. "version": "1.3.0",
  1726. "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
  1727. "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
  1728. "license": "ISC"
  1729. },
  1730. "node_modules/@vitejs/plugin-react": {
  1731. "version": "4.7.0",
  1732. "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
  1733. "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
  1734. "dev": true,
  1735. "license": "MIT",
  1736. "dependencies": {
  1737. "@babel/core": "^7.28.0",
  1738. "@babel/plugin-transform-react-jsx-self": "^7.27.1",
  1739. "@babel/plugin-transform-react-jsx-source": "^7.27.1",
  1740. "@rolldown/pluginutils": "1.0.0-beta.27",
  1741. "@types/babel__core": "^7.20.5",
  1742. "react-refresh": "^0.17.0"
  1743. },
  1744. "engines": {
  1745. "node": "^14.18.0 || >=16.0.0"
  1746. },
  1747. "peerDependencies": {
  1748. "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
  1749. }
  1750. },
  1751. "node_modules/array-union": {
  1752. "version": "1.0.2",
  1753. "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
  1754. "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==",
  1755. "license": "MIT",
  1756. "dependencies": {
  1757. "array-uniq": "^1.0.1"
  1758. },
  1759. "engines": {
  1760. "node": ">=0.10.0"
  1761. }
  1762. },
  1763. "node_modules/array-uniq": {
  1764. "version": "1.0.3",
  1765. "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
  1766. "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==",
  1767. "license": "MIT",
  1768. "engines": {
  1769. "node": ">=0.10.0"
  1770. }
  1771. },
  1772. "node_modules/async": {
  1773. "version": "2.6.4",
  1774. "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz",
  1775. "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==",
  1776. "license": "MIT",
  1777. "dependencies": {
  1778. "lodash": "^4.17.14"
  1779. }
  1780. },
  1781. "node_modules/bail": {
  1782. "version": "2.0.2",
  1783. "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
  1784. "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
  1785. "license": "MIT",
  1786. "funding": {
  1787. "type": "github",
  1788. "url": "https://github.com/sponsors/wooorm"
  1789. }
  1790. },
  1791. "node_modules/balanced-match": {
  1792. "version": "1.0.2",
  1793. "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
  1794. "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
  1795. "license": "MIT"
  1796. },
  1797. "node_modules/baseline-browser-mapping": {
  1798. "version": "2.10.8",
  1799. "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.8.tgz",
  1800. "integrity": "sha512-PCLz/LXGBsNTErbtB6i5u4eLpHeMfi93aUv5duMmj6caNu6IphS4q6UevDnL36sZQv9lrP11dbPKGMaXPwMKfQ==",
  1801. "dev": true,
  1802. "license": "Apache-2.0",
  1803. "bin": {
  1804. "baseline-browser-mapping": "dist/cli.cjs"
  1805. },
  1806. "engines": {
  1807. "node": ">=6.0.0"
  1808. }
  1809. },
  1810. "node_modules/brace-expansion": {
  1811. "version": "1.1.12",
  1812. "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
  1813. "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
  1814. "license": "MIT",
  1815. "dependencies": {
  1816. "balanced-match": "^1.0.0",
  1817. "concat-map": "0.0.1"
  1818. }
  1819. },
  1820. "node_modules/browserslist": {
  1821. "version": "4.28.1",
  1822. "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
  1823. "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
  1824. "dev": true,
  1825. "funding": [
  1826. {
  1827. "type": "opencollective",
  1828. "url": "https://opencollective.com/browserslist"
  1829. },
  1830. {
  1831. "type": "tidelift",
  1832. "url": "https://tidelift.com/funding/github/npm/browserslist"
  1833. },
  1834. {
  1835. "type": "github",
  1836. "url": "https://github.com/sponsors/ai"
  1837. }
  1838. ],
  1839. "license": "MIT",
  1840. "dependencies": {
  1841. "baseline-browser-mapping": "^2.9.0",
  1842. "caniuse-lite": "^1.0.30001759",
  1843. "electron-to-chromium": "^1.5.263",
  1844. "node-releases": "^2.0.27",
  1845. "update-browserslist-db": "^1.2.0"
  1846. },
  1847. "bin": {
  1848. "browserslist": "cli.js"
  1849. },
  1850. "engines": {
  1851. "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
  1852. }
  1853. },
  1854. "node_modules/call-bind-apply-helpers": {
  1855. "version": "1.0.2",
  1856. "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  1857. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  1858. "license": "MIT",
  1859. "dependencies": {
  1860. "es-errors": "^1.3.0",
  1861. "function-bind": "^1.1.2"
  1862. },
  1863. "engines": {
  1864. "node": ">= 0.4"
  1865. }
  1866. },
  1867. "node_modules/call-bound": {
  1868. "version": "1.0.4",
  1869. "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
  1870. "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
  1871. "license": "MIT",
  1872. "dependencies": {
  1873. "call-bind-apply-helpers": "^1.0.2",
  1874. "get-intrinsic": "^1.3.0"
  1875. },
  1876. "engines": {
  1877. "node": ">= 0.4"
  1878. },
  1879. "funding": {
  1880. "url": "https://github.com/sponsors/ljharb"
  1881. }
  1882. },
  1883. "node_modules/caniuse-lite": {
  1884. "version": "1.0.30001779",
  1885. "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001779.tgz",
  1886. "integrity": "sha512-U5og2PN7V4DMgF50YPNtnZJGWVLFjjsN3zb6uMT5VGYIewieDj1upwfuVNXf4Kor+89c3iCRJnSzMD5LmTvsfA==",
  1887. "dev": true,
  1888. "funding": [
  1889. {
  1890. "type": "opencollective",
  1891. "url": "https://opencollective.com/browserslist"
  1892. },
  1893. {
  1894. "type": "tidelift",
  1895. "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
  1896. },
  1897. {
  1898. "type": "github",
  1899. "url": "https://github.com/sponsors/ai"
  1900. }
  1901. ],
  1902. "license": "CC-BY-4.0"
  1903. },
  1904. "node_modules/ccount": {
  1905. "version": "2.0.1",
  1906. "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
  1907. "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
  1908. "license": "MIT",
  1909. "funding": {
  1910. "type": "github",
  1911. "url": "https://github.com/sponsors/wooorm"
  1912. }
  1913. },
  1914. "node_modules/character-entities": {
  1915. "version": "2.0.2",
  1916. "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
  1917. "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
  1918. "license": "MIT",
  1919. "funding": {
  1920. "type": "github",
  1921. "url": "https://github.com/sponsors/wooorm"
  1922. }
  1923. },
  1924. "node_modules/character-entities-html4": {
  1925. "version": "2.1.0",
  1926. "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
  1927. "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
  1928. "license": "MIT",
  1929. "funding": {
  1930. "type": "github",
  1931. "url": "https://github.com/sponsors/wooorm"
  1932. }
  1933. },
  1934. "node_modules/character-entities-legacy": {
  1935. "version": "3.0.0",
  1936. "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
  1937. "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
  1938. "license": "MIT",
  1939. "funding": {
  1940. "type": "github",
  1941. "url": "https://github.com/sponsors/wooorm"
  1942. }
  1943. },
  1944. "node_modules/character-reference-invalid": {
  1945. "version": "2.0.1",
  1946. "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
  1947. "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
  1948. "license": "MIT",
  1949. "funding": {
  1950. "type": "github",
  1951. "url": "https://github.com/sponsors/wooorm"
  1952. }
  1953. },
  1954. "node_modules/comma-separated-tokens": {
  1955. "version": "2.0.3",
  1956. "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
  1957. "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
  1958. "license": "MIT",
  1959. "funding": {
  1960. "type": "github",
  1961. "url": "https://github.com/sponsors/wooorm"
  1962. }
  1963. },
  1964. "node_modules/commander": {
  1965. "version": "2.20.3",
  1966. "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
  1967. "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
  1968. "license": "MIT"
  1969. },
  1970. "node_modules/commondir": {
  1971. "version": "1.0.1",
  1972. "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
  1973. "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==",
  1974. "license": "MIT"
  1975. },
  1976. "node_modules/concat-map": {
  1977. "version": "0.0.1",
  1978. "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
  1979. "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
  1980. "license": "MIT"
  1981. },
  1982. "node_modules/convert-source-map": {
  1983. "version": "2.0.0",
  1984. "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
  1985. "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
  1986. "dev": true,
  1987. "license": "MIT"
  1988. },
  1989. "node_modules/cose-base": {
  1990. "version": "1.0.3",
  1991. "resolved": "https://registry.npmjs.org/cose-base/-/cose-base-1.0.3.tgz",
  1992. "integrity": "sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==",
  1993. "license": "MIT",
  1994. "dependencies": {
  1995. "layout-base": "^1.0.0"
  1996. }
  1997. },
  1998. "node_modules/csstype": {
  1999. "version": "3.2.3",
  2000. "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
  2001. "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
  2002. "license": "MIT"
  2003. },
  2004. "node_modules/cytoscape": {
  2005. "version": "3.33.2",
  2006. "resolved": "https://registry.npmjs.org/cytoscape/-/cytoscape-3.33.2.tgz",
  2007. "integrity": "sha512-sj4HXd3DokGhzZAdjDejGvTPLqlt84vNFN8m7bGsOzDY5DyVcxIb2ejIXat2Iy7HxWhdT/N1oKyheJ5YdpsGuw==",
  2008. "license": "MIT",
  2009. "engines": {
  2010. "node": ">=0.10"
  2011. }
  2012. },
  2013. "node_modules/cytoscape-cose-bilkent": {
  2014. "version": "4.1.0",
  2015. "resolved": "https://registry.npmjs.org/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz",
  2016. "integrity": "sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==",
  2017. "license": "MIT",
  2018. "dependencies": {
  2019. "cose-base": "^1.0.0"
  2020. },
  2021. "peerDependencies": {
  2022. "cytoscape": "^3.2.0"
  2023. }
  2024. },
  2025. "node_modules/debug": {
  2026. "version": "4.4.3",
  2027. "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
  2028. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  2029. "license": "MIT",
  2030. "dependencies": {
  2031. "ms": "^2.1.3"
  2032. },
  2033. "engines": {
  2034. "node": ">=6.0"
  2035. },
  2036. "peerDependenciesMeta": {
  2037. "supports-color": {
  2038. "optional": true
  2039. }
  2040. }
  2041. },
  2042. "node_modules/decode-named-character-reference": {
  2043. "version": "1.3.0",
  2044. "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
  2045. "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
  2046. "license": "MIT",
  2047. "dependencies": {
  2048. "character-entities": "^2.0.0"
  2049. },
  2050. "funding": {
  2051. "type": "github",
  2052. "url": "https://github.com/sponsors/wooorm"
  2053. }
  2054. },
  2055. "node_modules/dequal": {
  2056. "version": "2.0.3",
  2057. "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
  2058. "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
  2059. "license": "MIT",
  2060. "engines": {
  2061. "node": ">=6"
  2062. }
  2063. },
  2064. "node_modules/devlop": {
  2065. "version": "1.1.0",
  2066. "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
  2067. "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
  2068. "license": "MIT",
  2069. "dependencies": {
  2070. "dequal": "^2.0.0"
  2071. },
  2072. "funding": {
  2073. "type": "github",
  2074. "url": "https://github.com/sponsors/wooorm"
  2075. }
  2076. },
  2077. "node_modules/dunder-proto": {
  2078. "version": "1.0.1",
  2079. "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
  2080. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  2081. "license": "MIT",
  2082. "dependencies": {
  2083. "call-bind-apply-helpers": "^1.0.1",
  2084. "es-errors": "^1.3.0",
  2085. "gopd": "^1.2.0"
  2086. },
  2087. "engines": {
  2088. "node": ">= 0.4"
  2089. }
  2090. },
  2091. "node_modules/earcut": {
  2092. "version": "2.2.4",
  2093. "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz",
  2094. "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==",
  2095. "license": "ISC"
  2096. },
  2097. "node_modules/electron-to-chromium": {
  2098. "version": "1.5.313",
  2099. "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.313.tgz",
  2100. "integrity": "sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA==",
  2101. "dev": true,
  2102. "license": "ISC"
  2103. },
  2104. "node_modules/email-addresses": {
  2105. "version": "3.1.0",
  2106. "resolved": "https://registry.npmjs.org/email-addresses/-/email-addresses-3.1.0.tgz",
  2107. "integrity": "sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg==",
  2108. "license": "MIT"
  2109. },
  2110. "node_modules/entities": {
  2111. "version": "6.0.1",
  2112. "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
  2113. "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
  2114. "license": "BSD-2-Clause",
  2115. "engines": {
  2116. "node": ">=0.12"
  2117. },
  2118. "funding": {
  2119. "url": "https://github.com/fb55/entities?sponsor=1"
  2120. }
  2121. },
  2122. "node_modules/es-define-property": {
  2123. "version": "1.0.1",
  2124. "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
  2125. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  2126. "license": "MIT",
  2127. "engines": {
  2128. "node": ">= 0.4"
  2129. }
  2130. },
  2131. "node_modules/es-errors": {
  2132. "version": "1.3.0",
  2133. "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
  2134. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  2135. "license": "MIT",
  2136. "engines": {
  2137. "node": ">= 0.4"
  2138. }
  2139. },
  2140. "node_modules/es-object-atoms": {
  2141. "version": "1.1.1",
  2142. "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  2143. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  2144. "license": "MIT",
  2145. "dependencies": {
  2146. "es-errors": "^1.3.0"
  2147. },
  2148. "engines": {
  2149. "node": ">= 0.4"
  2150. }
  2151. },
  2152. "node_modules/esbuild": {
  2153. "version": "0.25.12",
  2154. "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
  2155. "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
  2156. "dev": true,
  2157. "hasInstallScript": true,
  2158. "license": "MIT",
  2159. "bin": {
  2160. "esbuild": "bin/esbuild"
  2161. },
  2162. "engines": {
  2163. "node": ">=18"
  2164. },
  2165. "optionalDependencies": {
  2166. "@esbuild/aix-ppc64": "0.25.12",
  2167. "@esbuild/android-arm": "0.25.12",
  2168. "@esbuild/android-arm64": "0.25.12",
  2169. "@esbuild/android-x64": "0.25.12",
  2170. "@esbuild/darwin-arm64": "0.25.12",
  2171. "@esbuild/darwin-x64": "0.25.12",
  2172. "@esbuild/freebsd-arm64": "0.25.12",
  2173. "@esbuild/freebsd-x64": "0.25.12",
  2174. "@esbuild/linux-arm": "0.25.12",
  2175. "@esbuild/linux-arm64": "0.25.12",
  2176. "@esbuild/linux-ia32": "0.25.12",
  2177. "@esbuild/linux-loong64": "0.25.12",
  2178. "@esbuild/linux-mips64el": "0.25.12",
  2179. "@esbuild/linux-ppc64": "0.25.12",
  2180. "@esbuild/linux-riscv64": "0.25.12",
  2181. "@esbuild/linux-s390x": "0.25.12",
  2182. "@esbuild/linux-x64": "0.25.12",
  2183. "@esbuild/netbsd-arm64": "0.25.12",
  2184. "@esbuild/netbsd-x64": "0.25.12",
  2185. "@esbuild/openbsd-arm64": "0.25.12",
  2186. "@esbuild/openbsd-x64": "0.25.12",
  2187. "@esbuild/openharmony-arm64": "0.25.12",
  2188. "@esbuild/sunos-x64": "0.25.12",
  2189. "@esbuild/win32-arm64": "0.25.12",
  2190. "@esbuild/win32-ia32": "0.25.12",
  2191. "@esbuild/win32-x64": "0.25.12"
  2192. }
  2193. },
  2194. "node_modules/escalade": {
  2195. "version": "3.2.0",
  2196. "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
  2197. "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
  2198. "dev": true,
  2199. "license": "MIT",
  2200. "engines": {
  2201. "node": ">=6"
  2202. }
  2203. },
  2204. "node_modules/escape-string-regexp": {
  2205. "version": "1.0.5",
  2206. "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
  2207. "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
  2208. "license": "MIT",
  2209. "engines": {
  2210. "node": ">=0.8.0"
  2211. }
  2212. },
  2213. "node_modules/estree-util-is-identifier-name": {
  2214. "version": "3.0.0",
  2215. "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
  2216. "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
  2217. "license": "MIT",
  2218. "funding": {
  2219. "type": "opencollective",
  2220. "url": "https://opencollective.com/unified"
  2221. }
  2222. },
  2223. "node_modules/eventemitter3": {
  2224. "version": "3.1.2",
  2225. "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz",
  2226. "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==",
  2227. "license": "MIT"
  2228. },
  2229. "node_modules/extend": {
  2230. "version": "3.0.2",
  2231. "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
  2232. "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
  2233. "license": "MIT"
  2234. },
  2235. "node_modules/fdir": {
  2236. "version": "6.5.0",
  2237. "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
  2238. "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
  2239. "dev": true,
  2240. "license": "MIT",
  2241. "engines": {
  2242. "node": ">=12.0.0"
  2243. },
  2244. "peerDependencies": {
  2245. "picomatch": "^3 || ^4"
  2246. },
  2247. "peerDependenciesMeta": {
  2248. "picomatch": {
  2249. "optional": true
  2250. }
  2251. }
  2252. },
  2253. "node_modules/filename-reserved-regex": {
  2254. "version": "2.0.0",
  2255. "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
  2256. "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==",
  2257. "license": "MIT",
  2258. "engines": {
  2259. "node": ">=4"
  2260. }
  2261. },
  2262. "node_modules/filenamify": {
  2263. "version": "4.3.0",
  2264. "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz",
  2265. "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==",
  2266. "license": "MIT",
  2267. "dependencies": {
  2268. "filename-reserved-regex": "^2.0.0",
  2269. "strip-outer": "^1.0.1",
  2270. "trim-repeated": "^1.0.0"
  2271. },
  2272. "engines": {
  2273. "node": ">=8"
  2274. },
  2275. "funding": {
  2276. "url": "https://github.com/sponsors/sindresorhus"
  2277. }
  2278. },
  2279. "node_modules/find-cache-dir": {
  2280. "version": "3.3.2",
  2281. "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
  2282. "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
  2283. "license": "MIT",
  2284. "dependencies": {
  2285. "commondir": "^1.0.1",
  2286. "make-dir": "^3.0.2",
  2287. "pkg-dir": "^4.1.0"
  2288. },
  2289. "engines": {
  2290. "node": ">=8"
  2291. },
  2292. "funding": {
  2293. "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
  2294. }
  2295. },
  2296. "node_modules/find-up": {
  2297. "version": "4.1.0",
  2298. "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
  2299. "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
  2300. "license": "MIT",
  2301. "dependencies": {
  2302. "locate-path": "^5.0.0",
  2303. "path-exists": "^4.0.0"
  2304. },
  2305. "engines": {
  2306. "node": ">=8"
  2307. }
  2308. },
  2309. "node_modules/fs-extra": {
  2310. "version": "8.1.0",
  2311. "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
  2312. "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
  2313. "license": "MIT",
  2314. "dependencies": {
  2315. "graceful-fs": "^4.2.0",
  2316. "jsonfile": "^4.0.0",
  2317. "universalify": "^0.1.0"
  2318. },
  2319. "engines": {
  2320. "node": ">=6 <7 || >=8"
  2321. }
  2322. },
  2323. "node_modules/fs.realpath": {
  2324. "version": "1.0.0",
  2325. "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
  2326. "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
  2327. "license": "ISC"
  2328. },
  2329. "node_modules/fsevents": {
  2330. "version": "2.3.3",
  2331. "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
  2332. "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
  2333. "dev": true,
  2334. "hasInstallScript": true,
  2335. "license": "MIT",
  2336. "optional": true,
  2337. "os": [
  2338. "darwin"
  2339. ],
  2340. "engines": {
  2341. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  2342. }
  2343. },
  2344. "node_modules/function-bind": {
  2345. "version": "1.1.2",
  2346. "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
  2347. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  2348. "license": "MIT",
  2349. "funding": {
  2350. "url": "https://github.com/sponsors/ljharb"
  2351. }
  2352. },
  2353. "node_modules/gensync": {
  2354. "version": "1.0.0-beta.2",
  2355. "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
  2356. "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
  2357. "dev": true,
  2358. "license": "MIT",
  2359. "engines": {
  2360. "node": ">=6.9.0"
  2361. }
  2362. },
  2363. "node_modules/get-intrinsic": {
  2364. "version": "1.3.0",
  2365. "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  2366. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  2367. "license": "MIT",
  2368. "dependencies": {
  2369. "call-bind-apply-helpers": "^1.0.2",
  2370. "es-define-property": "^1.0.1",
  2371. "es-errors": "^1.3.0",
  2372. "es-object-atoms": "^1.1.1",
  2373. "function-bind": "^1.1.2",
  2374. "get-proto": "^1.0.1",
  2375. "gopd": "^1.2.0",
  2376. "has-symbols": "^1.1.0",
  2377. "hasown": "^2.0.2",
  2378. "math-intrinsics": "^1.1.0"
  2379. },
  2380. "engines": {
  2381. "node": ">= 0.4"
  2382. },
  2383. "funding": {
  2384. "url": "https://github.com/sponsors/ljharb"
  2385. }
  2386. },
  2387. "node_modules/get-proto": {
  2388. "version": "1.0.1",
  2389. "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
  2390. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  2391. "license": "MIT",
  2392. "dependencies": {
  2393. "dunder-proto": "^1.0.1",
  2394. "es-object-atoms": "^1.0.0"
  2395. },
  2396. "engines": {
  2397. "node": ">= 0.4"
  2398. }
  2399. },
  2400. "node_modules/gh-pages": {
  2401. "version": "4.0.0",
  2402. "resolved": "https://registry.npmjs.org/gh-pages/-/gh-pages-4.0.0.tgz",
  2403. "integrity": "sha512-p8S0T3aGJc68MtwOcZusul5qPSNZCalap3NWbhRUZYu1YOdp+EjZ+4kPmRM8h3NNRdqw00yuevRjlkuSzCn7iQ==",
  2404. "license": "MIT",
  2405. "dependencies": {
  2406. "async": "^2.6.1",
  2407. "commander": "^2.18.0",
  2408. "email-addresses": "^3.0.1",
  2409. "filenamify": "^4.3.0",
  2410. "find-cache-dir": "^3.3.1",
  2411. "fs-extra": "^8.1.0",
  2412. "globby": "^6.1.0"
  2413. },
  2414. "bin": {
  2415. "gh-pages": "bin/gh-pages.js",
  2416. "gh-pages-clean": "bin/gh-pages-clean.js"
  2417. },
  2418. "engines": {
  2419. "node": ">=10"
  2420. }
  2421. },
  2422. "node_modules/glob": {
  2423. "version": "7.2.3",
  2424. "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
  2425. "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
  2426. "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
  2427. "license": "ISC",
  2428. "dependencies": {
  2429. "fs.realpath": "^1.0.0",
  2430. "inflight": "^1.0.4",
  2431. "inherits": "2",
  2432. "minimatch": "^3.1.1",
  2433. "once": "^1.3.0",
  2434. "path-is-absolute": "^1.0.0"
  2435. },
  2436. "engines": {
  2437. "node": "*"
  2438. },
  2439. "funding": {
  2440. "url": "https://github.com/sponsors/isaacs"
  2441. }
  2442. },
  2443. "node_modules/globby": {
  2444. "version": "6.1.0",
  2445. "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz",
  2446. "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==",
  2447. "license": "MIT",
  2448. "dependencies": {
  2449. "array-union": "^1.0.1",
  2450. "glob": "^7.0.3",
  2451. "object-assign": "^4.0.1",
  2452. "pify": "^2.0.0",
  2453. "pinkie-promise": "^2.0.0"
  2454. },
  2455. "engines": {
  2456. "node": ">=0.10.0"
  2457. }
  2458. },
  2459. "node_modules/gopd": {
  2460. "version": "1.2.0",
  2461. "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
  2462. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  2463. "license": "MIT",
  2464. "engines": {
  2465. "node": ">= 0.4"
  2466. },
  2467. "funding": {
  2468. "url": "https://github.com/sponsors/ljharb"
  2469. }
  2470. },
  2471. "node_modules/graceful-fs": {
  2472. "version": "4.2.11",
  2473. "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
  2474. "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
  2475. "license": "ISC"
  2476. },
  2477. "node_modules/has-symbols": {
  2478. "version": "1.1.0",
  2479. "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
  2480. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  2481. "license": "MIT",
  2482. "engines": {
  2483. "node": ">= 0.4"
  2484. },
  2485. "funding": {
  2486. "url": "https://github.com/sponsors/ljharb"
  2487. }
  2488. },
  2489. "node_modules/hasown": {
  2490. "version": "2.0.2",
  2491. "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
  2492. "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
  2493. "license": "MIT",
  2494. "dependencies": {
  2495. "function-bind": "^1.1.2"
  2496. },
  2497. "engines": {
  2498. "node": ">= 0.4"
  2499. }
  2500. },
  2501. "node_modules/hast-util-from-dom": {
  2502. "version": "5.0.1",
  2503. "resolved": "https://registry.npmjs.org/hast-util-from-dom/-/hast-util-from-dom-5.0.1.tgz",
  2504. "integrity": "sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q==",
  2505. "license": "ISC",
  2506. "dependencies": {
  2507. "@types/hast": "^3.0.0",
  2508. "hastscript": "^9.0.0",
  2509. "web-namespaces": "^2.0.0"
  2510. },
  2511. "funding": {
  2512. "type": "opencollective",
  2513. "url": "https://opencollective.com/unified"
  2514. }
  2515. },
  2516. "node_modules/hast-util-from-html": {
  2517. "version": "2.0.3",
  2518. "resolved": "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz",
  2519. "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==",
  2520. "license": "MIT",
  2521. "dependencies": {
  2522. "@types/hast": "^3.0.0",
  2523. "devlop": "^1.1.0",
  2524. "hast-util-from-parse5": "^8.0.0",
  2525. "parse5": "^7.0.0",
  2526. "vfile": "^6.0.0",
  2527. "vfile-message": "^4.0.0"
  2528. },
  2529. "funding": {
  2530. "type": "opencollective",
  2531. "url": "https://opencollective.com/unified"
  2532. }
  2533. },
  2534. "node_modules/hast-util-from-html-isomorphic": {
  2535. "version": "2.0.0",
  2536. "resolved": "https://registry.npmjs.org/hast-util-from-html-isomorphic/-/hast-util-from-html-isomorphic-2.0.0.tgz",
  2537. "integrity": "sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==",
  2538. "license": "MIT",
  2539. "dependencies": {
  2540. "@types/hast": "^3.0.0",
  2541. "hast-util-from-dom": "^5.0.0",
  2542. "hast-util-from-html": "^2.0.0",
  2543. "unist-util-remove-position": "^5.0.0"
  2544. },
  2545. "funding": {
  2546. "type": "opencollective",
  2547. "url": "https://opencollective.com/unified"
  2548. }
  2549. },
  2550. "node_modules/hast-util-from-parse5": {
  2551. "version": "8.0.3",
  2552. "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz",
  2553. "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==",
  2554. "license": "MIT",
  2555. "dependencies": {
  2556. "@types/hast": "^3.0.0",
  2557. "@types/unist": "^3.0.0",
  2558. "devlop": "^1.0.0",
  2559. "hastscript": "^9.0.0",
  2560. "property-information": "^7.0.0",
  2561. "vfile": "^6.0.0",
  2562. "vfile-location": "^5.0.0",
  2563. "web-namespaces": "^2.0.0"
  2564. },
  2565. "funding": {
  2566. "type": "opencollective",
  2567. "url": "https://opencollective.com/unified"
  2568. }
  2569. },
  2570. "node_modules/hast-util-is-element": {
  2571. "version": "3.0.0",
  2572. "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz",
  2573. "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==",
  2574. "license": "MIT",
  2575. "dependencies": {
  2576. "@types/hast": "^3.0.0"
  2577. },
  2578. "funding": {
  2579. "type": "opencollective",
  2580. "url": "https://opencollective.com/unified"
  2581. }
  2582. },
  2583. "node_modules/hast-util-parse-selector": {
  2584. "version": "4.0.0",
  2585. "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz",
  2586. "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==",
  2587. "license": "MIT",
  2588. "dependencies": {
  2589. "@types/hast": "^3.0.0"
  2590. },
  2591. "funding": {
  2592. "type": "opencollective",
  2593. "url": "https://opencollective.com/unified"
  2594. }
  2595. },
  2596. "node_modules/hast-util-to-jsx-runtime": {
  2597. "version": "2.3.6",
  2598. "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
  2599. "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
  2600. "license": "MIT",
  2601. "dependencies": {
  2602. "@types/estree": "^1.0.0",
  2603. "@types/hast": "^3.0.0",
  2604. "@types/unist": "^3.0.0",
  2605. "comma-separated-tokens": "^2.0.0",
  2606. "devlop": "^1.0.0",
  2607. "estree-util-is-identifier-name": "^3.0.0",
  2608. "hast-util-whitespace": "^3.0.0",
  2609. "mdast-util-mdx-expression": "^2.0.0",
  2610. "mdast-util-mdx-jsx": "^3.0.0",
  2611. "mdast-util-mdxjs-esm": "^2.0.0",
  2612. "property-information": "^7.0.0",
  2613. "space-separated-tokens": "^2.0.0",
  2614. "style-to-js": "^1.0.0",
  2615. "unist-util-position": "^5.0.0",
  2616. "vfile-message": "^4.0.0"
  2617. },
  2618. "funding": {
  2619. "type": "opencollective",
  2620. "url": "https://opencollective.com/unified"
  2621. }
  2622. },
  2623. "node_modules/hast-util-to-text": {
  2624. "version": "4.0.2",
  2625. "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz",
  2626. "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==",
  2627. "license": "MIT",
  2628. "dependencies": {
  2629. "@types/hast": "^3.0.0",
  2630. "@types/unist": "^3.0.0",
  2631. "hast-util-is-element": "^3.0.0",
  2632. "unist-util-find-after": "^5.0.0"
  2633. },
  2634. "funding": {
  2635. "type": "opencollective",
  2636. "url": "https://opencollective.com/unified"
  2637. }
  2638. },
  2639. "node_modules/hast-util-whitespace": {
  2640. "version": "3.0.0",
  2641. "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
  2642. "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
  2643. "license": "MIT",
  2644. "dependencies": {
  2645. "@types/hast": "^3.0.0"
  2646. },
  2647. "funding": {
  2648. "type": "opencollective",
  2649. "url": "https://opencollective.com/unified"
  2650. }
  2651. },
  2652. "node_modules/hastscript": {
  2653. "version": "9.0.1",
  2654. "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz",
  2655. "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==",
  2656. "license": "MIT",
  2657. "dependencies": {
  2658. "@types/hast": "^3.0.0",
  2659. "comma-separated-tokens": "^2.0.0",
  2660. "hast-util-parse-selector": "^4.0.0",
  2661. "property-information": "^7.0.0",
  2662. "space-separated-tokens": "^2.0.0"
  2663. },
  2664. "funding": {
  2665. "type": "opencollective",
  2666. "url": "https://opencollective.com/unified"
  2667. }
  2668. },
  2669. "node_modules/html-url-attributes": {
  2670. "version": "3.0.1",
  2671. "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz",
  2672. "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==",
  2673. "license": "MIT",
  2674. "funding": {
  2675. "type": "opencollective",
  2676. "url": "https://opencollective.com/unified"
  2677. }
  2678. },
  2679. "node_modules/inflight": {
  2680. "version": "1.0.6",
  2681. "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
  2682. "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
  2683. "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
  2684. "license": "ISC",
  2685. "dependencies": {
  2686. "once": "^1.3.0",
  2687. "wrappy": "1"
  2688. }
  2689. },
  2690. "node_modules/inherits": {
  2691. "version": "2.0.4",
  2692. "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
  2693. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
  2694. "license": "ISC"
  2695. },
  2696. "node_modules/inline-style-parser": {
  2697. "version": "0.2.7",
  2698. "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
  2699. "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==",
  2700. "license": "MIT"
  2701. },
  2702. "node_modules/is-alphabetical": {
  2703. "version": "2.0.1",
  2704. "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
  2705. "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
  2706. "license": "MIT",
  2707. "funding": {
  2708. "type": "github",
  2709. "url": "https://github.com/sponsors/wooorm"
  2710. }
  2711. },
  2712. "node_modules/is-alphanumerical": {
  2713. "version": "2.0.1",
  2714. "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
  2715. "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
  2716. "license": "MIT",
  2717. "dependencies": {
  2718. "is-alphabetical": "^2.0.0",
  2719. "is-decimal": "^2.0.0"
  2720. },
  2721. "funding": {
  2722. "type": "github",
  2723. "url": "https://github.com/sponsors/wooorm"
  2724. }
  2725. },
  2726. "node_modules/is-decimal": {
  2727. "version": "2.0.1",
  2728. "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
  2729. "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
  2730. "license": "MIT",
  2731. "funding": {
  2732. "type": "github",
  2733. "url": "https://github.com/sponsors/wooorm"
  2734. }
  2735. },
  2736. "node_modules/is-hexadecimal": {
  2737. "version": "2.0.1",
  2738. "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
  2739. "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
  2740. "license": "MIT",
  2741. "funding": {
  2742. "type": "github",
  2743. "url": "https://github.com/sponsors/wooorm"
  2744. }
  2745. },
  2746. "node_modules/is-plain-obj": {
  2747. "version": "4.1.0",
  2748. "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
  2749. "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
  2750. "license": "MIT",
  2751. "engines": {
  2752. "node": ">=12"
  2753. },
  2754. "funding": {
  2755. "url": "https://github.com/sponsors/sindresorhus"
  2756. }
  2757. },
  2758. "node_modules/js-tokens": {
  2759. "version": "4.0.0",
  2760. "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
  2761. "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
  2762. "dev": true,
  2763. "license": "MIT"
  2764. },
  2765. "node_modules/jsesc": {
  2766. "version": "3.1.0",
  2767. "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
  2768. "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
  2769. "dev": true,
  2770. "license": "MIT",
  2771. "bin": {
  2772. "jsesc": "bin/jsesc"
  2773. },
  2774. "engines": {
  2775. "node": ">=6"
  2776. }
  2777. },
  2778. "node_modules/json5": {
  2779. "version": "2.2.3",
  2780. "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
  2781. "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
  2782. "dev": true,
  2783. "license": "MIT",
  2784. "bin": {
  2785. "json5": "lib/cli.js"
  2786. },
  2787. "engines": {
  2788. "node": ">=6"
  2789. }
  2790. },
  2791. "node_modules/jsonfile": {
  2792. "version": "4.0.0",
  2793. "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
  2794. "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==",
  2795. "license": "MIT",
  2796. "optionalDependencies": {
  2797. "graceful-fs": "^4.1.6"
  2798. }
  2799. },
  2800. "node_modules/katex": {
  2801. "version": "0.16.44",
  2802. "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.44.tgz",
  2803. "integrity": "sha512-EkxoDTk8ufHqHlf9QxGwcxeLkWRR3iOuYfRpfORgYfqc8s13bgb+YtRY59NK5ZpRaCwq1kqA6a5lpX8C/eLphQ==",
  2804. "funding": [
  2805. "https://opencollective.com/katex",
  2806. "https://github.com/sponsors/katex"
  2807. ],
  2808. "license": "MIT",
  2809. "dependencies": {
  2810. "commander": "^8.3.0"
  2811. },
  2812. "bin": {
  2813. "katex": "cli.js"
  2814. }
  2815. },
  2816. "node_modules/katex/node_modules/commander": {
  2817. "version": "8.3.0",
  2818. "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
  2819. "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
  2820. "license": "MIT",
  2821. "engines": {
  2822. "node": ">= 12"
  2823. }
  2824. },
  2825. "node_modules/layout-base": {
  2826. "version": "1.0.2",
  2827. "resolved": "https://registry.npmjs.org/layout-base/-/layout-base-1.0.2.tgz",
  2828. "integrity": "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==",
  2829. "license": "MIT"
  2830. },
  2831. "node_modules/locate-path": {
  2832. "version": "5.0.0",
  2833. "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
  2834. "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
  2835. "license": "MIT",
  2836. "dependencies": {
  2837. "p-locate": "^4.1.0"
  2838. },
  2839. "engines": {
  2840. "node": ">=8"
  2841. }
  2842. },
  2843. "node_modules/lodash": {
  2844. "version": "4.17.23",
  2845. "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz",
  2846. "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
  2847. "license": "MIT"
  2848. },
  2849. "node_modules/longest-streak": {
  2850. "version": "3.1.0",
  2851. "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
  2852. "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
  2853. "license": "MIT",
  2854. "funding": {
  2855. "type": "github",
  2856. "url": "https://github.com/sponsors/wooorm"
  2857. }
  2858. },
  2859. "node_modules/lru-cache": {
  2860. "version": "5.1.1",
  2861. "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
  2862. "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
  2863. "dev": true,
  2864. "license": "ISC",
  2865. "dependencies": {
  2866. "yallist": "^3.0.2"
  2867. }
  2868. },
  2869. "node_modules/make-dir": {
  2870. "version": "3.1.0",
  2871. "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
  2872. "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
  2873. "license": "MIT",
  2874. "dependencies": {
  2875. "semver": "^6.0.0"
  2876. },
  2877. "engines": {
  2878. "node": ">=8"
  2879. },
  2880. "funding": {
  2881. "url": "https://github.com/sponsors/sindresorhus"
  2882. }
  2883. },
  2884. "node_modules/math-intrinsics": {
  2885. "version": "1.1.0",
  2886. "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  2887. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  2888. "license": "MIT",
  2889. "engines": {
  2890. "node": ">= 0.4"
  2891. }
  2892. },
  2893. "node_modules/mdast-util-from-markdown": {
  2894. "version": "2.0.3",
  2895. "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz",
  2896. "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==",
  2897. "license": "MIT",
  2898. "dependencies": {
  2899. "@types/mdast": "^4.0.0",
  2900. "@types/unist": "^3.0.0",
  2901. "decode-named-character-reference": "^1.0.0",
  2902. "devlop": "^1.0.0",
  2903. "mdast-util-to-string": "^4.0.0",
  2904. "micromark": "^4.0.0",
  2905. "micromark-util-decode-numeric-character-reference": "^2.0.0",
  2906. "micromark-util-decode-string": "^2.0.0",
  2907. "micromark-util-normalize-identifier": "^2.0.0",
  2908. "micromark-util-symbol": "^2.0.0",
  2909. "micromark-util-types": "^2.0.0",
  2910. "unist-util-stringify-position": "^4.0.0"
  2911. },
  2912. "funding": {
  2913. "type": "opencollective",
  2914. "url": "https://opencollective.com/unified"
  2915. }
  2916. },
  2917. "node_modules/mdast-util-math": {
  2918. "version": "3.0.0",
  2919. "resolved": "https://registry.npmjs.org/mdast-util-math/-/mdast-util-math-3.0.0.tgz",
  2920. "integrity": "sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==",
  2921. "license": "MIT",
  2922. "dependencies": {
  2923. "@types/hast": "^3.0.0",
  2924. "@types/mdast": "^4.0.0",
  2925. "devlop": "^1.0.0",
  2926. "longest-streak": "^3.0.0",
  2927. "mdast-util-from-markdown": "^2.0.0",
  2928. "mdast-util-to-markdown": "^2.1.0",
  2929. "unist-util-remove-position": "^5.0.0"
  2930. },
  2931. "funding": {
  2932. "type": "opencollective",
  2933. "url": "https://opencollective.com/unified"
  2934. }
  2935. },
  2936. "node_modules/mdast-util-mdx-expression": {
  2937. "version": "2.0.1",
  2938. "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
  2939. "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
  2940. "license": "MIT",
  2941. "dependencies": {
  2942. "@types/estree-jsx": "^1.0.0",
  2943. "@types/hast": "^3.0.0",
  2944. "@types/mdast": "^4.0.0",
  2945. "devlop": "^1.0.0",
  2946. "mdast-util-from-markdown": "^2.0.0",
  2947. "mdast-util-to-markdown": "^2.0.0"
  2948. },
  2949. "funding": {
  2950. "type": "opencollective",
  2951. "url": "https://opencollective.com/unified"
  2952. }
  2953. },
  2954. "node_modules/mdast-util-mdx-jsx": {
  2955. "version": "3.2.0",
  2956. "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
  2957. "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
  2958. "license": "MIT",
  2959. "dependencies": {
  2960. "@types/estree-jsx": "^1.0.0",
  2961. "@types/hast": "^3.0.0",
  2962. "@types/mdast": "^4.0.0",
  2963. "@types/unist": "^3.0.0",
  2964. "ccount": "^2.0.0",
  2965. "devlop": "^1.1.0",
  2966. "mdast-util-from-markdown": "^2.0.0",
  2967. "mdast-util-to-markdown": "^2.0.0",
  2968. "parse-entities": "^4.0.0",
  2969. "stringify-entities": "^4.0.0",
  2970. "unist-util-stringify-position": "^4.0.0",
  2971. "vfile-message": "^4.0.0"
  2972. },
  2973. "funding": {
  2974. "type": "opencollective",
  2975. "url": "https://opencollective.com/unified"
  2976. }
  2977. },
  2978. "node_modules/mdast-util-mdxjs-esm": {
  2979. "version": "2.0.1",
  2980. "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
  2981. "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
  2982. "license": "MIT",
  2983. "dependencies": {
  2984. "@types/estree-jsx": "^1.0.0",
  2985. "@types/hast": "^3.0.0",
  2986. "@types/mdast": "^4.0.0",
  2987. "devlop": "^1.0.0",
  2988. "mdast-util-from-markdown": "^2.0.0",
  2989. "mdast-util-to-markdown": "^2.0.0"
  2990. },
  2991. "funding": {
  2992. "type": "opencollective",
  2993. "url": "https://opencollective.com/unified"
  2994. }
  2995. },
  2996. "node_modules/mdast-util-phrasing": {
  2997. "version": "4.1.0",
  2998. "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
  2999. "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
  3000. "license": "MIT",
  3001. "dependencies": {
  3002. "@types/mdast": "^4.0.0",
  3003. "unist-util-is": "^6.0.0"
  3004. },
  3005. "funding": {
  3006. "type": "opencollective",
  3007. "url": "https://opencollective.com/unified"
  3008. }
  3009. },
  3010. "node_modules/mdast-util-to-hast": {
  3011. "version": "13.2.1",
  3012. "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
  3013. "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
  3014. "license": "MIT",
  3015. "dependencies": {
  3016. "@types/hast": "^3.0.0",
  3017. "@types/mdast": "^4.0.0",
  3018. "@ungap/structured-clone": "^1.0.0",
  3019. "devlop": "^1.0.0",
  3020. "micromark-util-sanitize-uri": "^2.0.0",
  3021. "trim-lines": "^3.0.0",
  3022. "unist-util-position": "^5.0.0",
  3023. "unist-util-visit": "^5.0.0",
  3024. "vfile": "^6.0.0"
  3025. },
  3026. "funding": {
  3027. "type": "opencollective",
  3028. "url": "https://opencollective.com/unified"
  3029. }
  3030. },
  3031. "node_modules/mdast-util-to-markdown": {
  3032. "version": "2.1.2",
  3033. "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
  3034. "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
  3035. "license": "MIT",
  3036. "dependencies": {
  3037. "@types/mdast": "^4.0.0",
  3038. "@types/unist": "^3.0.0",
  3039. "longest-streak": "^3.0.0",
  3040. "mdast-util-phrasing": "^4.0.0",
  3041. "mdast-util-to-string": "^4.0.0",
  3042. "micromark-util-classify-character": "^2.0.0",
  3043. "micromark-util-decode-string": "^2.0.0",
  3044. "unist-util-visit": "^5.0.0",
  3045. "zwitch": "^2.0.0"
  3046. },
  3047. "funding": {
  3048. "type": "opencollective",
  3049. "url": "https://opencollective.com/unified"
  3050. }
  3051. },
  3052. "node_modules/mdast-util-to-string": {
  3053. "version": "4.0.0",
  3054. "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
  3055. "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
  3056. "license": "MIT",
  3057. "dependencies": {
  3058. "@types/mdast": "^4.0.0"
  3059. },
  3060. "funding": {
  3061. "type": "opencollective",
  3062. "url": "https://opencollective.com/unified"
  3063. }
  3064. },
  3065. "node_modules/micromark": {
  3066. "version": "4.0.2",
  3067. "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
  3068. "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
  3069. "funding": [
  3070. {
  3071. "type": "GitHub Sponsors",
  3072. "url": "https://github.com/sponsors/unifiedjs"
  3073. },
  3074. {
  3075. "type": "OpenCollective",
  3076. "url": "https://opencollective.com/unified"
  3077. }
  3078. ],
  3079. "license": "MIT",
  3080. "dependencies": {
  3081. "@types/debug": "^4.0.0",
  3082. "debug": "^4.0.0",
  3083. "decode-named-character-reference": "^1.0.0",
  3084. "devlop": "^1.0.0",
  3085. "micromark-core-commonmark": "^2.0.0",
  3086. "micromark-factory-space": "^2.0.0",
  3087. "micromark-util-character": "^2.0.0",
  3088. "micromark-util-chunked": "^2.0.0",
  3089. "micromark-util-combine-extensions": "^2.0.0",
  3090. "micromark-util-decode-numeric-character-reference": "^2.0.0",
  3091. "micromark-util-encode": "^2.0.0",
  3092. "micromark-util-normalize-identifier": "^2.0.0",
  3093. "micromark-util-resolve-all": "^2.0.0",
  3094. "micromark-util-sanitize-uri": "^2.0.0",
  3095. "micromark-util-subtokenize": "^2.0.0",
  3096. "micromark-util-symbol": "^2.0.0",
  3097. "micromark-util-types": "^2.0.0"
  3098. }
  3099. },
  3100. "node_modules/micromark-core-commonmark": {
  3101. "version": "2.0.3",
  3102. "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
  3103. "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
  3104. "funding": [
  3105. {
  3106. "type": "GitHub Sponsors",
  3107. "url": "https://github.com/sponsors/unifiedjs"
  3108. },
  3109. {
  3110. "type": "OpenCollective",
  3111. "url": "https://opencollective.com/unified"
  3112. }
  3113. ],
  3114. "license": "MIT",
  3115. "dependencies": {
  3116. "decode-named-character-reference": "^1.0.0",
  3117. "devlop": "^1.0.0",
  3118. "micromark-factory-destination": "^2.0.0",
  3119. "micromark-factory-label": "^2.0.0",
  3120. "micromark-factory-space": "^2.0.0",
  3121. "micromark-factory-title": "^2.0.0",
  3122. "micromark-factory-whitespace": "^2.0.0",
  3123. "micromark-util-character": "^2.0.0",
  3124. "micromark-util-chunked": "^2.0.0",
  3125. "micromark-util-classify-character": "^2.0.0",
  3126. "micromark-util-html-tag-name": "^2.0.0",
  3127. "micromark-util-normalize-identifier": "^2.0.0",
  3128. "micromark-util-resolve-all": "^2.0.0",
  3129. "micromark-util-subtokenize": "^2.0.0",
  3130. "micromark-util-symbol": "^2.0.0",
  3131. "micromark-util-types": "^2.0.0"
  3132. }
  3133. },
  3134. "node_modules/micromark-extension-math": {
  3135. "version": "3.1.0",
  3136. "resolved": "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-3.1.0.tgz",
  3137. "integrity": "sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==",
  3138. "license": "MIT",
  3139. "dependencies": {
  3140. "@types/katex": "^0.16.0",
  3141. "devlop": "^1.0.0",
  3142. "katex": "^0.16.0",
  3143. "micromark-factory-space": "^2.0.0",
  3144. "micromark-util-character": "^2.0.0",
  3145. "micromark-util-symbol": "^2.0.0",
  3146. "micromark-util-types": "^2.0.0"
  3147. },
  3148. "funding": {
  3149. "type": "opencollective",
  3150. "url": "https://opencollective.com/unified"
  3151. }
  3152. },
  3153. "node_modules/micromark-factory-destination": {
  3154. "version": "2.0.1",
  3155. "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
  3156. "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
  3157. "funding": [
  3158. {
  3159. "type": "GitHub Sponsors",
  3160. "url": "https://github.com/sponsors/unifiedjs"
  3161. },
  3162. {
  3163. "type": "OpenCollective",
  3164. "url": "https://opencollective.com/unified"
  3165. }
  3166. ],
  3167. "license": "MIT",
  3168. "dependencies": {
  3169. "micromark-util-character": "^2.0.0",
  3170. "micromark-util-symbol": "^2.0.0",
  3171. "micromark-util-types": "^2.0.0"
  3172. }
  3173. },
  3174. "node_modules/micromark-factory-label": {
  3175. "version": "2.0.1",
  3176. "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
  3177. "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
  3178. "funding": [
  3179. {
  3180. "type": "GitHub Sponsors",
  3181. "url": "https://github.com/sponsors/unifiedjs"
  3182. },
  3183. {
  3184. "type": "OpenCollective",
  3185. "url": "https://opencollective.com/unified"
  3186. }
  3187. ],
  3188. "license": "MIT",
  3189. "dependencies": {
  3190. "devlop": "^1.0.0",
  3191. "micromark-util-character": "^2.0.0",
  3192. "micromark-util-symbol": "^2.0.0",
  3193. "micromark-util-types": "^2.0.0"
  3194. }
  3195. },
  3196. "node_modules/micromark-factory-space": {
  3197. "version": "2.0.1",
  3198. "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
  3199. "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
  3200. "funding": [
  3201. {
  3202. "type": "GitHub Sponsors",
  3203. "url": "https://github.com/sponsors/unifiedjs"
  3204. },
  3205. {
  3206. "type": "OpenCollective",
  3207. "url": "https://opencollective.com/unified"
  3208. }
  3209. ],
  3210. "license": "MIT",
  3211. "dependencies": {
  3212. "micromark-util-character": "^2.0.0",
  3213. "micromark-util-types": "^2.0.0"
  3214. }
  3215. },
  3216. "node_modules/micromark-factory-title": {
  3217. "version": "2.0.1",
  3218. "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
  3219. "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
  3220. "funding": [
  3221. {
  3222. "type": "GitHub Sponsors",
  3223. "url": "https://github.com/sponsors/unifiedjs"
  3224. },
  3225. {
  3226. "type": "OpenCollective",
  3227. "url": "https://opencollective.com/unified"
  3228. }
  3229. ],
  3230. "license": "MIT",
  3231. "dependencies": {
  3232. "micromark-factory-space": "^2.0.0",
  3233. "micromark-util-character": "^2.0.0",
  3234. "micromark-util-symbol": "^2.0.0",
  3235. "micromark-util-types": "^2.0.0"
  3236. }
  3237. },
  3238. "node_modules/micromark-factory-whitespace": {
  3239. "version": "2.0.1",
  3240. "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
  3241. "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
  3242. "funding": [
  3243. {
  3244. "type": "GitHub Sponsors",
  3245. "url": "https://github.com/sponsors/unifiedjs"
  3246. },
  3247. {
  3248. "type": "OpenCollective",
  3249. "url": "https://opencollective.com/unified"
  3250. }
  3251. ],
  3252. "license": "MIT",
  3253. "dependencies": {
  3254. "micromark-factory-space": "^2.0.0",
  3255. "micromark-util-character": "^2.0.0",
  3256. "micromark-util-symbol": "^2.0.0",
  3257. "micromark-util-types": "^2.0.0"
  3258. }
  3259. },
  3260. "node_modules/micromark-util-character": {
  3261. "version": "2.1.1",
  3262. "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
  3263. "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
  3264. "funding": [
  3265. {
  3266. "type": "GitHub Sponsors",
  3267. "url": "https://github.com/sponsors/unifiedjs"
  3268. },
  3269. {
  3270. "type": "OpenCollective",
  3271. "url": "https://opencollective.com/unified"
  3272. }
  3273. ],
  3274. "license": "MIT",
  3275. "dependencies": {
  3276. "micromark-util-symbol": "^2.0.0",
  3277. "micromark-util-types": "^2.0.0"
  3278. }
  3279. },
  3280. "node_modules/micromark-util-chunked": {
  3281. "version": "2.0.1",
  3282. "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
  3283. "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
  3284. "funding": [
  3285. {
  3286. "type": "GitHub Sponsors",
  3287. "url": "https://github.com/sponsors/unifiedjs"
  3288. },
  3289. {
  3290. "type": "OpenCollective",
  3291. "url": "https://opencollective.com/unified"
  3292. }
  3293. ],
  3294. "license": "MIT",
  3295. "dependencies": {
  3296. "micromark-util-symbol": "^2.0.0"
  3297. }
  3298. },
  3299. "node_modules/micromark-util-classify-character": {
  3300. "version": "2.0.1",
  3301. "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
  3302. "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
  3303. "funding": [
  3304. {
  3305. "type": "GitHub Sponsors",
  3306. "url": "https://github.com/sponsors/unifiedjs"
  3307. },
  3308. {
  3309. "type": "OpenCollective",
  3310. "url": "https://opencollective.com/unified"
  3311. }
  3312. ],
  3313. "license": "MIT",
  3314. "dependencies": {
  3315. "micromark-util-character": "^2.0.0",
  3316. "micromark-util-symbol": "^2.0.0",
  3317. "micromark-util-types": "^2.0.0"
  3318. }
  3319. },
  3320. "node_modules/micromark-util-combine-extensions": {
  3321. "version": "2.0.1",
  3322. "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
  3323. "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
  3324. "funding": [
  3325. {
  3326. "type": "GitHub Sponsors",
  3327. "url": "https://github.com/sponsors/unifiedjs"
  3328. },
  3329. {
  3330. "type": "OpenCollective",
  3331. "url": "https://opencollective.com/unified"
  3332. }
  3333. ],
  3334. "license": "MIT",
  3335. "dependencies": {
  3336. "micromark-util-chunked": "^2.0.0",
  3337. "micromark-util-types": "^2.0.0"
  3338. }
  3339. },
  3340. "node_modules/micromark-util-decode-numeric-character-reference": {
  3341. "version": "2.0.2",
  3342. "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
  3343. "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
  3344. "funding": [
  3345. {
  3346. "type": "GitHub Sponsors",
  3347. "url": "https://github.com/sponsors/unifiedjs"
  3348. },
  3349. {
  3350. "type": "OpenCollective",
  3351. "url": "https://opencollective.com/unified"
  3352. }
  3353. ],
  3354. "license": "MIT",
  3355. "dependencies": {
  3356. "micromark-util-symbol": "^2.0.0"
  3357. }
  3358. },
  3359. "node_modules/micromark-util-decode-string": {
  3360. "version": "2.0.1",
  3361. "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
  3362. "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
  3363. "funding": [
  3364. {
  3365. "type": "GitHub Sponsors",
  3366. "url": "https://github.com/sponsors/unifiedjs"
  3367. },
  3368. {
  3369. "type": "OpenCollective",
  3370. "url": "https://opencollective.com/unified"
  3371. }
  3372. ],
  3373. "license": "MIT",
  3374. "dependencies": {
  3375. "decode-named-character-reference": "^1.0.0",
  3376. "micromark-util-character": "^2.0.0",
  3377. "micromark-util-decode-numeric-character-reference": "^2.0.0",
  3378. "micromark-util-symbol": "^2.0.0"
  3379. }
  3380. },
  3381. "node_modules/micromark-util-encode": {
  3382. "version": "2.0.1",
  3383. "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
  3384. "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
  3385. "funding": [
  3386. {
  3387. "type": "GitHub Sponsors",
  3388. "url": "https://github.com/sponsors/unifiedjs"
  3389. },
  3390. {
  3391. "type": "OpenCollective",
  3392. "url": "https://opencollective.com/unified"
  3393. }
  3394. ],
  3395. "license": "MIT"
  3396. },
  3397. "node_modules/micromark-util-html-tag-name": {
  3398. "version": "2.0.1",
  3399. "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
  3400. "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
  3401. "funding": [
  3402. {
  3403. "type": "GitHub Sponsors",
  3404. "url": "https://github.com/sponsors/unifiedjs"
  3405. },
  3406. {
  3407. "type": "OpenCollective",
  3408. "url": "https://opencollective.com/unified"
  3409. }
  3410. ],
  3411. "license": "MIT"
  3412. },
  3413. "node_modules/micromark-util-normalize-identifier": {
  3414. "version": "2.0.1",
  3415. "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
  3416. "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
  3417. "funding": [
  3418. {
  3419. "type": "GitHub Sponsors",
  3420. "url": "https://github.com/sponsors/unifiedjs"
  3421. },
  3422. {
  3423. "type": "OpenCollective",
  3424. "url": "https://opencollective.com/unified"
  3425. }
  3426. ],
  3427. "license": "MIT",
  3428. "dependencies": {
  3429. "micromark-util-symbol": "^2.0.0"
  3430. }
  3431. },
  3432. "node_modules/micromark-util-resolve-all": {
  3433. "version": "2.0.1",
  3434. "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
  3435. "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
  3436. "funding": [
  3437. {
  3438. "type": "GitHub Sponsors",
  3439. "url": "https://github.com/sponsors/unifiedjs"
  3440. },
  3441. {
  3442. "type": "OpenCollective",
  3443. "url": "https://opencollective.com/unified"
  3444. }
  3445. ],
  3446. "license": "MIT",
  3447. "dependencies": {
  3448. "micromark-util-types": "^2.0.0"
  3449. }
  3450. },
  3451. "node_modules/micromark-util-sanitize-uri": {
  3452. "version": "2.0.1",
  3453. "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
  3454. "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
  3455. "funding": [
  3456. {
  3457. "type": "GitHub Sponsors",
  3458. "url": "https://github.com/sponsors/unifiedjs"
  3459. },
  3460. {
  3461. "type": "OpenCollective",
  3462. "url": "https://opencollective.com/unified"
  3463. }
  3464. ],
  3465. "license": "MIT",
  3466. "dependencies": {
  3467. "micromark-util-character": "^2.0.0",
  3468. "micromark-util-encode": "^2.0.0",
  3469. "micromark-util-symbol": "^2.0.0"
  3470. }
  3471. },
  3472. "node_modules/micromark-util-subtokenize": {
  3473. "version": "2.1.0",
  3474. "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
  3475. "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
  3476. "funding": [
  3477. {
  3478. "type": "GitHub Sponsors",
  3479. "url": "https://github.com/sponsors/unifiedjs"
  3480. },
  3481. {
  3482. "type": "OpenCollective",
  3483. "url": "https://opencollective.com/unified"
  3484. }
  3485. ],
  3486. "license": "MIT",
  3487. "dependencies": {
  3488. "devlop": "^1.0.0",
  3489. "micromark-util-chunked": "^2.0.0",
  3490. "micromark-util-symbol": "^2.0.0",
  3491. "micromark-util-types": "^2.0.0"
  3492. }
  3493. },
  3494. "node_modules/micromark-util-symbol": {
  3495. "version": "2.0.1",
  3496. "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
  3497. "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
  3498. "funding": [
  3499. {
  3500. "type": "GitHub Sponsors",
  3501. "url": "https://github.com/sponsors/unifiedjs"
  3502. },
  3503. {
  3504. "type": "OpenCollective",
  3505. "url": "https://opencollective.com/unified"
  3506. }
  3507. ],
  3508. "license": "MIT"
  3509. },
  3510. "node_modules/micromark-util-types": {
  3511. "version": "2.0.2",
  3512. "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
  3513. "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
  3514. "funding": [
  3515. {
  3516. "type": "GitHub Sponsors",
  3517. "url": "https://github.com/sponsors/unifiedjs"
  3518. },
  3519. {
  3520. "type": "OpenCollective",
  3521. "url": "https://opencollective.com/unified"
  3522. }
  3523. ],
  3524. "license": "MIT"
  3525. },
  3526. "node_modules/minimatch": {
  3527. "version": "3.1.5",
  3528. "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
  3529. "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
  3530. "license": "ISC",
  3531. "dependencies": {
  3532. "brace-expansion": "^1.1.7"
  3533. },
  3534. "engines": {
  3535. "node": "*"
  3536. }
  3537. },
  3538. "node_modules/ms": {
  3539. "version": "2.1.3",
  3540. "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
  3541. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  3542. "license": "MIT"
  3543. },
  3544. "node_modules/nanoid": {
  3545. "version": "3.3.11",
  3546. "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
  3547. "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
  3548. "dev": true,
  3549. "funding": [
  3550. {
  3551. "type": "github",
  3552. "url": "https://github.com/sponsors/ai"
  3553. }
  3554. ],
  3555. "license": "MIT",
  3556. "bin": {
  3557. "nanoid": "bin/nanoid.cjs"
  3558. },
  3559. "engines": {
  3560. "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
  3561. }
  3562. },
  3563. "node_modules/node-releases": {
  3564. "version": "2.0.36",
  3565. "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz",
  3566. "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
  3567. "dev": true,
  3568. "license": "MIT"
  3569. },
  3570. "node_modules/object-assign": {
  3571. "version": "4.1.1",
  3572. "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
  3573. "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
  3574. "license": "MIT",
  3575. "engines": {
  3576. "node": ">=0.10.0"
  3577. }
  3578. },
  3579. "node_modules/object-inspect": {
  3580. "version": "1.13.4",
  3581. "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
  3582. "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
  3583. "license": "MIT",
  3584. "engines": {
  3585. "node": ">= 0.4"
  3586. },
  3587. "funding": {
  3588. "url": "https://github.com/sponsors/ljharb"
  3589. }
  3590. },
  3591. "node_modules/once": {
  3592. "version": "1.4.0",
  3593. "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
  3594. "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
  3595. "license": "ISC",
  3596. "dependencies": {
  3597. "wrappy": "1"
  3598. }
  3599. },
  3600. "node_modules/p-limit": {
  3601. "version": "2.3.0",
  3602. "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
  3603. "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
  3604. "license": "MIT",
  3605. "dependencies": {
  3606. "p-try": "^2.0.0"
  3607. },
  3608. "engines": {
  3609. "node": ">=6"
  3610. },
  3611. "funding": {
  3612. "url": "https://github.com/sponsors/sindresorhus"
  3613. }
  3614. },
  3615. "node_modules/p-locate": {
  3616. "version": "4.1.0",
  3617. "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
  3618. "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
  3619. "license": "MIT",
  3620. "dependencies": {
  3621. "p-limit": "^2.2.0"
  3622. },
  3623. "engines": {
  3624. "node": ">=8"
  3625. }
  3626. },
  3627. "node_modules/p-try": {
  3628. "version": "2.2.0",
  3629. "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
  3630. "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
  3631. "license": "MIT",
  3632. "engines": {
  3633. "node": ">=6"
  3634. }
  3635. },
  3636. "node_modules/parse-entities": {
  3637. "version": "4.0.2",
  3638. "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
  3639. "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
  3640. "license": "MIT",
  3641. "dependencies": {
  3642. "@types/unist": "^2.0.0",
  3643. "character-entities-legacy": "^3.0.0",
  3644. "character-reference-invalid": "^2.0.0",
  3645. "decode-named-character-reference": "^1.0.0",
  3646. "is-alphanumerical": "^2.0.0",
  3647. "is-decimal": "^2.0.0",
  3648. "is-hexadecimal": "^2.0.0"
  3649. },
  3650. "funding": {
  3651. "type": "github",
  3652. "url": "https://github.com/sponsors/wooorm"
  3653. }
  3654. },
  3655. "node_modules/parse-entities/node_modules/@types/unist": {
  3656. "version": "2.0.11",
  3657. "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
  3658. "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
  3659. "license": "MIT"
  3660. },
  3661. "node_modules/parse5": {
  3662. "version": "7.3.0",
  3663. "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
  3664. "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
  3665. "license": "MIT",
  3666. "dependencies": {
  3667. "entities": "^6.0.0"
  3668. },
  3669. "funding": {
  3670. "url": "https://github.com/inikulin/parse5?sponsor=1"
  3671. }
  3672. },
  3673. "node_modules/path-exists": {
  3674. "version": "4.0.0",
  3675. "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
  3676. "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
  3677. "license": "MIT",
  3678. "engines": {
  3679. "node": ">=8"
  3680. }
  3681. },
  3682. "node_modules/path-is-absolute": {
  3683. "version": "1.0.1",
  3684. "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
  3685. "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
  3686. "license": "MIT",
  3687. "engines": {
  3688. "node": ">=0.10.0"
  3689. }
  3690. },
  3691. "node_modules/picocolors": {
  3692. "version": "1.1.1",
  3693. "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
  3694. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  3695. "dev": true,
  3696. "license": "ISC"
  3697. },
  3698. "node_modules/picomatch": {
  3699. "version": "4.0.3",
  3700. "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
  3701. "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
  3702. "dev": true,
  3703. "license": "MIT",
  3704. "engines": {
  3705. "node": ">=12"
  3706. },
  3707. "funding": {
  3708. "url": "https://github.com/sponsors/jonschlinkert"
  3709. }
  3710. },
  3711. "node_modules/pify": {
  3712. "version": "2.3.0",
  3713. "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
  3714. "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
  3715. "license": "MIT",
  3716. "engines": {
  3717. "node": ">=0.10.0"
  3718. }
  3719. },
  3720. "node_modules/pinkie": {
  3721. "version": "2.0.4",
  3722. "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
  3723. "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==",
  3724. "license": "MIT",
  3725. "engines": {
  3726. "node": ">=0.10.0"
  3727. }
  3728. },
  3729. "node_modules/pinkie-promise": {
  3730. "version": "2.0.1",
  3731. "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
  3732. "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==",
  3733. "license": "MIT",
  3734. "dependencies": {
  3735. "pinkie": "^2.0.0"
  3736. },
  3737. "engines": {
  3738. "node": ">=0.10.0"
  3739. }
  3740. },
  3741. "node_modules/pixi-live2d-display": {
  3742. "version": "0.4.0",
  3743. "resolved": "https://registry.npmjs.org/pixi-live2d-display/-/pixi-live2d-display-0.4.0.tgz",
  3744. "integrity": "sha512-xeYC6y4Y0Bxe9ksWNlGFZC1rII/MPrzPQK7t1c3ubA8RhkOISIqHJl38fNumXqhGEs+yItmgDOkFT+9dsyGDjA==",
  3745. "license": "MIT",
  3746. "dependencies": {
  3747. "gh-pages": "^4.0.0"
  3748. },
  3749. "peerDependencies": {
  3750. "@pixi/core": "^6",
  3751. "@pixi/display": "^6",
  3752. "@pixi/loaders": "^6",
  3753. "@pixi/math": "^6",
  3754. "@pixi/sprite": "^6",
  3755. "@pixi/utils": "^6"
  3756. }
  3757. },
  3758. "node_modules/pixi.js": {
  3759. "version": "6.5.10",
  3760. "resolved": "https://registry.npmjs.org/pixi.js/-/pixi.js-6.5.10.tgz",
  3761. "integrity": "sha512-Z2mjeoISml2iuVwT1e/BQwERYM2yKoiR08ZdGrg8y5JjeuVptfTrve4DbPMRN/kEDodesgQZGV/pFv0fE9Q2SA==",
  3762. "license": "MIT",
  3763. "dependencies": {
  3764. "@pixi/accessibility": "6.5.10",
  3765. "@pixi/app": "6.5.10",
  3766. "@pixi/compressed-textures": "6.5.10",
  3767. "@pixi/constants": "6.5.10",
  3768. "@pixi/core": "6.5.10",
  3769. "@pixi/display": "6.5.10",
  3770. "@pixi/extensions": "6.5.10",
  3771. "@pixi/extract": "6.5.10",
  3772. "@pixi/filter-alpha": "6.5.10",
  3773. "@pixi/filter-blur": "6.5.10",
  3774. "@pixi/filter-color-matrix": "6.5.10",
  3775. "@pixi/filter-displacement": "6.5.10",
  3776. "@pixi/filter-fxaa": "6.5.10",
  3777. "@pixi/filter-noise": "6.5.10",
  3778. "@pixi/graphics": "6.5.10",
  3779. "@pixi/interaction": "6.5.10",
  3780. "@pixi/loaders": "6.5.10",
  3781. "@pixi/math": "6.5.10",
  3782. "@pixi/mesh": "6.5.10",
  3783. "@pixi/mesh-extras": "6.5.10",
  3784. "@pixi/mixin-cache-as-bitmap": "6.5.10",
  3785. "@pixi/mixin-get-child-by-name": "6.5.10",
  3786. "@pixi/mixin-get-global-position": "6.5.10",
  3787. "@pixi/particle-container": "6.5.10",
  3788. "@pixi/polyfill": "6.5.10",
  3789. "@pixi/prepare": "6.5.10",
  3790. "@pixi/runner": "6.5.10",
  3791. "@pixi/settings": "6.5.10",
  3792. "@pixi/sprite": "6.5.10",
  3793. "@pixi/sprite-animated": "6.5.10",
  3794. "@pixi/sprite-tiling": "6.5.10",
  3795. "@pixi/spritesheet": "6.5.10",
  3796. "@pixi/text": "6.5.10",
  3797. "@pixi/text-bitmap": "6.5.10",
  3798. "@pixi/ticker": "6.5.10",
  3799. "@pixi/utils": "6.5.10"
  3800. },
  3801. "funding": {
  3802. "type": "opencollective",
  3803. "url": "https://opencollective.com/pixijs"
  3804. }
  3805. },
  3806. "node_modules/pkg-dir": {
  3807. "version": "4.2.0",
  3808. "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
  3809. "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
  3810. "license": "MIT",
  3811. "dependencies": {
  3812. "find-up": "^4.0.0"
  3813. },
  3814. "engines": {
  3815. "node": ">=8"
  3816. }
  3817. },
  3818. "node_modules/postcss": {
  3819. "version": "8.5.8",
  3820. "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
  3821. "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
  3822. "dev": true,
  3823. "funding": [
  3824. {
  3825. "type": "opencollective",
  3826. "url": "https://opencollective.com/postcss/"
  3827. },
  3828. {
  3829. "type": "tidelift",
  3830. "url": "https://tidelift.com/funding/github/npm/postcss"
  3831. },
  3832. {
  3833. "type": "github",
  3834. "url": "https://github.com/sponsors/ai"
  3835. }
  3836. ],
  3837. "license": "MIT",
  3838. "dependencies": {
  3839. "nanoid": "^3.3.11",
  3840. "picocolors": "^1.1.1",
  3841. "source-map-js": "^1.2.1"
  3842. },
  3843. "engines": {
  3844. "node": "^10 || ^12 || >=14"
  3845. }
  3846. },
  3847. "node_modules/promise-polyfill": {
  3848. "version": "8.3.0",
  3849. "resolved": "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-8.3.0.tgz",
  3850. "integrity": "sha512-H5oELycFml5yto/atYqmjyigJoAo3+OXwolYiH7OfQuYlAqhxNvTfiNMbV9hsC6Yp83yE5r2KTVmtrG6R9i6Pg==",
  3851. "license": "MIT"
  3852. },
  3853. "node_modules/property-information": {
  3854. "version": "7.1.0",
  3855. "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz",
  3856. "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==",
  3857. "license": "MIT",
  3858. "funding": {
  3859. "type": "github",
  3860. "url": "https://github.com/sponsors/wooorm"
  3861. }
  3862. },
  3863. "node_modules/punycode": {
  3864. "version": "1.4.1",
  3865. "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
  3866. "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==",
  3867. "license": "MIT"
  3868. },
  3869. "node_modules/qs": {
  3870. "version": "6.15.0",
  3871. "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.0.tgz",
  3872. "integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==",
  3873. "license": "BSD-3-Clause",
  3874. "dependencies": {
  3875. "side-channel": "^1.1.0"
  3876. },
  3877. "engines": {
  3878. "node": ">=0.6"
  3879. },
  3880. "funding": {
  3881. "url": "https://github.com/sponsors/ljharb"
  3882. }
  3883. },
  3884. "node_modules/react": {
  3885. "version": "19.2.4",
  3886. "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
  3887. "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
  3888. "license": "MIT",
  3889. "engines": {
  3890. "node": ">=0.10.0"
  3891. }
  3892. },
  3893. "node_modules/react-dom": {
  3894. "version": "19.2.4",
  3895. "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
  3896. "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
  3897. "license": "MIT",
  3898. "dependencies": {
  3899. "scheduler": "^0.27.0"
  3900. },
  3901. "peerDependencies": {
  3902. "react": "^19.2.4"
  3903. }
  3904. },
  3905. "node_modules/react-markdown": {
  3906. "version": "10.1.0",
  3907. "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz",
  3908. "integrity": "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==",
  3909. "license": "MIT",
  3910. "dependencies": {
  3911. "@types/hast": "^3.0.0",
  3912. "@types/mdast": "^4.0.0",
  3913. "devlop": "^1.0.0",
  3914. "hast-util-to-jsx-runtime": "^2.0.0",
  3915. "html-url-attributes": "^3.0.0",
  3916. "mdast-util-to-hast": "^13.0.0",
  3917. "remark-parse": "^11.0.0",
  3918. "remark-rehype": "^11.0.0",
  3919. "unified": "^11.0.0",
  3920. "unist-util-visit": "^5.0.0",
  3921. "vfile": "^6.0.0"
  3922. },
  3923. "funding": {
  3924. "type": "opencollective",
  3925. "url": "https://opencollective.com/unified"
  3926. },
  3927. "peerDependencies": {
  3928. "@types/react": ">=18",
  3929. "react": ">=18"
  3930. }
  3931. },
  3932. "node_modules/react-refresh": {
  3933. "version": "0.17.0",
  3934. "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
  3935. "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
  3936. "dev": true,
  3937. "license": "MIT",
  3938. "engines": {
  3939. "node": ">=0.10.0"
  3940. }
  3941. },
  3942. "node_modules/react-router": {
  3943. "version": "6.30.3",
  3944. "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.30.3.tgz",
  3945. "integrity": "sha512-XRnlbKMTmktBkjCLE8/XcZFlnHvr2Ltdr1eJX4idL55/9BbORzyZEaIkBFDhFGCEWBBItsVrDxwx3gnisMitdw==",
  3946. "license": "MIT",
  3947. "dependencies": {
  3948. "@remix-run/router": "1.23.2"
  3949. },
  3950. "engines": {
  3951. "node": ">=14.0.0"
  3952. },
  3953. "peerDependencies": {
  3954. "react": ">=16.8"
  3955. }
  3956. },
  3957. "node_modules/react-router-dom": {
  3958. "version": "6.30.3",
  3959. "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.30.3.tgz",
  3960. "integrity": "sha512-pxPcv1AczD4vso7G4Z3TKcvlxK7g7TNt3/FNGMhfqyntocvYKj+GCatfigGDjbLozC4baguJ0ReCigoDJXb0ag==",
  3961. "license": "MIT",
  3962. "dependencies": {
  3963. "@remix-run/router": "1.23.2",
  3964. "react-router": "6.30.3"
  3965. },
  3966. "engines": {
  3967. "node": ">=14.0.0"
  3968. },
  3969. "peerDependencies": {
  3970. "react": ">=16.8",
  3971. "react-dom": ">=16.8"
  3972. }
  3973. },
  3974. "node_modules/rehype-katex": {
  3975. "version": "7.0.1",
  3976. "resolved": "https://registry.npmjs.org/rehype-katex/-/rehype-katex-7.0.1.tgz",
  3977. "integrity": "sha512-OiM2wrZ/wuhKkigASodFoo8wimG3H12LWQaH8qSPVJn9apWKFSH3YOCtbKpBorTVw/eI7cuT21XBbvwEswbIOA==",
  3978. "license": "MIT",
  3979. "dependencies": {
  3980. "@types/hast": "^3.0.0",
  3981. "@types/katex": "^0.16.0",
  3982. "hast-util-from-html-isomorphic": "^2.0.0",
  3983. "hast-util-to-text": "^4.0.0",
  3984. "katex": "^0.16.0",
  3985. "unist-util-visit-parents": "^6.0.0",
  3986. "vfile": "^6.0.0"
  3987. },
  3988. "funding": {
  3989. "type": "opencollective",
  3990. "url": "https://opencollective.com/unified"
  3991. }
  3992. },
  3993. "node_modules/remark-math": {
  3994. "version": "6.0.0",
  3995. "resolved": "https://registry.npmjs.org/remark-math/-/remark-math-6.0.0.tgz",
  3996. "integrity": "sha512-MMqgnP74Igy+S3WwnhQ7kqGlEerTETXMvJhrUzDikVZ2/uogJCb+WHUg97hK9/jcfc0dkD73s3LN8zU49cTEtA==",
  3997. "license": "MIT",
  3998. "dependencies": {
  3999. "@types/mdast": "^4.0.0",
  4000. "mdast-util-math": "^3.0.0",
  4001. "micromark-extension-math": "^3.0.0",
  4002. "unified": "^11.0.0"
  4003. },
  4004. "funding": {
  4005. "type": "opencollective",
  4006. "url": "https://opencollective.com/unified"
  4007. }
  4008. },
  4009. "node_modules/remark-parse": {
  4010. "version": "11.0.0",
  4011. "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
  4012. "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
  4013. "license": "MIT",
  4014. "dependencies": {
  4015. "@types/mdast": "^4.0.0",
  4016. "mdast-util-from-markdown": "^2.0.0",
  4017. "micromark-util-types": "^2.0.0",
  4018. "unified": "^11.0.0"
  4019. },
  4020. "funding": {
  4021. "type": "opencollective",
  4022. "url": "https://opencollective.com/unified"
  4023. }
  4024. },
  4025. "node_modules/remark-rehype": {
  4026. "version": "11.1.2",
  4027. "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
  4028. "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
  4029. "license": "MIT",
  4030. "dependencies": {
  4031. "@types/hast": "^3.0.0",
  4032. "@types/mdast": "^4.0.0",
  4033. "mdast-util-to-hast": "^13.0.0",
  4034. "unified": "^11.0.0",
  4035. "vfile": "^6.0.0"
  4036. },
  4037. "funding": {
  4038. "type": "opencollective",
  4039. "url": "https://opencollective.com/unified"
  4040. }
  4041. },
  4042. "node_modules/rollup": {
  4043. "version": "4.59.0",
  4044. "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz",
  4045. "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==",
  4046. "dev": true,
  4047. "license": "MIT",
  4048. "dependencies": {
  4049. "@types/estree": "1.0.8"
  4050. },
  4051. "bin": {
  4052. "rollup": "dist/bin/rollup"
  4053. },
  4054. "engines": {
  4055. "node": ">=18.0.0",
  4056. "npm": ">=8.0.0"
  4057. },
  4058. "optionalDependencies": {
  4059. "@rollup/rollup-android-arm-eabi": "4.59.0",
  4060. "@rollup/rollup-android-arm64": "4.59.0",
  4061. "@rollup/rollup-darwin-arm64": "4.59.0",
  4062. "@rollup/rollup-darwin-x64": "4.59.0",
  4063. "@rollup/rollup-freebsd-arm64": "4.59.0",
  4064. "@rollup/rollup-freebsd-x64": "4.59.0",
  4065. "@rollup/rollup-linux-arm-gnueabihf": "4.59.0",
  4066. "@rollup/rollup-linux-arm-musleabihf": "4.59.0",
  4067. "@rollup/rollup-linux-arm64-gnu": "4.59.0",
  4068. "@rollup/rollup-linux-arm64-musl": "4.59.0",
  4069. "@rollup/rollup-linux-loong64-gnu": "4.59.0",
  4070. "@rollup/rollup-linux-loong64-musl": "4.59.0",
  4071. "@rollup/rollup-linux-ppc64-gnu": "4.59.0",
  4072. "@rollup/rollup-linux-ppc64-musl": "4.59.0",
  4073. "@rollup/rollup-linux-riscv64-gnu": "4.59.0",
  4074. "@rollup/rollup-linux-riscv64-musl": "4.59.0",
  4075. "@rollup/rollup-linux-s390x-gnu": "4.59.0",
  4076. "@rollup/rollup-linux-x64-gnu": "4.59.0",
  4077. "@rollup/rollup-linux-x64-musl": "4.59.0",
  4078. "@rollup/rollup-openbsd-x64": "4.59.0",
  4079. "@rollup/rollup-openharmony-arm64": "4.59.0",
  4080. "@rollup/rollup-win32-arm64-msvc": "4.59.0",
  4081. "@rollup/rollup-win32-ia32-msvc": "4.59.0",
  4082. "@rollup/rollup-win32-x64-gnu": "4.59.0",
  4083. "@rollup/rollup-win32-x64-msvc": "4.59.0",
  4084. "fsevents": "~2.3.2"
  4085. }
  4086. },
  4087. "node_modules/scheduler": {
  4088. "version": "0.27.0",
  4089. "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
  4090. "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
  4091. "license": "MIT"
  4092. },
  4093. "node_modules/semver": {
  4094. "version": "6.3.1",
  4095. "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
  4096. "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
  4097. "license": "ISC",
  4098. "bin": {
  4099. "semver": "bin/semver.js"
  4100. }
  4101. },
  4102. "node_modules/side-channel": {
  4103. "version": "1.1.0",
  4104. "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
  4105. "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
  4106. "license": "MIT",
  4107. "dependencies": {
  4108. "es-errors": "^1.3.0",
  4109. "object-inspect": "^1.13.3",
  4110. "side-channel-list": "^1.0.0",
  4111. "side-channel-map": "^1.0.1",
  4112. "side-channel-weakmap": "^1.0.2"
  4113. },
  4114. "engines": {
  4115. "node": ">= 0.4"
  4116. },
  4117. "funding": {
  4118. "url": "https://github.com/sponsors/ljharb"
  4119. }
  4120. },
  4121. "node_modules/side-channel-list": {
  4122. "version": "1.0.0",
  4123. "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
  4124. "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
  4125. "license": "MIT",
  4126. "dependencies": {
  4127. "es-errors": "^1.3.0",
  4128. "object-inspect": "^1.13.3"
  4129. },
  4130. "engines": {
  4131. "node": ">= 0.4"
  4132. },
  4133. "funding": {
  4134. "url": "https://github.com/sponsors/ljharb"
  4135. }
  4136. },
  4137. "node_modules/side-channel-map": {
  4138. "version": "1.0.1",
  4139. "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
  4140. "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
  4141. "license": "MIT",
  4142. "dependencies": {
  4143. "call-bound": "^1.0.2",
  4144. "es-errors": "^1.3.0",
  4145. "get-intrinsic": "^1.2.5",
  4146. "object-inspect": "^1.13.3"
  4147. },
  4148. "engines": {
  4149. "node": ">= 0.4"
  4150. },
  4151. "funding": {
  4152. "url": "https://github.com/sponsors/ljharb"
  4153. }
  4154. },
  4155. "node_modules/side-channel-weakmap": {
  4156. "version": "1.0.2",
  4157. "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
  4158. "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
  4159. "license": "MIT",
  4160. "dependencies": {
  4161. "call-bound": "^1.0.2",
  4162. "es-errors": "^1.3.0",
  4163. "get-intrinsic": "^1.2.5",
  4164. "object-inspect": "^1.13.3",
  4165. "side-channel-map": "^1.0.1"
  4166. },
  4167. "engines": {
  4168. "node": ">= 0.4"
  4169. },
  4170. "funding": {
  4171. "url": "https://github.com/sponsors/ljharb"
  4172. }
  4173. },
  4174. "node_modules/source-map-js": {
  4175. "version": "1.2.1",
  4176. "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
  4177. "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
  4178. "dev": true,
  4179. "license": "BSD-3-Clause",
  4180. "engines": {
  4181. "node": ">=0.10.0"
  4182. }
  4183. },
  4184. "node_modules/space-separated-tokens": {
  4185. "version": "2.0.2",
  4186. "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
  4187. "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
  4188. "license": "MIT",
  4189. "funding": {
  4190. "type": "github",
  4191. "url": "https://github.com/sponsors/wooorm"
  4192. }
  4193. },
  4194. "node_modules/stringify-entities": {
  4195. "version": "4.0.4",
  4196. "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
  4197. "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
  4198. "license": "MIT",
  4199. "dependencies": {
  4200. "character-entities-html4": "^2.0.0",
  4201. "character-entities-legacy": "^3.0.0"
  4202. },
  4203. "funding": {
  4204. "type": "github",
  4205. "url": "https://github.com/sponsors/wooorm"
  4206. }
  4207. },
  4208. "node_modules/strip-outer": {
  4209. "version": "1.0.1",
  4210. "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz",
  4211. "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==",
  4212. "license": "MIT",
  4213. "dependencies": {
  4214. "escape-string-regexp": "^1.0.2"
  4215. },
  4216. "engines": {
  4217. "node": ">=0.10.0"
  4218. }
  4219. },
  4220. "node_modules/style-to-js": {
  4221. "version": "1.1.21",
  4222. "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz",
  4223. "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==",
  4224. "license": "MIT",
  4225. "dependencies": {
  4226. "style-to-object": "1.0.14"
  4227. }
  4228. },
  4229. "node_modules/style-to-object": {
  4230. "version": "1.0.14",
  4231. "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
  4232. "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==",
  4233. "license": "MIT",
  4234. "dependencies": {
  4235. "inline-style-parser": "0.2.7"
  4236. }
  4237. },
  4238. "node_modules/tinyglobby": {
  4239. "version": "0.2.15",
  4240. "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
  4241. "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
  4242. "dev": true,
  4243. "license": "MIT",
  4244. "dependencies": {
  4245. "fdir": "^6.5.0",
  4246. "picomatch": "^4.0.3"
  4247. },
  4248. "engines": {
  4249. "node": ">=12.0.0"
  4250. },
  4251. "funding": {
  4252. "url": "https://github.com/sponsors/SuperchupuDev"
  4253. }
  4254. },
  4255. "node_modules/trim-lines": {
  4256. "version": "3.0.1",
  4257. "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
  4258. "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
  4259. "license": "MIT",
  4260. "funding": {
  4261. "type": "github",
  4262. "url": "https://github.com/sponsors/wooorm"
  4263. }
  4264. },
  4265. "node_modules/trim-repeated": {
  4266. "version": "1.0.0",
  4267. "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz",
  4268. "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==",
  4269. "license": "MIT",
  4270. "dependencies": {
  4271. "escape-string-regexp": "^1.0.2"
  4272. },
  4273. "engines": {
  4274. "node": ">=0.10.0"
  4275. }
  4276. },
  4277. "node_modules/trough": {
  4278. "version": "2.2.0",
  4279. "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
  4280. "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
  4281. "license": "MIT",
  4282. "funding": {
  4283. "type": "github",
  4284. "url": "https://github.com/sponsors/wooorm"
  4285. }
  4286. },
  4287. "node_modules/typescript": {
  4288. "version": "5.9.3",
  4289. "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
  4290. "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
  4291. "dev": true,
  4292. "license": "Apache-2.0",
  4293. "bin": {
  4294. "tsc": "bin/tsc",
  4295. "tsserver": "bin/tsserver"
  4296. },
  4297. "engines": {
  4298. "node": ">=14.17"
  4299. }
  4300. },
  4301. "node_modules/unified": {
  4302. "version": "11.0.5",
  4303. "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
  4304. "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
  4305. "license": "MIT",
  4306. "dependencies": {
  4307. "@types/unist": "^3.0.0",
  4308. "bail": "^2.0.0",
  4309. "devlop": "^1.0.0",
  4310. "extend": "^3.0.0",
  4311. "is-plain-obj": "^4.0.0",
  4312. "trough": "^2.0.0",
  4313. "vfile": "^6.0.0"
  4314. },
  4315. "funding": {
  4316. "type": "opencollective",
  4317. "url": "https://opencollective.com/unified"
  4318. }
  4319. },
  4320. "node_modules/unist-util-find-after": {
  4321. "version": "5.0.0",
  4322. "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz",
  4323. "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==",
  4324. "license": "MIT",
  4325. "dependencies": {
  4326. "@types/unist": "^3.0.0",
  4327. "unist-util-is": "^6.0.0"
  4328. },
  4329. "funding": {
  4330. "type": "opencollective",
  4331. "url": "https://opencollective.com/unified"
  4332. }
  4333. },
  4334. "node_modules/unist-util-is": {
  4335. "version": "6.0.1",
  4336. "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
  4337. "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
  4338. "license": "MIT",
  4339. "dependencies": {
  4340. "@types/unist": "^3.0.0"
  4341. },
  4342. "funding": {
  4343. "type": "opencollective",
  4344. "url": "https://opencollective.com/unified"
  4345. }
  4346. },
  4347. "node_modules/unist-util-position": {
  4348. "version": "5.0.0",
  4349. "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
  4350. "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
  4351. "license": "MIT",
  4352. "dependencies": {
  4353. "@types/unist": "^3.0.0"
  4354. },
  4355. "funding": {
  4356. "type": "opencollective",
  4357. "url": "https://opencollective.com/unified"
  4358. }
  4359. },
  4360. "node_modules/unist-util-remove-position": {
  4361. "version": "5.0.0",
  4362. "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz",
  4363. "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==",
  4364. "license": "MIT",
  4365. "dependencies": {
  4366. "@types/unist": "^3.0.0",
  4367. "unist-util-visit": "^5.0.0"
  4368. },
  4369. "funding": {
  4370. "type": "opencollective",
  4371. "url": "https://opencollective.com/unified"
  4372. }
  4373. },
  4374. "node_modules/unist-util-stringify-position": {
  4375. "version": "4.0.0",
  4376. "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
  4377. "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
  4378. "license": "MIT",
  4379. "dependencies": {
  4380. "@types/unist": "^3.0.0"
  4381. },
  4382. "funding": {
  4383. "type": "opencollective",
  4384. "url": "https://opencollective.com/unified"
  4385. }
  4386. },
  4387. "node_modules/unist-util-visit": {
  4388. "version": "5.1.0",
  4389. "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
  4390. "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
  4391. "license": "MIT",
  4392. "dependencies": {
  4393. "@types/unist": "^3.0.0",
  4394. "unist-util-is": "^6.0.0",
  4395. "unist-util-visit-parents": "^6.0.0"
  4396. },
  4397. "funding": {
  4398. "type": "opencollective",
  4399. "url": "https://opencollective.com/unified"
  4400. }
  4401. },
  4402. "node_modules/unist-util-visit-parents": {
  4403. "version": "6.0.2",
  4404. "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
  4405. "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
  4406. "license": "MIT",
  4407. "dependencies": {
  4408. "@types/unist": "^3.0.0",
  4409. "unist-util-is": "^6.0.0"
  4410. },
  4411. "funding": {
  4412. "type": "opencollective",
  4413. "url": "https://opencollective.com/unified"
  4414. }
  4415. },
  4416. "node_modules/universalify": {
  4417. "version": "0.1.2",
  4418. "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
  4419. "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
  4420. "license": "MIT",
  4421. "engines": {
  4422. "node": ">= 4.0.0"
  4423. }
  4424. },
  4425. "node_modules/update-browserslist-db": {
  4426. "version": "1.2.3",
  4427. "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
  4428. "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
  4429. "dev": true,
  4430. "funding": [
  4431. {
  4432. "type": "opencollective",
  4433. "url": "https://opencollective.com/browserslist"
  4434. },
  4435. {
  4436. "type": "tidelift",
  4437. "url": "https://tidelift.com/funding/github/npm/browserslist"
  4438. },
  4439. {
  4440. "type": "github",
  4441. "url": "https://github.com/sponsors/ai"
  4442. }
  4443. ],
  4444. "license": "MIT",
  4445. "dependencies": {
  4446. "escalade": "^3.2.0",
  4447. "picocolors": "^1.1.1"
  4448. },
  4449. "bin": {
  4450. "update-browserslist-db": "cli.js"
  4451. },
  4452. "peerDependencies": {
  4453. "browserslist": ">= 4.21.0"
  4454. }
  4455. },
  4456. "node_modules/url": {
  4457. "version": "0.11.4",
  4458. "resolved": "https://registry.npmjs.org/url/-/url-0.11.4.tgz",
  4459. "integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==",
  4460. "license": "MIT",
  4461. "dependencies": {
  4462. "punycode": "^1.4.1",
  4463. "qs": "^6.12.3"
  4464. },
  4465. "engines": {
  4466. "node": ">= 0.4"
  4467. }
  4468. },
  4469. "node_modules/vfile": {
  4470. "version": "6.0.3",
  4471. "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
  4472. "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
  4473. "license": "MIT",
  4474. "dependencies": {
  4475. "@types/unist": "^3.0.0",
  4476. "vfile-message": "^4.0.0"
  4477. },
  4478. "funding": {
  4479. "type": "opencollective",
  4480. "url": "https://opencollective.com/unified"
  4481. }
  4482. },
  4483. "node_modules/vfile-location": {
  4484. "version": "5.0.3",
  4485. "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz",
  4486. "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==",
  4487. "license": "MIT",
  4488. "dependencies": {
  4489. "@types/unist": "^3.0.0",
  4490. "vfile": "^6.0.0"
  4491. },
  4492. "funding": {
  4493. "type": "opencollective",
  4494. "url": "https://opencollective.com/unified"
  4495. }
  4496. },
  4497. "node_modules/vfile-message": {
  4498. "version": "4.0.3",
  4499. "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
  4500. "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
  4501. "license": "MIT",
  4502. "dependencies": {
  4503. "@types/unist": "^3.0.0",
  4504. "unist-util-stringify-position": "^4.0.0"
  4505. },
  4506. "funding": {
  4507. "type": "opencollective",
  4508. "url": "https://opencollective.com/unified"
  4509. }
  4510. },
  4511. "node_modules/vite": {
  4512. "version": "6.4.1",
  4513. "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz",
  4514. "integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==",
  4515. "dev": true,
  4516. "license": "MIT",
  4517. "dependencies": {
  4518. "esbuild": "^0.25.0",
  4519. "fdir": "^6.4.4",
  4520. "picomatch": "^4.0.2",
  4521. "postcss": "^8.5.3",
  4522. "rollup": "^4.34.9",
  4523. "tinyglobby": "^0.2.13"
  4524. },
  4525. "bin": {
  4526. "vite": "bin/vite.js"
  4527. },
  4528. "engines": {
  4529. "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
  4530. },
  4531. "funding": {
  4532. "url": "https://github.com/vitejs/vite?sponsor=1"
  4533. },
  4534. "optionalDependencies": {
  4535. "fsevents": "~2.3.3"
  4536. },
  4537. "peerDependencies": {
  4538. "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
  4539. "jiti": ">=1.21.0",
  4540. "less": "*",
  4541. "lightningcss": "^1.21.0",
  4542. "sass": "*",
  4543. "sass-embedded": "*",
  4544. "stylus": "*",
  4545. "sugarss": "*",
  4546. "terser": "^5.16.0",
  4547. "tsx": "^4.8.1",
  4548. "yaml": "^2.4.2"
  4549. },
  4550. "peerDependenciesMeta": {
  4551. "@types/node": {
  4552. "optional": true
  4553. },
  4554. "jiti": {
  4555. "optional": true
  4556. },
  4557. "less": {
  4558. "optional": true
  4559. },
  4560. "lightningcss": {
  4561. "optional": true
  4562. },
  4563. "sass": {
  4564. "optional": true
  4565. },
  4566. "sass-embedded": {
  4567. "optional": true
  4568. },
  4569. "stylus": {
  4570. "optional": true
  4571. },
  4572. "sugarss": {
  4573. "optional": true
  4574. },
  4575. "terser": {
  4576. "optional": true
  4577. },
  4578. "tsx": {
  4579. "optional": true
  4580. },
  4581. "yaml": {
  4582. "optional": true
  4583. }
  4584. }
  4585. },
  4586. "node_modules/web-namespaces": {
  4587. "version": "2.0.1",
  4588. "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz",
  4589. "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==",
  4590. "license": "MIT",
  4591. "funding": {
  4592. "type": "github",
  4593. "url": "https://github.com/sponsors/wooorm"
  4594. }
  4595. },
  4596. "node_modules/wrappy": {
  4597. "version": "1.0.2",
  4598. "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
  4599. "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
  4600. "license": "ISC"
  4601. },
  4602. "node_modules/yallist": {
  4603. "version": "3.1.1",
  4604. "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
  4605. "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
  4606. "dev": true,
  4607. "license": "ISC"
  4608. },
  4609. "node_modules/zwitch": {
  4610. "version": "2.0.4",
  4611. "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
  4612. "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
  4613. "license": "MIT",
  4614. "funding": {
  4615. "type": "github",
  4616. "url": "https://github.com/sponsors/wooorm"
  4617. }
  4618. }
  4619. }
  4620. }