pnpm-lock.yaml 177 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. devDependencies:
  8. '@biomejs/biome':
  9. specifier: ^2.4.15
  10. version: 2.4.15
  11. apps/dev:
  12. dependencies:
  13. '@enesis/editor':
  14. specifier: workspace:*
  15. version: link:../../packages/editor
  16. '@iconify-json/lucide':
  17. specifier: ^1.2.106
  18. version: 1.2.108
  19. '@iconify-json/simple-icons':
  20. specifier: ^1.2.81
  21. version: 1.2.83
  22. '@nuxt/ui':
  23. specifier: ^4.7.1
  24. version: 4.7.1(@internationalized/[email protected])(@internationalized/[email protected])(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected])([email protected])([email protected])([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected](@vue/[email protected])([email protected]([email protected])([email protected]([email protected])))([email protected]([email protected])))([email protected]([email protected]))([email protected])
  25. '@tiptap/core':
  26. specifier: ^3.23.4
  27. version: 3.23.5(@tiptap/[email protected])
  28. '@tiptap/vue-3':
  29. specifier: ^3.23.4
  30. version: 3.23.5(@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])([email protected]([email protected]))
  31. tailwindcss:
  32. specifier: ^4.3.0
  33. version: 4.3.0
  34. vue:
  35. specifier: ^3.5.34
  36. version: 3.5.34([email protected])
  37. vue-router:
  38. specifier: ^5.0.7
  39. version: 5.0.7(@vue/[email protected])([email protected]([email protected])([email protected]([email protected])))([email protected]([email protected]))
  40. devDependencies:
  41. '@types/node':
  42. specifier: ^24.12.3
  43. version: 24.12.4
  44. '@vitejs/plugin-vue':
  45. specifier: ^6.0.6
  46. version: 6.0.7([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]([email protected]))
  47. '@vue/tsconfig':
  48. specifier: ^0.9.1
  49. version: 0.9.1([email protected])([email protected]([email protected]))
  50. typescript:
  51. specifier: ~6.0.2
  52. version: 6.0.3
  53. vite:
  54. specifier: ^8.0.12
  55. version: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  56. vue-tsc:
  57. specifier: ^3.2.8
  58. version: 3.3.1([email protected])
  59. packages/editor:
  60. dependencies:
  61. '@lezer/common':
  62. specifier: ^1.2.2
  63. version: 1.5.2
  64. '@lezer/markdown':
  65. specifier: ^1.6.3
  66. version: 1.6.3
  67. '@nuxt/ui':
  68. specifier: ^4.7.1
  69. version: 4.7.1(@internationalized/[email protected])(@internationalized/[email protected])(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected])([email protected])([email protected])([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected](@vue/[email protected])([email protected]([email protected])([email protected]([email protected])))([email protected]([email protected])))([email protected]([email protected]))([email protected])
  70. '@tailwindcss/vite':
  71. specifier: ^4.3.0
  72. version: 4.3.0([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  73. prosemirror-commands:
  74. specifier: ^1.7.1
  75. version: 1.7.1
  76. prosemirror-gapcursor:
  77. specifier: ^1.4.1
  78. version: 1.4.1
  79. prosemirror-keymap:
  80. specifier: ^1.2.3
  81. version: 1.2.3
  82. prosemirror-model:
  83. specifier: ^1.25.7
  84. version: 1.25.7
  85. prosemirror-state:
  86. specifier: ^1.4.3
  87. version: 1.4.4
  88. prosemirror-transform:
  89. specifier: ^1.12.0
  90. version: 1.12.0
  91. prosemirror-view:
  92. specifier: ^1.38.1
  93. version: 1.41.8
  94. devDependencies:
  95. '@tsconfig/node24':
  96. specifier: ^24.0.4
  97. version: 24.0.4
  98. '@types/node':
  99. specifier: ^25.9.0
  100. version: 25.9.1
  101. '@vitejs/plugin-vue':
  102. specifier: ^6.0.7
  103. version: 6.0.7([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]([email protected]))
  104. '@vue/test-utils':
  105. specifier: ^2.4.10
  106. version: 2.4.10(@vue/[email protected])(@vue/[email protected]([email protected]([email protected])))([email protected]([email protected]))
  107. '@vue/tsconfig':
  108. specifier: ^0.9.1
  109. version: 0.9.1([email protected])([email protected]([email protected]))
  110. '@vueuse/core':
  111. specifier: ^14.3.0
  112. version: 14.3.0([email protected]([email protected]))
  113. jsdom:
  114. specifier: ^29.1.1
  115. version: 29.1.1
  116. pinia:
  117. specifier: ^3.0.4
  118. version: 3.0.4([email protected])([email protected]([email protected]))
  119. typescript:
  120. specifier: ^6.0.3
  121. version: 6.0.3
  122. vite:
  123. specifier: ^8.0.13
  124. version: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  125. vitest:
  126. specifier: ^4.1.6
  127. version: 4.1.7(@types/[email protected])([email protected])([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  128. vue:
  129. specifier: ^3.5.34
  130. version: 3.5.34([email protected])
  131. vue-tsc:
  132. specifier: ^3.2.9
  133. version: 3.3.1([email protected])
  134. packages:
  135. '@alloc/[email protected]':
  136. resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
  137. engines: {node: '>=10'}
  138. '@antfu/[email protected]':
  139. resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
  140. '@asamuzakjp/[email protected]':
  141. resolution: {integrity: sha512-KVw6qIiCTUQhByfTd78h2yD1/00waTmm9uy/R7Ck/ctUyAPj+AEDLkQIdJW0T8+qGgj3j5bpNKK7Q3G+LedJWg==}
  142. engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
  143. '@asamuzakjp/[email protected]':
  144. resolution: {integrity: sha512-67RZDnYRc8H/8MLDgQCDE//zoqVFwajkepHZgmXrbwybzXOEwOWGPYGmALYl9J2DOLfFPPs6kKCqmbzV895hTQ==}
  145. engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
  146. '@asamuzakjp/[email protected]':
  147. resolution: {integrity: sha512-wajfB8KqzMCN2KGNFdLkReeHncd0AslUSrvHVvvYWuU8ghncRJoA50kT3zP9MVL0+9g4/67H+cdvBskj9THPzg==}
  148. engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
  149. '@asamuzakjp/[email protected]':
  150. resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==}
  151. '@babel/[email protected]':
  152. resolution: {integrity: sha512-nFZPWz3FHIS7y6rMIVoa/WBwjdutfIaRJIBQjzn+t3RnecZoRNlGmGcyR2wb0T/IgSd50Kz/6dG8/LvMCRunjg==}
  153. engines: {node: ^22.18.0 || >=24.11.0}
  154. '@babel/[email protected]':
  155. resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
  156. engines: {node: '>=6.9.0'}
  157. '@babel/[email protected]':
  158. resolution: {integrity: sha512-sN7R8rBvDurfaziNfDEIjIntlazmlkCDGO4SNl2RJ3wRCn+QxspLV7hzYAE8WWVd2joVuT8sUxeePdLp2idI1A==}
  159. engines: {node: ^22.18.0 || >=24.11.0}
  160. '@babel/[email protected]':
  161. resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
  162. engines: {node: '>=6.9.0'}
  163. '@babel/[email protected]':
  164. resolution: {integrity: sha512-ehJDxHvtbZ85RtX/L2fi0h9AGsBNqB5Euv1EB8RMAvGYvD+2X+QbpzzOpbklnNXO+WSZJNOaetw2BBj27xsWVg==}
  165. engines: {node: ^22.18.0 || >=24.11.0}
  166. '@babel/[email protected]':
  167. resolution: {integrity: sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==}
  168. engines: {node: '>=6.0.0'}
  169. hasBin: true
  170. '@babel/[email protected]':
  171. resolution: {integrity: sha512-/Mfg83rK3+jsRbl4Vbd0jqxc6M1A1/WNFtgrowRM1unEsD3XcNnrBdMM0JWakd0/RN9lseQKwPduW1TiEwKOlQ==}
  172. engines: {node: ^22.18.0 || >=24.11.0}
  173. hasBin: true
  174. '@babel/[email protected]':
  175. resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
  176. engines: {node: '>=6.9.0'}
  177. '@babel/[email protected]':
  178. resolution: {integrity: sha512-JeSVu/m8x/zpp4CLjYHVNXuhEyOkhPXuxM8YOXjh6L4LlvQNKuUNOTo5KdBuKAcTDHw8DquToTaEkhsBqPXOaA==}
  179. engines: {node: ^22.18.0 || >=24.11.0}
  180. '@biomejs/[email protected]':
  181. resolution: {integrity: sha512-j5VH3a/h/HXTKBM50MDMxRCzkeLv9S2XJcW2WgnZT1+xyisi+0bISrXR82gCX+8S9lvK0skEvHJRN+3Ktr2hlw==}
  182. engines: {node: '>=14.21.3'}
  183. hasBin: true
  184. '@biomejs/[email protected]':
  185. resolution: {integrity: sha512-rF3PPqLq1yoST79zaQbDjVJwsuIeci/O+9bgNmC5QpgOqz6aqYuzA4abyAGx+mgyiDXn4A049xAN8gijbuR1Qg==}
  186. engines: {node: '>=14.21.3'}
  187. cpu: [arm64]
  188. os: [darwin]
  189. '@biomejs/[email protected]':
  190. resolution: {integrity: sha512-/5KHXYMfSJs1fNXiX30xFtI8JcCFV6zaVVLxOa0M2sfqBKHkpQhRTv94yxQWxeTY2lzo2OuTlNvPC+hDQt2wcQ==}
  191. engines: {node: '>=14.21.3'}
  192. cpu: [x64]
  193. os: [darwin]
  194. '@biomejs/[email protected]':
  195. resolution: {integrity: sha512-ZPcxznxm0pogHBLZhYntyR3sR+MrZjqJIKEr7ZqVen0Rl+P/4upVmfYXjftizi9RoqZntg33fv/1fbdhbYXpEQ==}
  196. engines: {node: '>=14.21.3'}
  197. cpu: [arm64]
  198. os: [linux]
  199. libc: [musl]
  200. '@biomejs/[email protected]':
  201. resolution: {integrity: sha512-owaAMZD/T4LrD0ELNCk0Km3qrRHuM0X6EAyVE1FSqGY0rbLoiDLrO4Us2tllm6cAeB2Ioa9C2C08NZPdr8+0Ug==}
  202. engines: {node: '>=14.21.3'}
  203. cpu: [arm64]
  204. os: [linux]
  205. libc: [glibc]
  206. '@biomejs/[email protected]':
  207. resolution: {integrity: sha512-CNq/9W38SYSH023lfcQ4KKU8K0YX8T//FZUhcgtMMRABDojx5XsMV7jlweAvGSl389wJQB29Qo6Zb/a+jdvt+w==}
  208. engines: {node: '>=14.21.3'}
  209. cpu: [x64]
  210. os: [linux]
  211. libc: [musl]
  212. '@biomejs/[email protected]':
  213. resolution: {integrity: sha512-0jj7THz12GbUOLmMibktK6DZjqz2zV64KFxyBtcFTKPiiOIY0a7vns1elpO1dERvxpsZ5ik0oFfz0oGwFde1+g==}
  214. engines: {node: '>=14.21.3'}
  215. cpu: [x64]
  216. os: [linux]
  217. libc: [glibc]
  218. '@biomejs/[email protected]':
  219. resolution: {integrity: sha512-ouhkYdlhp/1GghEJPdWwD/Vi3gQ1nFxuSpMolWsbq3Lsq3QUR4jl6UdhhscdCugKU5vOEuMiJhvKj66O0OCq+w==}
  220. engines: {node: '>=14.21.3'}
  221. cpu: [arm64]
  222. os: [win32]
  223. '@biomejs/[email protected]':
  224. resolution: {integrity: sha512-zBrGq5mx5wwpnow4+2BxUvleDM+GNd4sLbPaMapsSLQLD0NGRCquqPBTgN+7XkUteHvj7M+BstuI8tmnV7+HgQ==}
  225. engines: {node: '>=14.21.3'}
  226. cpu: [x64]
  227. os: [win32]
  228. '@bramus/[email protected]':
  229. resolution: {integrity: sha512-ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw==}
  230. hasBin: true
  231. '@capsizecss/[email protected]':
  232. resolution: {integrity: sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==}
  233. engines: {node: '>=18'}
  234. '@csstools/[email protected]':
  235. resolution: {integrity: sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==}
  236. engines: {node: '>=20.19.0'}
  237. '@csstools/[email protected]':
  238. resolution: {integrity: sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==}
  239. engines: {node: '>=20.19.0'}
  240. peerDependencies:
  241. '@csstools/css-parser-algorithms': ^4.0.0
  242. '@csstools/css-tokenizer': ^4.0.0
  243. '@csstools/[email protected]':
  244. resolution: {integrity: sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==}
  245. engines: {node: '>=20.19.0'}
  246. peerDependencies:
  247. '@csstools/css-parser-algorithms': ^4.0.0
  248. '@csstools/css-tokenizer': ^4.0.0
  249. '@csstools/[email protected]':
  250. resolution: {integrity: sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==}
  251. engines: {node: '>=20.19.0'}
  252. peerDependencies:
  253. '@csstools/css-tokenizer': ^4.0.0
  254. '@csstools/[email protected]':
  255. resolution: {integrity: sha512-wgsqt92b7C7tQhIdPNxj0n9zuUbQlvAuI1exyzeNrOKOi62SD7ren8zqszmpVREjAOqg8cD2FqYhQfAuKjk4sw==}
  256. peerDependencies:
  257. css-tree: ^3.2.1
  258. peerDependenciesMeta:
  259. css-tree:
  260. optional: true
  261. '@csstools/[email protected]':
  262. resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==}
  263. engines: {node: '>=20.19.0'}
  264. '@emnapi/[email protected]':
  265. resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
  266. '@emnapi/[email protected]':
  267. resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
  268. '@emnapi/[email protected]':
  269. resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
  270. '@esbuild/[email protected]':
  271. resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==}
  272. engines: {node: '>=18'}
  273. cpu: [ppc64]
  274. os: [aix]
  275. '@esbuild/[email protected]':
  276. resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==}
  277. engines: {node: '>=18'}
  278. cpu: [arm64]
  279. os: [android]
  280. '@esbuild/[email protected]':
  281. resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==}
  282. engines: {node: '>=18'}
  283. cpu: [arm]
  284. os: [android]
  285. '@esbuild/[email protected]':
  286. resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==}
  287. engines: {node: '>=18'}
  288. cpu: [x64]
  289. os: [android]
  290. '@esbuild/[email protected]':
  291. resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==}
  292. engines: {node: '>=18'}
  293. cpu: [arm64]
  294. os: [darwin]
  295. '@esbuild/[email protected]':
  296. resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==}
  297. engines: {node: '>=18'}
  298. cpu: [x64]
  299. os: [darwin]
  300. '@esbuild/[email protected]':
  301. resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==}
  302. engines: {node: '>=18'}
  303. cpu: [arm64]
  304. os: [freebsd]
  305. '@esbuild/[email protected]':
  306. resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==}
  307. engines: {node: '>=18'}
  308. cpu: [x64]
  309. os: [freebsd]
  310. '@esbuild/[email protected]':
  311. resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==}
  312. engines: {node: '>=18'}
  313. cpu: [arm64]
  314. os: [linux]
  315. '@esbuild/[email protected]':
  316. resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==}
  317. engines: {node: '>=18'}
  318. cpu: [arm]
  319. os: [linux]
  320. '@esbuild/[email protected]':
  321. resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==}
  322. engines: {node: '>=18'}
  323. cpu: [ia32]
  324. os: [linux]
  325. '@esbuild/[email protected]':
  326. resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==}
  327. engines: {node: '>=18'}
  328. cpu: [loong64]
  329. os: [linux]
  330. '@esbuild/[email protected]':
  331. resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==}
  332. engines: {node: '>=18'}
  333. cpu: [mips64el]
  334. os: [linux]
  335. '@esbuild/[email protected]':
  336. resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==}
  337. engines: {node: '>=18'}
  338. cpu: [ppc64]
  339. os: [linux]
  340. '@esbuild/[email protected]':
  341. resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==}
  342. engines: {node: '>=18'}
  343. cpu: [riscv64]
  344. os: [linux]
  345. '@esbuild/[email protected]':
  346. resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==}
  347. engines: {node: '>=18'}
  348. cpu: [s390x]
  349. os: [linux]
  350. '@esbuild/[email protected]':
  351. resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==}
  352. engines: {node: '>=18'}
  353. cpu: [x64]
  354. os: [linux]
  355. '@esbuild/[email protected]':
  356. resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==}
  357. engines: {node: '>=18'}
  358. cpu: [arm64]
  359. os: [netbsd]
  360. '@esbuild/[email protected]':
  361. resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==}
  362. engines: {node: '>=18'}
  363. cpu: [x64]
  364. os: [netbsd]
  365. '@esbuild/[email protected]':
  366. resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==}
  367. engines: {node: '>=18'}
  368. cpu: [arm64]
  369. os: [openbsd]
  370. '@esbuild/[email protected]':
  371. resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==}
  372. engines: {node: '>=18'}
  373. cpu: [x64]
  374. os: [openbsd]
  375. '@esbuild/[email protected]':
  376. resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==}
  377. engines: {node: '>=18'}
  378. cpu: [arm64]
  379. os: [openharmony]
  380. '@esbuild/[email protected]':
  381. resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==}
  382. engines: {node: '>=18'}
  383. cpu: [x64]
  384. os: [sunos]
  385. '@esbuild/[email protected]':
  386. resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==}
  387. engines: {node: '>=18'}
  388. cpu: [arm64]
  389. os: [win32]
  390. '@esbuild/[email protected]':
  391. resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==}
  392. engines: {node: '>=18'}
  393. cpu: [ia32]
  394. os: [win32]
  395. '@esbuild/[email protected]':
  396. resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==}
  397. engines: {node: '>=18'}
  398. cpu: [x64]
  399. os: [win32]
  400. '@exodus/[email protected]':
  401. resolution: {integrity: sha512-S6mL0yNB/Abt9Ei4tq8gDhcczc4S3+vQ4ra7vxnAf+YHC02srtqxKKZghx2Dq6p0e66THKwR6r8N6P95wEty7Q==}
  402. engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
  403. peerDependencies:
  404. '@noble/hashes': ^1.8.0 || ^2.0.0
  405. peerDependenciesMeta:
  406. '@noble/hashes':
  407. optional: true
  408. '@floating-ui/[email protected]':
  409. resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
  410. '@floating-ui/[email protected]':
  411. resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==}
  412. '@floating-ui/[email protected]':
  413. resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
  414. '@floating-ui/[email protected]':
  415. resolution: {integrity: sha512-HzHKCNVxnGS35r9fCHBc3+uCnjw9IWIlCPL683cGgM9Kgj2BiAl8x1mS7vtvP6F9S/e/q4O6MApwSHj8hNLGfw==}
  416. '@iconify-json/[email protected]':
  417. resolution: {integrity: sha512-jnmMx7xxShfsKeNNJhn47IKj3gD/AbRz+poKLIPn4rSIXw+yVbXCfUBXza/Jo9YIEEFajBk6Zayet8DqGCvX6w==}
  418. '@iconify-json/[email protected]':
  419. resolution: {integrity: sha512-6Pp9V++XisT9RKH7FB4RLPqUDzcmLtSma0ovOEIoEWGrXtHwBFsH7oN1z8vvCVCb95fb87QgR46/zRLyN9Y3kg==}
  420. '@iconify/[email protected]':
  421. resolution: {integrity: sha512-oxSibPS3Ic11901U3KwLpLIBFbrRS8cHQhn2Rlq/TE487eYsAYbCWVUpo8a2jkEjWDUQPcLtEgfZKu87mZZ3xA==}
  422. '@iconify/[email protected]':
  423. resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
  424. '@iconify/[email protected]':
  425. resolution: {integrity: sha512-LPKOXPn/zV+zis1oOfGWogaXVpqUybF3ZS6SCZIsz8vg0ivVp9+fVqyYB7xq0aiST/VhUQYGO1qo6uoYSiEJqw==}
  426. '@iconify/[email protected]':
  427. resolution: {integrity: sha512-aumwwooJlFJ5H5qYWB6ZTAyM0C8hpfcSVLB9/a3qnH1GGvIJ+FEbpEs4s/HfErYe/M5qZeLjwmESR5fFm3lXEw==}
  428. peerDependencies:
  429. vue: '>=3.0.0'
  430. '@internationalized/[email protected]':
  431. resolution: {integrity: sha512-6IedsVWXyq4P9Tj+TxuU8WGWM70hYLl12nbYU8jkikVpa6WXapFazPUcHUMDMoWftIDE2ILDkFFte6W2nFCkRQ==}
  432. '@internationalized/[email protected]':
  433. resolution: {integrity: sha512-iFgmQaXHE0vytNfpLZWOC2mEJCBRzcUxt53Xf/yCXG93lRvqas237i3r7X4RKMwO3txiyZD4mQjKAByFv6UGSQ==}
  434. '@isaacs/[email protected]':
  435. resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
  436. engines: {node: '>=12'}
  437. '@jridgewell/[email protected]':
  438. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  439. '@jridgewell/[email protected]':
  440. resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
  441. '@jridgewell/[email protected]':
  442. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  443. engines: {node: '>=6.0.0'}
  444. '@jridgewell/[email protected]':
  445. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  446. '@jridgewell/[email protected]':
  447. resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
  448. '@lezer/[email protected]':
  449. resolution: {integrity: sha512-sxQE460fPZyU3sdc8lafxiPwJHBzZRy/udNFynGQky1SePYBdhkBl1kOagA9uT3pxR8K09bOrmTUqA9wb/PjSQ==}
  450. '@lezer/[email protected]':
  451. resolution: {integrity: sha512-qXdH7UqTvGfdVBINrgKhDsVTJTxactNNxLk7+UMwZhU13lMHaOBlJe9Vqp907ya56Y3+ed2tlqzys7jDkTmW0g==}
  452. '@lezer/[email protected]':
  453. resolution: {integrity: sha512-jpGm5Ps+XErS+xA4urw7ogEGkeZOahVQF21Z6oECF0sj+2liwZopd2+I8uH5I/vZsRuuze3OxBREIANLf6KKUw==}
  454. '@napi-rs/[email protected]':
  455. resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==}
  456. peerDependencies:
  457. '@emnapi/core': ^1.7.1
  458. '@emnapi/runtime': ^1.7.1
  459. '@nuxt/[email protected]':
  460. resolution: {integrity: sha512-Yxy2Xgmq5hf3dQy983V0xh0OJV2mYwRZz9eVIGc3EaribdFGPDNGMMbYqX9qCty3Pbxn/bCF3J0UyPaNlHVayQ==}
  461. peerDependencies:
  462. vite: '>=6.0'
  463. '@nuxt/[email protected]':
  464. resolution: {integrity: sha512-4uXQl9fa5F4ibdgU8zomoOcyMdnwgdem+Pi8JEqeDYI5yPR32Kam6HnuRr47dTb97CstaepAvXPWQUUHMtjsFQ==}
  465. '@nuxt/[email protected]':
  466. resolution: {integrity: sha512-K9wINW21M9x5GcKF5JEXzPKAT/Kfxl/vdnEyppw54hh5qoLcdi5HmsYoTfDP9gbJ6Z1T6IdH5JxBWk72HMe1Zg==}
  467. '@nuxt/[email protected]':
  468. resolution: {integrity: sha512-5VOwxUcoM/z6w4c75hQrikHpY+TzjTLZQ+QnuO7KajyGx0IJBLVy1lw25oy79leF+GgyjJJO1cHfUfWeuEDCzA==}
  469. engines: {node: '>=18.12.0'}
  470. '@nuxt/[email protected]':
  471. resolution: {integrity: sha512-AzsqBJeG7b3whIciyzkz4nBossEotM314KzKAptc8kH07ORBIR8Qh3QYKepo2YZwtxiDP2Y9aqzAztwpSEDHtw==}
  472. engines: {node: '>=18.12.0'}
  473. '@nuxt/[email protected]':
  474. resolution: {integrity: sha512-7FDMuD+skbFMgfF2ORYKEAKEuEFbu2oS60dln5uVtn94c8DHWCseJSrT3FUHzVUlVwyhztPU6stzB44dEoWAzw==}
  475. engines: {node: ^14.18.0 || >=16.10.0}
  476. '@nuxt/[email protected]':
  477. resolution: {integrity: sha512-s3Ix89RkJTeNDlLg7EflckkFxQgzm2W9bt4CBsudi7wNdmhbb3nzYG6rcns2R2Wos0gZlYkSfDKaX1o3zMC+Aw==}
  478. engines: {node: ^20.19.0 || >=22.12.0}
  479. hasBin: true
  480. peerDependencies:
  481. '@inertiajs/vue3': ^2.0.7 || ^3.0.0
  482. '@internationalized/date': ^3.0.0
  483. '@internationalized/number': ^3.0.0
  484. '@nuxt/content': ^3.0.0
  485. joi: ^18.0.0
  486. superstruct: ^2.0.0
  487. tailwindcss: ^4.0.0
  488. typescript: ^5.6.3 || ^6.0.0
  489. valibot: ^1.0.0
  490. vue-router: ^4.5.0 || ^5.0.0
  491. yup: ^1.7.0
  492. zod: ^3.24.0 || ^4.0.0
  493. peerDependenciesMeta:
  494. '@inertiajs/vue3':
  495. optional: true
  496. '@internationalized/date':
  497. optional: true
  498. '@internationalized/number':
  499. optional: true
  500. '@nuxt/content':
  501. optional: true
  502. joi:
  503. optional: true
  504. superstruct:
  505. optional: true
  506. valibot:
  507. optional: true
  508. vue-router:
  509. optional: true
  510. yup:
  511. optional: true
  512. zod:
  513. optional: true
  514. '@nuxtjs/[email protected]':
  515. resolution: {integrity: sha512-cC6RfgZh3guHBMLLjrBB2Uti5eUoGM9KyauOaYS9ETmxNWBMTvpgjvSiSJp1OFljIXPIqVTJ3xtJpSNZiO3ZaA==}
  516. '@one-ini/[email protected]':
  517. resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
  518. '@oxc-project/[email protected]':
  519. resolution: {integrity: sha512-ibD2usx9JRu7f5pu2tMKMI4cpA4NgXJQoYRP4pQ7Pxmn1l6k/53qWtQWZayhYy3X4QZkt90Ot+mJEaeXouio6Q==}
  520. '@pkgjs/[email protected]':
  521. resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
  522. engines: {node: '>=14'}
  523. '@polka/[email protected]':
  524. resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
  525. '@rolldown/[email protected]':
  526. resolution: {integrity: sha512-fJI3I0r3C3Oj/zdBCpaCmBRZYf07xpaq4yCfDDoSFm+beWNzbIl26puW8RraUdugoJw/95zerNOn6jasAhzSmg==}
  527. engines: {node: ^20.19.0 || >=22.12.0}
  528. cpu: [arm64]
  529. os: [android]
  530. '@rolldown/[email protected]':
  531. resolution: {integrity: sha512-cKnAhWEsV7TPcA/5EAteDp6KcJZBQ2G+BqE7zayMMi7kMvwRsbv7WT9aOnn0WNl4SKEIf43vjS31iUPu80nzXg==}
  532. engines: {node: ^20.19.0 || >=22.12.0}
  533. cpu: [arm64]
  534. os: [darwin]
  535. '@rolldown/[email protected]':
  536. resolution: {integrity: sha512-YKrVwQjIRBPo+5G/u03wGjbdy4q7pyzCe93DK9VJ7zkVmeg8LJ7GbgsiHWdR4xSoe4CAXRD7Bcjgbtr64bkXNg==}
  537. engines: {node: ^20.19.0 || >=22.12.0}
  538. cpu: [x64]
  539. os: [darwin]
  540. '@rolldown/[email protected]':
  541. resolution: {integrity: sha512-z/oBsREo46SsFqBwYtFe0kpJeBijAT48O/WXLI4suiCLBkr03RTtTJMCzSdDd2znlh8VJizL09XVkQgk8IZonw==}
  542. engines: {node: ^20.19.0 || >=22.12.0}
  543. cpu: [x64]
  544. os: [freebsd]
  545. '@rolldown/[email protected]':
  546. resolution: {integrity: sha512-ik8q7GM11zxvYxFc2PeDcT6TBvhCQMaUxfph/M5l9sKuTs/Sjg3L+Byw0F7w0ZVLBZmx30P+gG0ECzzN+MFcmQ==}
  547. engines: {node: ^20.19.0 || >=22.12.0}
  548. cpu: [arm]
  549. os: [linux]
  550. '@rolldown/[email protected]':
  551. resolution: {integrity: sha512-QoSx2EkyrrdZ6kcyE8stqZ62t0Yra8Fs5ia9lOxJrh6TMQJK7gQKmscdTHf7pOXKREKrVwOtJcQG3qVSfc866A==}
  552. engines: {node: ^20.19.0 || >=22.12.0}
  553. cpu: [arm64]
  554. os: [linux]
  555. libc: [glibc]
  556. '@rolldown/[email protected]':
  557. resolution: {integrity: sha512-uwNwFpwKeNiZawfAWBgg0VIztPTV3ihhh1vV334h9ivnNLorxnQMU6Fz8wG1Zb4Qh9LC1/MkcyT3YlDXG3Rsgg==}
  558. engines: {node: ^20.19.0 || >=22.12.0}
  559. cpu: [arm64]
  560. os: [linux]
  561. libc: [musl]
  562. '@rolldown/[email protected]':
  563. resolution: {integrity: sha512-zY1bul7OWr7DFBiJ++wofXvnr8B45ce3QsQUhKrIhXsygAh7bTkwyeM1bi1a2g5C/yC/N8TZyGDEoMfm/l9mpg==}
  564. engines: {node: ^20.19.0 || >=22.12.0}
  565. cpu: [ppc64]
  566. os: [linux]
  567. libc: [glibc]
  568. '@rolldown/[email protected]':
  569. resolution: {integrity: sha512-0frlsT/f4Ft6I7SMESTKnF3cZsdicQn1dCMkF/jT9wDLE+gGoiQfv1nmT9e+s7s/fekvvy6tZM2jHvI2tkbJDQ==}
  570. engines: {node: ^20.19.0 || >=22.12.0}
  571. cpu: [s390x]
  572. os: [linux]
  573. libc: [glibc]
  574. '@rolldown/[email protected]':
  575. resolution: {integrity: sha512-XABVmGp9Tg0WspTVvwduTc4fpqy6JnAUrSQe6OuyqD/03nI7r0O9OWUkMIwFrjKAIqolvqoA4ZrJppgwE0Gxmw==}
  576. engines: {node: ^20.19.0 || >=22.12.0}
  577. cpu: [x64]
  578. os: [linux]
  579. libc: [glibc]
  580. '@rolldown/[email protected]':
  581. resolution: {integrity: sha512-bV4fzswuzVcKD90o/VM6QqKxnxlDq0g2BISDLNVmxrnhpv1DDbyPhCIjYfvzYLV+MvkKKnQt2Q6AO86SEBULUQ==}
  582. engines: {node: ^20.19.0 || >=22.12.0}
  583. cpu: [x64]
  584. os: [linux]
  585. libc: [musl]
  586. '@rolldown/[email protected]':
  587. resolution: {integrity: sha512-/Mh0Zhq3OP7fVs0kcQHZP6lZEthMGTaSf8UBQYSFEZDWGXXlEC+nJ6EqenaK2t4LBXMe3A+K/G2BVXXdtOr4PQ==}
  588. engines: {node: ^20.19.0 || >=22.12.0}
  589. cpu: [arm64]
  590. os: [openharmony]
  591. '@rolldown/[email protected]':
  592. resolution: {integrity: sha512-+1xc9X45l8ufsBAm6Gjvx2qDRIY9lTVt0cgWNcJ+1gdhXvkbxePA60yRTwSTuXL09CMhyJmjpV7E3NoyxbqFQQ==}
  593. engines: {node: ^20.19.0 || >=22.12.0}
  594. cpu: [wasm32]
  595. '@rolldown/[email protected]':
  596. resolution: {integrity: sha512-1D+UqZdfnuR+Jy1GgMJwi85bD40H21uNmOPRWQhw4oRSuolZ/B5rixZ45DK2KXOTCvmVCecauWgEhbw8bI7tOw==}
  597. engines: {node: ^20.19.0 || >=22.12.0}
  598. cpu: [arm64]
  599. os: [win32]
  600. '@rolldown/[email protected]':
  601. resolution: {integrity: sha512-INAycaWuhlOK3wk4mRHGsdgwYWmd9cChdPdE9bwWmy6rn9VqVNYNFGhOdXrofXUxwHIncSiPNb8tNm8knDVIeQ==}
  602. engines: {node: ^20.19.0 || >=22.12.0}
  603. cpu: [x64]
  604. os: [win32]
  605. '@rolldown/[email protected]':
  606. resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
  607. '@standard-schema/[email protected]':
  608. resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
  609. '@swc/[email protected]':
  610. resolution: {integrity: sha512-jI/VAmtdjB/RnI8GTnokyX7Ug8c+g+ffD6QRLa6XQewtnGyukKkKSk3wLTM3b5cjt1jNh9x0jfVlagdN2gDKQg==}
  611. '@tailwindcss/[email protected]':
  612. resolution: {integrity: sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==}
  613. '@tailwindcss/[email protected]':
  614. resolution: {integrity: sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==}
  615. engines: {node: '>= 20'}
  616. cpu: [arm64]
  617. os: [android]
  618. '@tailwindcss/[email protected]':
  619. resolution: {integrity: sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==}
  620. engines: {node: '>= 20'}
  621. cpu: [arm64]
  622. os: [darwin]
  623. '@tailwindcss/[email protected]':
  624. resolution: {integrity: sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==}
  625. engines: {node: '>= 20'}
  626. cpu: [x64]
  627. os: [darwin]
  628. '@tailwindcss/[email protected]':
  629. resolution: {integrity: sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==}
  630. engines: {node: '>= 20'}
  631. cpu: [x64]
  632. os: [freebsd]
  633. '@tailwindcss/[email protected]':
  634. resolution: {integrity: sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==}
  635. engines: {node: '>= 20'}
  636. cpu: [arm]
  637. os: [linux]
  638. '@tailwindcss/[email protected]':
  639. resolution: {integrity: sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==}
  640. engines: {node: '>= 20'}
  641. cpu: [arm64]
  642. os: [linux]
  643. libc: [glibc]
  644. '@tailwindcss/[email protected]':
  645. resolution: {integrity: sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==}
  646. engines: {node: '>= 20'}
  647. cpu: [arm64]
  648. os: [linux]
  649. libc: [musl]
  650. '@tailwindcss/[email protected]':
  651. resolution: {integrity: sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==}
  652. engines: {node: '>= 20'}
  653. cpu: [x64]
  654. os: [linux]
  655. libc: [glibc]
  656. '@tailwindcss/[email protected]':
  657. resolution: {integrity: sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==}
  658. engines: {node: '>= 20'}
  659. cpu: [x64]
  660. os: [linux]
  661. libc: [musl]
  662. '@tailwindcss/[email protected]':
  663. resolution: {integrity: sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==}
  664. engines: {node: '>=14.0.0'}
  665. cpu: [wasm32]
  666. bundledDependencies:
  667. - '@napi-rs/wasm-runtime'
  668. - '@emnapi/core'
  669. - '@emnapi/runtime'
  670. - '@tybys/wasm-util'
  671. - '@emnapi/wasi-threads'
  672. - tslib
  673. '@tailwindcss/[email protected]':
  674. resolution: {integrity: sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==}
  675. engines: {node: '>= 20'}
  676. cpu: [arm64]
  677. os: [win32]
  678. '@tailwindcss/[email protected]':
  679. resolution: {integrity: sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==}
  680. engines: {node: '>= 20'}
  681. cpu: [x64]
  682. os: [win32]
  683. '@tailwindcss/[email protected]':
  684. resolution: {integrity: sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==}
  685. engines: {node: '>= 20'}
  686. '@tailwindcss/[email protected]':
  687. resolution: {integrity: sha512-Jm05Tjx+9yCLGv5qw1c+84Psds8MnyrEQYCB+FFk2lgGiUjlRqdxke4mVTuYrj2xnVZqKim2Apr5ySuQRYAw/w==}
  688. '@tailwindcss/[email protected]':
  689. resolution: {integrity: sha512-t6J3OrB5Fc0ExuhohouH0fWUGMYL6PTLhW+E7zIk/pdbnJARZDCwjBznFnkh5ynRnIRSI4YjtTH0t6USjJISrw==}
  690. peerDependencies:
  691. vite: ^5.2.0 || ^6 || ^7 || ^8
  692. '@tanstack/[email protected]':
  693. resolution: {integrity: sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==}
  694. engines: {node: '>=12'}
  695. '@tanstack/[email protected]':
  696. resolution: {integrity: sha512-JLANqGy/D6k4Ujmh8Tr25lGimuOXNiaVyXaCAZS0W+1390sADdGnyUdSWNIfd49gebtIxGMij4IktRVzrdr12Q==}
  697. '@tanstack/[email protected]':
  698. resolution: {integrity: sha512-rusRyd77c5tDPloPskctMyPLFEQUeBzxdQ+2Eow4F7gDPlPOB1UnnhzfpdvqZ8ZyX2rRNGmqNnQWm87OI2OQPw==}
  699. engines: {node: '>=12'}
  700. peerDependencies:
  701. vue: '>=3.2'
  702. '@tanstack/[email protected]':
  703. resolution: {integrity: sha512-A0k2qF0zFSUStXSZkGXABouXr2Tw2Ztl/cVIYG9qy84uR8W7UNjAcX3DvzBS3YnDcwvLxab8v7dbmYBZ39itDA==}
  704. peerDependencies:
  705. vue: ^2.7.0 || ^3.0.0
  706. '@tiptap/[email protected]':
  707. resolution: {integrity: sha512-657Xqcgf1IYWLkAmRDJKNSGdoS1AHJEgK6zHWHFJERQGIqHnwC7Fz7nvWs/NQhQVBkclQd0ERRdTCZ3XwRc1+g==}
  708. peerDependencies:
  709. '@tiptap/pm': 3.23.5
  710. '@tiptap/[email protected]':
  711. resolution: {integrity: sha512-PBQRoGfSWfIY7HmGbS5PTHEBQl5nKbild5J5phPLFF+O3aOBQ0d49AC9cxbaou/6FRCtq6g4Uqse9rRTKJRM0w==}
  712. peerDependencies:
  713. '@tiptap/core': 3.23.5
  714. '@tiptap/[email protected]':
  715. resolution: {integrity: sha512-DZsDCCf53fA9HmsFzfUHl5jLOwDYf+XzfP+QJjJ4cK23SsxDirameTjgnwi4l1EgEPLWunMZQjU+wHmh7vvX6Q==}
  716. peerDependencies:
  717. '@tiptap/core': 3.23.5
  718. '@tiptap/[email protected]':
  719. resolution: {integrity: sha512-otcGwyVO6OfxdDPnbooZxYGrb+6q5WYmS+g2V+XGGNRn5oJgyY5pW0dqELIUJ66dosIIXXPyw2XqBDpMMY2kyQ==}
  720. peerDependencies:
  721. '@tiptap/core': 3.23.5
  722. '@tiptap/pm': 3.23.5
  723. '@tiptap/[email protected]':
  724. resolution: {integrity: sha512-o0bzZbFvOPhPX6+RAhIFPKMIN3jIenY6Ib3FJ6ZqxTdVcjuV2mIXUmJU0uV2BwKtz73GmKSRKRKia6KJ0ml8qA==}
  725. peerDependencies:
  726. '@tiptap/extension-list': 3.23.5
  727. '@tiptap/[email protected]':
  728. resolution: {integrity: sha512-P2XH8WPM4UahavcWoQgAwNAKQCbF/JWi6ZqgsQmVBfAqQ3mf8gMxB7HnciMq1DlyI9EfjXoJH11yUqldF/6AaQ==}
  729. peerDependencies:
  730. '@tiptap/core': 3.23.5
  731. '@tiptap/pm': 3.23.5
  732. '@tiptap/[email protected]':
  733. resolution: {integrity: sha512-NOJUD2Z0hrtBWnovXiiH1XtOjEQePOfIG3bNJgXSs1bWxPVhqp6KjVd8mUJNra974hxbml3tC97sL9QqjpAWFg==}
  734. peerDependencies:
  735. '@tiptap/core': 3.23.5
  736. '@tiptap/[email protected]':
  737. resolution: {integrity: sha512-jtYuVAOAjehCpvm9Bk/Qy6uQQfml+DTVSFNJbLZ/nAyB2N1IfdGz4Mb1+v/K86OHBBqHQpq9ECs+VA4X8eK2wg==}
  738. peerDependencies:
  739. '@tiptap/core': 3.23.5
  740. '@tiptap/pm': 3.23.5
  741. '@tiptap/y-tiptap': ^3.0.2
  742. yjs: ^13
  743. '@tiptap/[email protected]':
  744. resolution: {integrity: sha512-Y7uPjEM1xIK4Spcdk/kp/vZ/Az3cEaglTCk6uHrWvNFVglEoGehNb6IQbQFZW0wjE19YoMIiLBLtG6V9dqrpBw==}
  745. peerDependencies:
  746. '@tiptap/core': 3.23.5
  747. '@tiptap/[email protected]':
  748. resolution: {integrity: sha512-tWBiuXFkiJPv9fnI3m2To4vws0DPxkhZ3npaItEeea8cxWGb5yKDv/lQwcLTd/L2kcjqXT17rNitTpL5xHEA7w==}
  749. peerDependencies:
  750. '@tiptap/extension-drag-handle': 3.23.5
  751. '@tiptap/pm': 3.23.5
  752. '@tiptap/vue-3': 3.23.5
  753. vue: ^3.0.0
  754. '@tiptap/[email protected]':
  755. resolution: {integrity: sha512-87OZEt/texW3r31/YMEEICFi2P/tyYMMB6LSx3CllCDdi8vViG5/6LS+FRistAG9EkO0lw/8fzgmMAyfWKjNLw==}
  756. peerDependencies:
  757. '@tiptap/core': 3.23.5
  758. '@tiptap/extension-collaboration': 3.23.5
  759. '@tiptap/extension-node-range': 3.23.5
  760. '@tiptap/pm': 3.23.5
  761. '@tiptap/y-tiptap': ^3.0.2
  762. '@tiptap/[email protected]':
  763. resolution: {integrity: sha512-l72R798Q69D6f89Vp9xreoRnPcpK0LHPKLZIc6pvqBC2iOjx5wLKtW0uP1uqVWdQtvF5AUYBRNIGAQ5Gel9XEg==}
  764. peerDependencies:
  765. '@tiptap/extensions': 3.23.5
  766. '@tiptap/[email protected]':
  767. resolution: {integrity: sha512-kP0bZKH/lxNogfvoIy/YJZ5gkty0OwqFVtQUwoc85vXYUfvy5Jh1VdO053tCE1iDzmvOITUpcb+MdWryP8dBxA==}
  768. peerDependencies:
  769. '@floating-ui/dom': ^1.0.0
  770. '@tiptap/core': 3.23.5
  771. '@tiptap/pm': 3.23.5
  772. '@tiptap/[email protected]':
  773. resolution: {integrity: sha512-x9XlYG26TowX0Ly1w0ZV2D8qliyQy9fTmMY4suI6B/6o6m/sXHGTAJMmJqwP66sZKF6cMLU3HECumhtyQxPT2g==}
  774. peerDependencies:
  775. '@tiptap/extensions': 3.23.5
  776. '@tiptap/[email protected]':
  777. resolution: {integrity: sha512-j/BDBMOA1mA+RhCx622SRPBhpp2XWNFYz9asbg8T3yk8v9WI3Vjo6IDlfTp6fwsR2LGE7Pek3R0xDAjW6yVG3g==}
  778. peerDependencies:
  779. '@tiptap/core': 3.23.5
  780. '@tiptap/[email protected]':
  781. resolution: {integrity: sha512-tFI+iYk34geacVOGqYgyoC8siQjdGn605XaYSZcGRFF8NY+HrGlLkQi2QRRCeLaUhxoctONmWc8USn3H5U7wLQ==}
  782. peerDependencies:
  783. '@tiptap/core': 3.23.5
  784. '@tiptap/[email protected]':
  785. resolution: {integrity: sha512-9XkRYc4XE0stERZB3y8bsJd32Jw9UZfMwZXo1GLNYRHFr7dmhSGUj0IzgofqOVmLDcOMW6XcCk54TBYw6BCrWA==}
  786. peerDependencies:
  787. '@tiptap/core': 3.23.5
  788. '@tiptap/pm': 3.23.5
  789. '@tiptap/[email protected]':
  790. resolution: {integrity: sha512-v6u9zbJSKLjml6DDn1/1WOOIzVxz3K5Idl1EgUl+IpJH7kR1HLRJ3TaSgF7z2RRQmqyHlmtdCzdaKoe0jCIyqQ==}
  791. peerDependencies:
  792. '@tiptap/core': 3.23.5
  793. '@tiptap/[email protected]':
  794. resolution: {integrity: sha512-XjRSPr6j4mz+8O5j5KNfxVb+1fGNt0wr+js6MLxxGdU7M+PoDPdVY6fARbmBazv4ERlZ5PNS9m35Vo5xDjDfrg==}
  795. peerDependencies:
  796. '@tiptap/core': 3.23.5
  797. '@tiptap/[email protected]':
  798. resolution: {integrity: sha512-FEI58NAPnauBbs4nw1dkgRyEhcWnure0vIlStfQoQGXxj3xSRvxKH2lOkz54fGzuzRJAoudyLU65HW6D7kc+8Q==}
  799. peerDependencies:
  800. '@tiptap/core': 3.23.5
  801. '@tiptap/pm': 3.23.5
  802. '@tiptap/[email protected]':
  803. resolution: {integrity: sha512-l7Hb4rfNIkO6JrNJYkdXap6QYXCz4XeeFmI1bfQgEiwPGs+RAn/+0cOdg7q+6MmtZFac5uSXV0PftPk6A0GsEA==}
  804. peerDependencies:
  805. '@tiptap/extension-list': 3.23.5
  806. '@tiptap/[email protected]':
  807. resolution: {integrity: sha512-Hz8jRA51VSiHezEkwqwaMYbTEYcR/5Aq3UgCgDlNPlE6k1OZrvRtV/4s3AOO0RRgzyVLKv7yv7KuOJN/OLGErw==}
  808. peerDependencies:
  809. '@tiptap/extension-list': 3.23.5
  810. '@tiptap/[email protected]':
  811. resolution: {integrity: sha512-nzZXpVwnyKwTj4TVyPyu1bCUFjJCsaXnhAthmvJDnX3RBtemNG9Ka07xGR2NIspzumSbQSMFtDxjmxv3W5dEtg==}
  812. peerDependencies:
  813. '@tiptap/core': 3.23.5
  814. '@tiptap/pm': 3.23.5
  815. '@tiptap/[email protected]':
  816. resolution: {integrity: sha512-SI6cx7G5ZQXEcYmNb7OVzVmhbUdBM4IGH1MU68oB2V9Cbi2OdhXYmG04N37FzsSPDeFDNwCZM9BW6TWYh9xKRg==}
  817. peerDependencies:
  818. '@tiptap/core': 3.23.5
  819. '@tiptap/pm': 3.23.5
  820. '@tiptap/suggestion': 3.23.5
  821. '@tiptap/[email protected]':
  822. resolution: {integrity: sha512-oD7swbxSugWLMiM7E/EOgt09g1GjOW1om0o1IEYFl8gE9jvkbnk2+LIkWZWWX463hNwNElOY+itw9HF9QJ6VKw==}
  823. peerDependencies:
  824. '@tiptap/core': 3.23.5
  825. '@tiptap/pm': 3.23.5
  826. '@tiptap/[email protected]':
  827. resolution: {integrity: sha512-qQeU71ij0cAAD9bbGqot5T5bpR3dysgQ+W67quRs6VDyusU89EYaJHKn/qWU6a1XOEQ4sL+5GNw52FYQVHUxbA==}
  828. peerDependencies:
  829. '@tiptap/extension-list': 3.23.5
  830. '@tiptap/[email protected]':
  831. resolution: {integrity: sha512-LtgMcR1rvWnZDtphFJ/LBltlC0+6HGA07k7vhy+U7P/zIg/V3Fb4RD6YDuAo0cPfBsLm8p1WYJV92WpAsGgtlg==}
  832. peerDependencies:
  833. '@tiptap/core': 3.23.5
  834. '@tiptap/[email protected]':
  835. resolution: {integrity: sha512-B2snUujc6fb/16p8jSQCN4+mto7RlHKLm8quBTUWXksY8D82u/cxjUdmRQ7ueq7vsbRsA+WoJTrKEjJ8RQOpjw==}
  836. peerDependencies:
  837. '@tiptap/extensions': 3.23.5
  838. '@tiptap/[email protected]':
  839. resolution: {integrity: sha512-PMB9lpQGOJGuRTIS9rBw8UZtHQwmsiJbWKjcBr5z20MluaJQ3ZCHFhDYG6ncIDRz+0ny4ZvoJ7cKGpI+NTvXMA==}
  840. peerDependencies:
  841. '@tiptap/core': 3.23.5
  842. '@tiptap/[email protected]':
  843. resolution: {integrity: sha512-GLa+AaA2NC5XYRZad/Qq/oH5Pa95s+uA17J7+RCkF8j1RNREUBkYQ5CD5MT8kT+D3DHgU8MRyYdTd28I46HBDQ==}
  844. peerDependencies:
  845. '@tiptap/core': 3.23.5
  846. '@tiptap/[email protected]':
  847. resolution: {integrity: sha512-fyxthzE6CNCi9a9OVAwXs1sSyJ7jlrzT3aP2KhYLQCsJABHaPJgJA7k52/CRuKqCW3WbxU1ULH9LGuGtBbhEyw==}
  848. peerDependencies:
  849. '@tiptap/core': 3.23.5
  850. '@tiptap/[email protected]':
  851. resolution: {integrity: sha512-ROcdNPV+buzldEFKvD3o29P7H7zpAf2lnLfndO2LHSToWyHw4hlzVPCeAU8uAvhl/jyfeUoFLrBwxphMX/KG6A==}
  852. peerDependencies:
  853. '@tiptap/core': 3.23.5
  854. '@tiptap/pm': 3.23.5
  855. '@tiptap/[email protected]':
  856. resolution: {integrity: sha512-R5snuHrg+lweGqiq2dkw4iwRGPmKXwJAnTxSoePNY3YY9rTNc8TMvH4XPi/664APPzBVnWTlx1hN09tcdHsIVw==}
  857. peerDependencies:
  858. '@tiptap/core': 3.23.5
  859. '@tiptap/pm': 3.23.5
  860. '@tiptap/[email protected]':
  861. resolution: {integrity: sha512-9tgLdpTvNN0/fLP4RcNzbyQ0qjg9J2ahaFbQzgV5uvd+QMy8Xkg2IqKKnOoJJUAV3FDjGq3Yx0WrV2BGro9pfw==}
  862. '@tiptap/[email protected]':
  863. resolution: {integrity: sha512-ac0edQ1a1nYkNAzOgdqIBKGdrOlNQpPP9wGAG3Q9EgTq4+C4/EftJZZJmUn3KzaSOUv4cLEDo0z0jurJvZPkaw==}
  864. '@tiptap/[email protected]':
  865. resolution: {integrity: sha512-m5QoCs4IZqxTnDTJkNYm14Y3UFpJPZzUjS2APXpx9+wxaoo1q0SZ6fXardUgQET1wCJeUrsu73mvEnlK8mmuog==}
  866. peerDependencies:
  867. '@tiptap/core': 3.23.5
  868. '@tiptap/pm': 3.23.5
  869. '@tiptap/[email protected]':
  870. resolution: {integrity: sha512-1yGVtZdeAgRL1357g0YrhFgwDTI4fCPeKUtEInxsyRJkH/DQRmoaL3VmaPSWCn5R1Hxm1SY6f77djtNrNgNqtg==}
  871. peerDependencies:
  872. '@floating-ui/dom': ^1.0.0
  873. '@tiptap/core': 3.23.5
  874. '@tiptap/pm': 3.23.5
  875. vue: ^3.0.0
  876. '@tiptap/[email protected]':
  877. resolution: {integrity: sha512-8UvuV4lTisCE9cMTc/X8kRyTn9edUO7Kball0I6wb17VwZSjNDfh/YKtP4O5vcPawEzFHQIvZGq/k1h37kAf0w==}
  878. engines: {node: '>=16.0.0', npm: '>=8.0.0'}
  879. peerDependencies:
  880. prosemirror-model: ^1.7.1
  881. prosemirror-state: ^1.2.3
  882. prosemirror-view: ^1.9.10
  883. y-protocols: ^1.0.1
  884. yjs: ^13.5.38
  885. '@tsconfig/[email protected]':
  886. resolution: {integrity: sha512-2A933l5P5oCbv6qSxHs7ckKwobs8BDAe9SJ/Xr2Hy+nDlwmLE1GhFh/g/vXGRZWgxBg9nX/5piDtHR9Dkw/XuA==}
  887. '@tybys/[email protected]':
  888. resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==}
  889. '@types/[email protected]':
  890. resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
  891. '@types/[email protected]':
  892. resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
  893. '@types/[email protected]':
  894. resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
  895. '@types/[email protected]':
  896. resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==}
  897. '@types/[email protected]':
  898. resolution: {integrity: sha512-GUUEShf+PBCGW2KaXwcIt3Yk+e3pkKwWKb9GSyM9WQVE+ep2jzmHdGsHzu4wgcZy5fN9FBdVzjpBQsYlpfpgLA==}
  899. '@types/[email protected]':
  900. resolution: {integrity: sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==}
  901. '@types/[email protected]':
  902. resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
  903. '@types/[email protected]':
  904. resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
  905. '@unhead/[email protected]':
  906. resolution: {integrity: sha512-SSByXfEjhzPn8gXdEdgpYqpLMPSkLUH2HVE0GxZfOtNsJ0GgOHQs0g9T67ZZ1z0kTELLKdtOtYrzrbv9+ffF7g==}
  907. peerDependencies:
  908. vue: '>=3.5.18'
  909. '@vitejs/[email protected]':
  910. resolution: {integrity: sha512-km+p+XdSz9Sxm5rqUbqcSfZYaAniKxWBj1KURl+Jr7UaPvvX7BmaWMdP69I5rrFDeQGyxAG7NXdc57vz+snhWg==}
  911. engines: {node: ^20.19.0 || >=22.12.0}
  912. peerDependencies:
  913. vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
  914. vue: ^3.2.25
  915. '@vitest/[email protected]':
  916. resolution: {integrity: sha512-1R+tw0ortHEbZDGMymm+pN7/AFQ/RkFFdtd7EN+VBpynKmLbP8A3rpEXdshBJ7+8hQ9zBJh/i1s0yKNtxAnU7w==}
  917. '@vitest/[email protected]':
  918. resolution: {integrity: sha512-vY7nuamKgfvpA1Koa3oYIw/k7D6kZnpGyNMZW8loow2bsBYla1TFdqTaXncWdRn4pgwNs+90RhnXhJScDwQeJA==}
  919. peerDependencies:
  920. msw: ^2.4.9
  921. vite: ^6.0.0 || ^7.0.0 || ^8.0.0
  922. peerDependenciesMeta:
  923. msw:
  924. optional: true
  925. vite:
  926. optional: true
  927. '@vitest/[email protected]':
  928. resolution: {integrity: sha512-umgCarTOYQWIaDMvGDRZij+6b9oVeLIyJzfN+AS88e0ZOU3QTgNNSTtjQOpcvWr3np1N0j4WgZj+sb3oYBDscw==}
  929. '@vitest/[email protected]':
  930. resolution: {integrity: sha512-BapjmAQ2aI78WdMEfeUWivnfVzB+VPGwWRQcJE0OUq7qEeEcBsCSf+0T5iREBNE5nBb4wA5Ya0W6IA+sghdEFw==}
  931. '@vitest/[email protected]':
  932. resolution: {integrity: sha512-ZacLzja+TmJeZ1h14xW2FB/WpeimUD3haBXQPyJqxvo8jQTmfeA8zv58mtjN2C7EHXZDYVcVYdYmAxjkWVvKCw==}
  933. '@vitest/[email protected]':
  934. resolution: {integrity: sha512-kbkI5LMWakyuTIvs6fUJ5qdIVb1XVKsYJAT4OJ938cHMROYMSfmoQdZy0aaAnjbbc8F61vkoTqz/Az+/HiIu5Q==}
  935. '@vitest/[email protected]':
  936. resolution: {integrity: sha512-T532WBu791cBxJlCl6SO+J14l81DQx6uQHm1bQbmCDY7nqlEIgkza/UFnSBNaUtSf41unldDFjdOBYEQC4b5Hw==}
  937. '@volar/[email protected]':
  938. resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==}
  939. '@volar/[email protected]':
  940. resolution: {integrity: sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==}
  941. '@volar/[email protected]':
  942. resolution: {integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==}
  943. '@vue-macros/[email protected]':
  944. resolution: {integrity: sha512-h9t4ArDdniO9ekYHAD95t9AZcAbb19lEGK+26iAjUODOIJKmObDNBSe4+6ELQAA3vtYiFPPBtHh7+cQCKi3Dng==}
  945. engines: {node: '>=20.19.0'}
  946. peerDependencies:
  947. vue: ^2.7.0 || ^3.2.25
  948. peerDependenciesMeta:
  949. vue:
  950. optional: true
  951. '@vue/[email protected]':
  952. resolution: {integrity: sha512-s9cLyK5mLcvZ4Agva5QgRsQyLKvts9WbU9DB6NqiZkkGEdwmcEiylj5Jbwkp680drF/NNCV8OlAJSe+yMLxaJw==}
  953. '@vue/[email protected]':
  954. resolution: {integrity: sha512-EbF/T++k0e2MMZlJsBhzK8Sgwt0HcIPOhzn1CTB/lv6sQcyk+OWf8YeiLxZp3ro7MbbLcAfAJ6sEvjFWuNgUCw==}
  955. '@vue/[email protected]':
  956. resolution: {integrity: sha512-D/ihr6uZeIt6r+pVZf46RWT1fAsLFMbUP7k8G1VkiiWexriED9GrX3echHd4Abbt17zjlfiFJ8z7a3BxZOPNjg==}
  957. '@vue/[email protected]':
  958. resolution: {integrity: sha512-cDtTHKibkThKGHH1SP+WdccquNRYQDFH6rRjQCqT9G2ltFAfoR5pUftpab/z+aM5mW9HLLVQW7hfKKQe/1GBeQ==}
  959. '@vue/[email protected]':
  960. resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==}
  961. '@vue/[email protected]':
  962. resolution: {integrity: sha512-vA0O112YqyDuNA1s7Yb2gCgToQ/OxOWiFDO5ThLCcDy0ldHnSd1dUTaSYhOldbqoNgumE4dxtGAoAaSUKUD1Zg==}
  963. '@vue/[email protected]':
  964. resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==}
  965. '@vue/[email protected]':
  966. resolution: {integrity: sha512-f75/upc+GCyjXErpgPGz4582ujS0L/adAltGy+tqXMGUJpgAcfGr6CxnnhpZY8BHuMYt6KpbF8uaFrrQG66rGQ==}
  967. '@vue/[email protected]':
  968. resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==}
  969. '@vue/[email protected]':
  970. resolution: {integrity: sha512-X9RyVFYAdkBe4IUf5v48TxBF/6QPmF8CmWrDAjXzfUHrgQ/HGfTC1A6TqgXqZ03ye66l3AD51BAGD69IvKM9sw==}
  971. '@vue/[email protected]':
  972. resolution: {integrity: sha512-NP8g6V7x81NVOXbLupUvYY6i6LqUkjkVowe2epRedmpgaFCOdjgWHE/rQBvEJ4r7koAYODIjGeBWEdt6n7jYXQ==}
  973. '@vue/[email protected]':
  974. resolution: {integrity: sha512-y9XDjCEuBp+98k+UL5dbYkh57AHU4o6cxZedOPXw3bmrZZYLQsVHguGurq7hVrPCSrQtrnz1f9dssyFr+dMXfQ==}
  975. '@vue/[email protected]':
  976. resolution: {integrity: sha512-mKeBYvu8tcMSLhypAHBmriUFfWXKTCF/23Z4jiCoYK3UtWepkliViNLuR90V9XOyD62mUxs9p1jsrpK3CCGIzw==}
  977. '@vue/[email protected]':
  978. resolution: {integrity: sha512-e8kZzERmCwUnBRVsgSQlAfrfU2rGoy0FFKPBXSlfEjc/O3KfA7QP0t1/2ZylrbchjmIKB4dPTd07A6WPr0eOrg==}
  979. '@vue/[email protected]':
  980. resolution: {integrity: sha512-nHxmJoTrKsmrkbILRhkC9gY1G3moZbJTqCzDd7DOOzG5KH9oeJ0Unqrff5f9v0pW//jES05ZkJcNtfE8JjOIew==}
  981. peerDependencies:
  982. vue: 3.5.34
  983. '@vue/[email protected]':
  984. resolution: {integrity: sha512-24uqU4OIiX29ryC3MeWid/Xf2fa2EFRUVLb77nRhk+UrTVrh/XiGtFAFmJBAtBRbjwNdsPRP+jj/OL27Eg1NDA==}
  985. '@vue/[email protected]':
  986. resolution: {integrity: sha512-SmoZ5EA1kYiAFs9NkYdiFFQF+cSnUwnvlYEbY+DogWQZUiqOm/Y29eSbc5T6yi75SgSF9863SBeXniIEoPajCA==}
  987. peerDependencies:
  988. '@vue/compiler-dom': 3.x
  989. '@vue/server-renderer': 3.x
  990. vue: 3.x
  991. peerDependenciesMeta:
  992. '@vue/server-renderer':
  993. optional: true
  994. '@vue/[email protected]':
  995. resolution: {integrity: sha512-buvjm+9NzLCJL29KY1j1991YYJ5e6275OiK+G4jtmfIb+z4POywbdm0wXusT9adVWqe0xqg70TbI7+mRx4uU9w==}
  996. peerDependencies:
  997. typescript: '>= 5.8'
  998. vue: ^3.4.0
  999. peerDependenciesMeta:
  1000. typescript:
  1001. optional: true
  1002. vue:
  1003. optional: true
  1004. '@vueuse/[email protected]':
  1005. resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
  1006. '@vueuse/[email protected]':
  1007. resolution: {integrity: sha512-aHfz47g0ZhMtTVHmIzMVpJy8ePhhOy68GY5bv110+5DVtZ+W7BsOx+m61UNQqfrWyPztIHIanWa3E2tib3NFIw==}
  1008. peerDependencies:
  1009. vue: ^3.5.0
  1010. '@vueuse/[email protected]':
  1011. resolution: {integrity: sha512-76I5FT2ESvCmCaSwapI+a/u/CFtNXmzl9f9lNp1hRtx8vKB8hfiokJr8IvQqcQG5ckGXElyXK516b54ozV3MvA==}
  1012. peerDependencies:
  1013. async-validator: ^4
  1014. axios: ^1
  1015. change-case: ^5
  1016. drauu: ^0.4
  1017. focus-trap: ^7 || ^8
  1018. fuse.js: ^7
  1019. idb-keyval: ^6
  1020. jwt-decode: ^4
  1021. nprogress: ^0.2
  1022. qrcode: ^1.5
  1023. sortablejs: ^1
  1024. universal-cookie: ^7 || ^8
  1025. vue: ^3.5.0
  1026. peerDependenciesMeta:
  1027. async-validator:
  1028. optional: true
  1029. axios:
  1030. optional: true
  1031. change-case:
  1032. optional: true
  1033. drauu:
  1034. optional: true
  1035. focus-trap:
  1036. optional: true
  1037. fuse.js:
  1038. optional: true
  1039. idb-keyval:
  1040. optional: true
  1041. jwt-decode:
  1042. optional: true
  1043. nprogress:
  1044. optional: true
  1045. qrcode:
  1046. optional: true
  1047. sortablejs:
  1048. optional: true
  1049. universal-cookie:
  1050. optional: true
  1051. '@vueuse/[email protected]':
  1052. resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
  1053. '@vueuse/[email protected]':
  1054. resolution: {integrity: sha512-BwxmbAzwAVF50+MW57GXOUEV61nFBGnlBvrTqj49PqWJu3uw7hdu72ztXeZ33RdZtDY6kO+bfCAE1PCn88Tktw==}
  1055. '@vueuse/[email protected]':
  1056. resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
  1057. '@vueuse/[email protected]':
  1058. resolution: {integrity: sha512-bZpge9eSXwa4ToSiqJ7j6KRwhAsneMFoSz3LMWKQDkqimm3D/tbFlrklrs/IOqC8tEcYmXQZJ6N0UrjhBirVCg==}
  1059. peerDependencies:
  1060. vue: ^3.5.0
  1061. [email protected]:
  1062. resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
  1063. engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
  1064. [email protected]:
  1065. resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
  1066. engines: {node: '>=0.4.0'}
  1067. hasBin: true
  1068. [email protected]:
  1069. resolution: {integrity: sha512-I8FjmltrfnDFoZedi5CG8DghVYNhzb/Ijluz7tCSJH0xpd0484Kowhbb1XDYOxfJpU1p5wnM2X54dA+IfGyD1g==}
  1070. [email protected]:
  1071. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  1072. engines: {node: '>=8'}
  1073. [email protected]:
  1074. resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
  1075. engines: {node: '>=12'}
  1076. [email protected]:
  1077. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  1078. engines: {node: '>=8'}
  1079. [email protected]:
  1080. resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
  1081. engines: {node: '>=12'}
  1082. [email protected]:
  1083. resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
  1084. engines: {node: '>= 8'}
  1085. [email protected]:
  1086. resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
  1087. engines: {node: '>=10'}
  1088. [email protected]:
  1089. resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
  1090. engines: {node: '>=12'}
  1091. [email protected]:
  1092. resolution: {integrity: sha512-m1Q/RaVOnTp9JxPX+F+Zn7IcLYMzM8kZofDImfsKZd8MbR+ikdOzTeztStWqfrqIxZnYWryyI9ePm3NGjnZgGw==}
  1093. engines: {node: '>=20.19.0'}
  1094. [email protected]:
  1095. resolution: {integrity: sha512-cbdCP0PGOBq0ASG+sjnKIoYkWMKhhz+F/h9pRexUdX2Hd38+WOlBkRKlqkGOSm0YQpcFMQBJeK4WspUAkwsEdg==}
  1096. engines: {node: '>=20.19.0'}
  1097. [email protected]:
  1098. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  1099. [email protected]:
  1100. resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
  1101. [email protected]:
  1102. resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
  1103. [email protected]:
  1104. resolution: {integrity: sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==}
  1105. [email protected]:
  1106. resolution: {integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==}
  1107. peerDependencies:
  1108. magicast: '*'
  1109. peerDependenciesMeta:
  1110. magicast:
  1111. optional: true
  1112. [email protected]:
  1113. resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==}
  1114. engines: {node: '>=18'}
  1115. [email protected]:
  1116. resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
  1117. engines: {node: '>= 20.19.0'}
  1118. [email protected]:
  1119. resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
  1120. [email protected]:
  1121. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  1122. engines: {node: '>=7.0.0'}
  1123. [email protected]:
  1124. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  1125. [email protected]:
  1126. resolution: {integrity: sha512-Z3UPUKasUVDFCDYAjP2fmlVRf1jFHJv1izAmPjiOa0OCIw1W7iC8PZ2GsoDa8uZv+mKyWopxxStT9q05+27h7w==}
  1127. [email protected]:
  1128. resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
  1129. engines: {node: '>=14'}
  1130. [email protected]:
  1131. resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
  1132. [email protected]:
  1133. resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==}
  1134. [email protected]:
  1135. resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
  1136. [email protected]:
  1137. resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
  1138. engines: {node: ^14.18.0 || >=16.10.0}
  1139. [email protected]:
  1140. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  1141. [email protected]:
  1142. resolution: {integrity: sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==}
  1143. [email protected]:
  1144. resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==}
  1145. engines: {node: '>=18'}
  1146. [email protected]:
  1147. resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
  1148. engines: {node: '>= 8'}
  1149. [email protected]:
  1150. resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==}
  1151. [email protected]:
  1152. resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==}
  1153. engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
  1154. [email protected]:
  1155. resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
  1156. [email protected]:
  1157. resolution: {integrity: sha512-23XHcCF+coGYevirZceTVD7NdJOqVn+49IHyxgszm+JIiHLoB2TkmPtsYkNWT1pvRSGkc35L6NHs0yHkN2SumA==}
  1158. engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
  1159. [email protected]:
  1160. resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
  1161. [email protected]:
  1162. resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==}
  1163. [email protected]:
  1164. resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
  1165. [email protected]:
  1166. resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
  1167. engines: {node: '>=8'}
  1168. [email protected]:
  1169. resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==}
  1170. engines: {node: '>=12'}
  1171. [email protected]:
  1172. resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
  1173. [email protected]:
  1174. resolution: {integrity: sha512-e0GOtq/aTQhVdNyDU9e02+wz9oDDM+SIOQxWME2QRjzRX5yyLAuHDE+0aE8vHb9XRC8XD37eO2u57+F09JqFhw==}
  1175. engines: {node: '>=14'}
  1176. hasBin: true
  1177. [email protected]:
  1178. resolution: {integrity: sha512-/HrJQOEM6aol/oF33gd2QlINcXy3e19fJWvHDuHWp2bpyTa+2dm9tVVJak30m2Qy6QyQ6Fc8DkImtv7pxWOJUQ==}
  1179. peerDependencies:
  1180. embla-carousel: 8.6.0
  1181. [email protected]:
  1182. resolution: {integrity: sha512-WT9fWhNXFpbQ6kP+aS07oF5IHYLZ1Dx4DkwgCY8Hv2ZyYd2KMCPfMV1q/cA3wFGuLO7GMgKiySLX90/pQkcOdQ==}
  1183. peerDependencies:
  1184. embla-carousel: 8.6.0
  1185. [email protected]:
  1186. resolution: {integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==}
  1187. peerDependencies:
  1188. embla-carousel: 8.6.0
  1189. [email protected]:
  1190. resolution: {integrity: sha512-l1hm1+7GxQ+zwdU2sea/LhD946on7XO2qk3Xq2XWSwBaWfdgchXdK567yzLtYSHn4sWYdiX+x4nnaj+saKnJkw==}
  1191. peerDependencies:
  1192. embla-carousel: 8.6.0
  1193. [email protected]:
  1194. resolution: {integrity: sha512-qaYsx5mwCz72ZrjlsXgs1nKejSrW+UhkbOMwLgfRT7w2LtdEB03nPRI06GHuHv5ac2USvbEiX2/nAHctcDwvpg==}
  1195. peerDependencies:
  1196. embla-carousel: 8.6.0
  1197. [email protected]:
  1198. resolution: {integrity: sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A==}
  1199. peerDependencies:
  1200. embla-carousel: 8.6.0
  1201. [email protected]:
  1202. resolution: {integrity: sha512-v8UO5UsyLocZnu/LbfQA7Dn2QHuZKurJY93VUmZYP//QRWoCWOsionmvLLAlibkET3pGPs7++03VhJKbWD7vhQ==}
  1203. peerDependencies:
  1204. vue: ^3.2.37
  1205. [email protected]:
  1206. resolution: {integrity: sha512-J68jkYrxbWDmXOm2n2YHl+uMEXzkGSKjWmjaEgL9xVvPb3HqVmg6rJSKfI3sqIDVvm7mkeTy87wtG/5263XqHQ==}
  1207. engines: {node: '>=10'}
  1208. peerDependencies:
  1209. embla-carousel: ^8.0.0 || ~8.0.0-rc03
  1210. [email protected]:
  1211. resolution: {integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==}
  1212. [email protected]:
  1213. resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
  1214. [email protected]:
  1215. resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
  1216. [email protected]:
  1217. resolution: {integrity: sha512-mLCNbrQli11K1ySUmuNt4ZUB3OpGIDq4q2vTBTf5cL2lpsRjI9QKqSD0ndjW8FyvcW/Jj46gMe9syyHAsvMa/A==}
  1218. engines: {node: '>=10.13.0'}
  1219. [email protected]:
  1220. resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
  1221. engines: {node: '>=0.12'}
  1222. [email protected]:
  1223. resolution: {integrity: sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==}
  1224. engines: {node: '>=20.19.0'}
  1225. [email protected]:
  1226. resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
  1227. [email protected]:
  1228. resolution: {integrity: sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==}
  1229. [email protected]:
  1230. resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==}
  1231. engines: {node: '>=18'}
  1232. hasBin: true
  1233. [email protected]:
  1234. resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
  1235. engines: {node: '>=12'}
  1236. [email protected]:
  1237. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  1238. [email protected]:
  1239. resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
  1240. [email protected]:
  1241. resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
  1242. engines: {node: '>=16.17'}
  1243. [email protected]:
  1244. resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==}
  1245. engines: {node: '>=12.0.0'}
  1246. [email protected]:
  1247. resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
  1248. [email protected]:
  1249. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  1250. engines: {node: '>=12.0.0'}
  1251. peerDependencies:
  1252. picomatch: ^3 || ^4
  1253. peerDependenciesMeta:
  1254. picomatch:
  1255. optional: true
  1256. [email protected]:
  1257. resolution: {integrity: sha512-eek1GbzOdWIj9FyQH/emqW1aEdfC3lYRCHepzwlFCm5T77fBSRSyNRKE6/antF1/B1M+SfJXVRQTY9GAr7lnDg==}
  1258. engines: {node: '>=18.12.0'}
  1259. [email protected]:
  1260. resolution: {integrity: sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw==}
  1261. engines: {node: '>=20'}
  1262. [email protected]:
  1263. resolution: {integrity: sha512-mUWZ8w91/mw2KEcZ6gHNoNNmsAq9Wiw2IypIux5lM03nhXm+WSloXGUNuRETNTLqZexMgpt7Aj/v63qqrsWraQ==}
  1264. engines: {node: '>=18.12.0'}
  1265. peerDependencies:
  1266. vite: '*'
  1267. peerDependenciesMeta:
  1268. vite:
  1269. optional: true
  1270. [email protected]:
  1271. resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
  1272. engines: {node: '>=14'}
  1273. [email protected]:
  1274. resolution: {integrity: sha512-+vnLfzrv0MzjLzNl+nvNvR7jdg3q4cxxjz/YvzfifHl0TREtL00cs1RoMTxs+1PzLiEqZGV6gYsBY0oEAYZ24w==}
  1275. peerDependencies:
  1276. '@emotion/is-prop-valid': '*'
  1277. react: ^18.0.0 || ^19.0.0
  1278. react-dom: ^18.0.0 || ^19.0.0
  1279. peerDependenciesMeta:
  1280. '@emotion/is-prop-valid':
  1281. optional: true
  1282. react:
  1283. optional: true
  1284. react-dom:
  1285. optional: true
  1286. [email protected]:
  1287. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  1288. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1289. os: [darwin]
  1290. [email protected]:
  1291. resolution: {integrity: sha512-plz8RVjfcDedTGfVngWH1jmJvBvAwi1v2jecfDerbEnMcmOYUEEwKFTHbNoCiYyzaK2Ws8lABkTCcRSqCY1q4w==}
  1292. engines: {node: '>=10'}
  1293. [email protected]:
  1294. resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
  1295. engines: {node: '>=16'}
  1296. [email protected]:
  1297. resolution: {integrity: sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A==}
  1298. hasBin: true
  1299. [email protected]:
  1300. resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==}
  1301. 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 [email protected]
  1302. hasBin: true
  1303. [email protected]:
  1304. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1305. [email protected]:
  1306. resolution: {integrity: sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==}
  1307. [email protected]:
  1308. resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
  1309. [email protected]:
  1310. resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
  1311. [email protected]:
  1312. resolution: {integrity: sha512-U9LYDy1CwhMCnprUfeAZWZGByVbhd54hwepegYTK7Pi5NvqEj63ifz5z+xukznehT7i6NIZRu89Ay1AZmRsLEQ==}
  1313. [email protected]:
  1314. resolution: {integrity: sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==}
  1315. engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
  1316. [email protected]:
  1317. resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
  1318. engines: {node: '>=16.17.0'}
  1319. [email protected]:
  1320. resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
  1321. engines: {node: '>= 4'}
  1322. [email protected]:
  1323. resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==}
  1324. [email protected]:
  1325. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  1326. [email protected]:
  1327. resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
  1328. [email protected]:
  1329. resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
  1330. engines: {node: '>=8'}
  1331. [email protected]:
  1332. resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
  1333. [email protected]:
  1334. resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
  1335. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  1336. [email protected]:
  1337. resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==}
  1338. engines: {node: '>=18'}
  1339. [email protected]:
  1340. resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
  1341. [email protected]:
  1342. resolution: {integrity: sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==}
  1343. [email protected]:
  1344. resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
  1345. [email protected]:
  1346. resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
  1347. hasBin: true
  1348. [email protected]:
  1349. resolution: {integrity: sha512-9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA==}
  1350. engines: {node: '>=14'}
  1351. hasBin: true
  1352. [email protected]:
  1353. resolution: {integrity: sha512-z/wZZgDrkNV1eA0ULjM/F9/50Ya8fbzgKneSpoPsXSGd0KnpdtHfOZWK+GcwLk+EZbS4F9RBhU+K2RgzuDaItw==}
  1354. engines: {node: '>=20'}
  1355. [email protected]:
  1356. resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
  1357. [email protected]:
  1358. resolution: {integrity: sha512-ECi4Fi2f7BdJtUKTflYRTiaMxIB0O6zfR1fX0GXpUrf6flp8QIYn1UT20YQqdSOfk2dfkCwS8LAFoJDEppNK5Q==}
  1359. engines: {node: ^20.19.0 || ^22.13.0 || >=24.0.0}
  1360. peerDependencies:
  1361. canvas: ^3.0.0
  1362. peerDependenciesMeta:
  1363. canvas:
  1364. optional: true
  1365. [email protected]:
  1366. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  1367. engines: {node: '>=6'}
  1368. hasBin: true
  1369. [email protected]:
  1370. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  1371. engines: {node: '>=6'}
  1372. hasBin: true
  1373. [email protected]:
  1374. resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
  1375. engines: {node: '>= 8'}
  1376. [email protected]:
  1377. resolution: {integrity: sha512-4LqMNoONzR43B1W0ek0fhXMsDNW/zxa1NdFAVMY+k28pgZLovR4G3PB5MrpTxCy1QaZCqNoiaKPr5w5qZHfSNw==}
  1378. [email protected]:
  1379. resolution: {integrity: sha512-DeXj9X5xDCjgKLU/7RR+/HQEVzuuEUiwldwOGsHK/sfAfELGWEyTcf0x+uOvCvK3O2zPmZePXWL85vtia6GyZw==}
  1380. engines: {node: '>=16'}
  1381. hasBin: true
  1382. [email protected]:
  1383. resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
  1384. engines: {node: '>= 12.0.0'}
  1385. cpu: [arm64]
  1386. os: [android]
  1387. [email protected]:
  1388. resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
  1389. engines: {node: '>= 12.0.0'}
  1390. cpu: [arm64]
  1391. os: [darwin]
  1392. [email protected]:
  1393. resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
  1394. engines: {node: '>= 12.0.0'}
  1395. cpu: [x64]
  1396. os: [darwin]
  1397. [email protected]:
  1398. resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
  1399. engines: {node: '>= 12.0.0'}
  1400. cpu: [x64]
  1401. os: [freebsd]
  1402. [email protected]:
  1403. resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
  1404. engines: {node: '>= 12.0.0'}
  1405. cpu: [arm]
  1406. os: [linux]
  1407. [email protected]:
  1408. resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
  1409. engines: {node: '>= 12.0.0'}
  1410. cpu: [arm64]
  1411. os: [linux]
  1412. libc: [glibc]
  1413. [email protected]:
  1414. resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
  1415. engines: {node: '>= 12.0.0'}
  1416. cpu: [arm64]
  1417. os: [linux]
  1418. libc: [musl]
  1419. [email protected]:
  1420. resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
  1421. engines: {node: '>= 12.0.0'}
  1422. cpu: [x64]
  1423. os: [linux]
  1424. libc: [glibc]
  1425. [email protected]:
  1426. resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
  1427. engines: {node: '>= 12.0.0'}
  1428. cpu: [x64]
  1429. os: [linux]
  1430. libc: [musl]
  1431. [email protected]:
  1432. resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
  1433. engines: {node: '>= 12.0.0'}
  1434. cpu: [arm64]
  1435. os: [win32]
  1436. [email protected]:
  1437. resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
  1438. engines: {node: '>= 12.0.0'}
  1439. cpu: [x64]
  1440. os: [win32]
  1441. [email protected]:
  1442. resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
  1443. engines: {node: '>= 12.0.0'}
  1444. [email protected]:
  1445. resolution: {integrity: sha512-P8aEP5U/D1/IlTY2OeYsErdwh9bGuLE30NcXtKEjgdHcahveQoQwM2yZNsioQHsWFz0P7KKudisbrzCgR0sDHg==}
  1446. [email protected]:
  1447. resolution: {integrity: sha512-U16tFsiwNEac4GuqQ/SmG3ayjPIT1YKmiFeH4x9NaHTZwYbSqmEhf9POmzJu6NdUDDVjaE7n1WQQLjymYYFx+Q==}
  1448. engines: {node: '>=14'}
  1449. [email protected]:
  1450. resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
  1451. [email protected]:
  1452. resolution: {integrity: sha512-5YgH9UJd7wVb9hIouI2adWpgqrrICkt070Dnj8EUY1+B4B2P9eRLPAkAAo6NICA7CEhOIeBHl46u9zSNpNu7zA==}
  1453. engines: {node: 20 || >=22}
  1454. [email protected]:
  1455. resolution: {integrity: sha512-Uly1Bu4lO1hwHUW0CQeSWuRtzCMNO00CmXtS8N6fyvB3B979GOEEeAkiTUDsmbYLAbvpUS/Kt5c4ibosAzVyVg==}
  1456. [email protected]:
  1457. resolution: {integrity: sha512-CvkkH1i81zl7mmb94DsRiFeG9V2fR2JeuK8yDgS8oiZSFa++wWLEgZ5ufEOyLHbvSbD1gTRKv9NdX69Rnvr9JA==}
  1458. engines: {node: '>=20.19.0'}
  1459. [email protected]:
  1460. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  1461. [email protected]:
  1462. resolution: {integrity: sha512-gB0gkNafnonOw0obSTEGZTT86IuhILt2Wfx0mWH/1Au83kybTayroZ/V6nS25mN7u8ASy+5fMhgB3XPNrOZdmA==}
  1463. engines: {node: '>= 20'}
  1464. hasBin: true
  1465. [email protected]:
  1466. resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==}
  1467. [email protected]:
  1468. resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
  1469. [email protected]:
  1470. resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
  1471. engines: {node: '>=12'}
  1472. [email protected]:
  1473. resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
  1474. engines: {node: '>=16 || 14 >=14.17'}
  1475. [email protected]:
  1476. resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
  1477. engines: {node: '>=16 || 14 >=14.17'}
  1478. [email protected]:
  1479. resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
  1480. [email protected]:
  1481. resolution: {integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==}
  1482. [email protected]:
  1483. resolution: {integrity: sha512-Xn7aAcGDhco/JZTXOub64UmaYn73C6J1Po7Fk+8EvkJsNGTqfhon6UJY53vJKXW5v5Zl8HrYsVxv6oPXeGoGLQ==}
  1484. [email protected]:
  1485. resolution: {integrity: sha512-8nadJAJjTtqRkmRF36FoJTrywK9nnFmnPwnSMyxaOCU7GDjN9RTMJIxx9De8ErM+vpPhMccr/6fo5WciyQLnMQ==}
  1486. [email protected]:
  1487. resolution: {integrity: sha512-BYbABe1Ep/u33dHOrK+8SoVU2MuiQqT94JOYsgrge8QbrwkKf2lS6rHW2QyzP6t89wcyBvzZeLQQwfrx76dj9A==}
  1488. peerDependencies:
  1489. '@vueuse/core': '>=10.0.0'
  1490. vue: '>=3.0.0'
  1491. [email protected]:
  1492. resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
  1493. engines: {node: '>=10'}
  1494. [email protected]:
  1495. resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
  1496. [email protected]:
  1497. resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
  1498. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  1499. hasBin: true
  1500. [email protected]:
  1501. resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==}
  1502. [email protected]:
  1503. resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==}
  1504. [email protected]:
  1505. resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
  1506. engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
  1507. hasBin: true
  1508. [email protected]:
  1509. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  1510. engines: {node: '>=0.10.0'}
  1511. [email protected]:
  1512. resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
  1513. engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
  1514. [email protected]:
  1515. resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
  1516. [email protected]:
  1517. resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==}
  1518. [email protected]:
  1519. resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
  1520. [email protected]:
  1521. resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
  1522. engines: {node: '>=12'}
  1523. [email protected]:
  1524. resolution: {integrity: sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g==}
  1525. [email protected]:
  1526. resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
  1527. [email protected]:
  1528. resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==}
  1529. [email protected]:
  1530. resolution: {integrity: sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==}
  1531. [email protected]:
  1532. resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
  1533. [email protected]:
  1534. resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
  1535. engines: {node: '>=8'}
  1536. [email protected]:
  1537. resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
  1538. engines: {node: '>=12'}
  1539. [email protected]:
  1540. resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
  1541. engines: {node: '>=16 || 14 >=14.18'}
  1542. [email protected]:
  1543. resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
  1544. [email protected]:
  1545. resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
  1546. [email protected]:
  1547. resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
  1548. [email protected]:
  1549. resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
  1550. [email protected]:
  1551. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  1552. [email protected]:
  1553. resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
  1554. engines: {node: '>=8.6'}
  1555. [email protected]:
  1556. resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
  1557. engines: {node: '>=12'}
  1558. [email protected]:
  1559. resolution: {integrity: sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==}
  1560. peerDependencies:
  1561. typescript: '>=4.5.0'
  1562. vue: ^3.5.11
  1563. peerDependenciesMeta:
  1564. typescript:
  1565. optional: true
  1566. [email protected]:
  1567. resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
  1568. [email protected]:
  1569. resolution: {integrity: sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg==}
  1570. [email protected]:
  1571. resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
  1572. engines: {node: ^10 || ^12 || >=14}
  1573. [email protected]:
  1574. resolution: {integrity: sha512-96WBLhOaYhJ+kPhLg3uW359Tz6I/MfcrQfL4EGv4SrcqKEMC1gmoGrXHecPE8eOwTVCJ4IwgfzM8fFad25wNfw==}
  1575. [email protected]:
  1576. resolution: {integrity: sha512-rT7qZnQtx5c0/y/KlYaGvtG411S97UaL6gdp6RIZ23DLHanMYLyfGBV5DtSnZdthQql7W+lEVbpSfwtO8T+L2w==}
  1577. [email protected]:
  1578. resolution: {integrity: sha512-CCk6Gyx9+Tt2sbYk5NK0nB1ukHi2ryaRgadV/LvyNuO3ena1payM2z6Cg0vO1ebK8cxbzo41ku2DE5Axj1Zuiw==}
  1579. [email protected]:
  1580. resolution: {integrity: sha512-pMdYaEnjNMSwl11yjEGtgTmLkR08m/Vl+Jj443167p9eB3HVQKhYCc4gmHVDsLPODfZfjr/MmirsdyZziXbQKw==}
  1581. [email protected]:
  1582. resolution: {integrity: sha512-zlzTiH01eKA55UAf1MEjtssJeHnGxO0j4K4Dpx+gnmX9n+SHNlDqI2oO1Kv1iPN5B1dm5fsljCfqKF9nFL6HRg==}
  1583. [email protected]:
  1584. resolution: {integrity: sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw==}
  1585. [email protected]:
  1586. resolution: {integrity: sha512-A79aN8QEFUwI6cax8Yq4Rpcx1TJZ3Kagn+ii7qLo4/V8H3mMiHrhFyhTyHHvpSnOgMPpWiDGSwM3etwrxE50ug==}
  1587. [email protected]:
  1588. resolution: {integrity: sha512-927lFx/uwyQaGwJxLWCZRkjXG0p48KpMj6ueoYiu4JX05GGuGcgzAy62dfiV8eFZftgyBUvLx76RsMe20fJl+Q==}
  1589. [email protected]:
  1590. resolution: {integrity: sha512-6jiYHH2CIGbCfnxdHbXZ12gySFY/fz/ulZE333G6bPqIZ4F+TXo9ifiR86nAHpWnfoNjOb3o5ESi7J8Uz1jXHw==}
  1591. [email protected]:
  1592. resolution: {integrity: sha512-V/0cDCsHKHe/tfWkeCmthNUcEp1IVO3p6vwN8XtwE9PZQLAZJigbw3QoraAdfJPir4NKJtNvOB8oYGKRl+t0Dw==}
  1593. [email protected]:
  1594. resolution: {integrity: sha512-GxboyN4AMIsoHNtz5uf2r2Ru551i5hWeCMD6E2Ib4Eogqoub0NflniaBPVQ4MrGE5yZ8JV9tUHg9qcZTTrcN4w==}
  1595. [email protected]:
  1596. resolution: {integrity: sha512-TnKDdohEatgyZNGCDWIdccOHXhYloJwbwU+phw/a23KBvJIR9lWQWW7WHHK3vBdOLDNuF7TaX98GObUZOWkOnA==}
  1597. [email protected]:
  1598. resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
  1599. [email protected]:
  1600. resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
  1601. engines: {node: '>=6'}
  1602. [email protected]:
  1603. resolution: {integrity: sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==}
  1604. [email protected]:
  1605. resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
  1606. [email protected]:
  1607. resolution: {integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==}
  1608. [email protected]:
  1609. resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
  1610. engines: {node: '>= 20.19.0'}
  1611. [email protected]:
  1612. resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
  1613. hasBin: true
  1614. [email protected]:
  1615. resolution: {integrity: sha512-K6bL457owpvWONc7hsjFxo3HDC9s6IzhRqShW0w9JSKelPGfRbkHD558UQTn/NH1cvrXVHygKyC7fExFmRketg==}
  1616. peerDependencies:
  1617. vue: '>= 3.4.0'
  1618. [email protected]:
  1619. resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
  1620. engines: {node: '>=0.10.0'}
  1621. [email protected]:
  1622. resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
  1623. [email protected]:
  1624. resolution: {integrity: sha512-X0KQHljNnEkWNqqiz9zJrGunh1B0HgOxLXvnFpCOcadzcy5qohZ3tqMEUg00vncoRovXuK3ZqCT9KnnKzoInFQ==}
  1625. engines: {node: ^20.19.0 || >=22.12.0}
  1626. hasBin: true
  1627. [email protected]:
  1628. resolution: {integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==}
  1629. [email protected]:
  1630. resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
  1631. engines: {node: '>=v12.22.7'}
  1632. [email protected]:
  1633. resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
  1634. [email protected]:
  1635. resolution: {integrity: sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==}
  1636. engines: {node: '>=10'}
  1637. hasBin: true
  1638. [email protected]:
  1639. resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
  1640. engines: {node: '>=8'}
  1641. [email protected]:
  1642. resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
  1643. engines: {node: '>=8'}
  1644. [email protected]:
  1645. resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
  1646. [email protected]:
  1647. resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
  1648. engines: {node: '>=14'}
  1649. [email protected]:
  1650. resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
  1651. engines: {node: '>=18'}
  1652. [email protected]:
  1653. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  1654. engines: {node: '>=0.10.0'}
  1655. [email protected]:
  1656. resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
  1657. engines: {node: '>=0.10.0'}
  1658. [email protected]:
  1659. resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
  1660. [email protected]:
  1661. resolution: {integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==}
  1662. [email protected]:
  1663. resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
  1664. engines: {node: '>=8'}
  1665. [email protected]:
  1666. resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
  1667. engines: {node: '>=12'}
  1668. [email protected]:
  1669. resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
  1670. engines: {node: '>=8'}
  1671. [email protected]:
  1672. resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
  1673. engines: {node: '>=12'}
  1674. [email protected]:
  1675. resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
  1676. engines: {node: '>=12'}
  1677. [email protected]:
  1678. resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
  1679. [email protected]:
  1680. resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==}
  1681. engines: {node: '>=16'}
  1682. [email protected]:
  1683. resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
  1684. [email protected]:
  1685. resolution: {integrity: sha512-uxL7qAVQriqRQPAyK3pj66VqskWqoZ37PW94jwOTwNfq/z9oyu1V+eqrZqtR2+fCiXdYOZe/Modt8GtvqNzu+w==}
  1686. [email protected]:
  1687. resolution: {integrity: sha512-Mi4kHeMTLvKlM98XPnK+7HoBPmf4gygdFmqQPaDivc3DpYS6aIY6KiG/PgThrGvii5YZJqRsPz0aPyhoFzmZgg==}
  1688. engines: {node: '>=16.x', pnpm: '>=7.x'}
  1689. peerDependencies:
  1690. tailwind-merge: '>=3.0.0'
  1691. tailwindcss: '*'
  1692. peerDependenciesMeta:
  1693. tailwind-merge:
  1694. optional: true
  1695. [email protected]:
  1696. resolution: {integrity: sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==}
  1697. [email protected]:
  1698. resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
  1699. engines: {node: '>=6'}
  1700. [email protected]:
  1701. resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==}
  1702. [email protected]:
  1703. resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
  1704. [email protected]:
  1705. resolution: {integrity: sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==}
  1706. engines: {node: '>=18'}
  1707. [email protected]:
  1708. resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
  1709. engines: {node: '>=12.0.0'}
  1710. [email protected]:
  1711. resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==}
  1712. engines: {node: '>=14.0.0'}
  1713. [email protected]:
  1714. resolution: {integrity: sha512-uiHN8PIB1VmWyS98eZYja4xzlYqeFZVjb4OuYlJQnZAuJhMw4PbKQOKgHKhBdJR3FE/t5mUQ1Kd80++B+qhD1Q==}
  1715. [email protected]:
  1716. resolution: {integrity: sha512-ELrFxuqsDdHUwoh0XxDbxuLD3Wnz49Z57IFvTtvWy1hJdcMZjXLIuonjilCiWHlT2GbE4Wlv1wKVTzDFnXH1aw==}
  1717. hasBin: true
  1718. [email protected]:
  1719. resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
  1720. engines: {node: '>=6'}
  1721. [email protected]:
  1722. resolution: {integrity: sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==}
  1723. engines: {node: '>=16'}
  1724. [email protected]:
  1725. resolution: {integrity: sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==}
  1726. engines: {node: '>=20'}
  1727. [email protected]:
  1728. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  1729. [email protected]:
  1730. resolution: {integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==}
  1731. [email protected]:
  1732. resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
  1733. engines: {node: '>=14.17'}
  1734. hasBin: true
  1735. [email protected]:
  1736. resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==}
  1737. [email protected]:
  1738. resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
  1739. [email protected]:
  1740. resolution: {integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg==}
  1741. [email protected]:
  1742. resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
  1743. [email protected]:
  1744. resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
  1745. [email protected]:
  1746. resolution: {integrity: sha512-xXnp4kTyor2Zq+J1FfPI6Eq3ew5h6Vl0F/8d9XU5zZQf1tX9s2Su1/3PiMmUANFULpmksxkClamIZcaUqryHsQ==}
  1747. engines: {node: '>=20.18.1'}
  1748. [email protected]:
  1749. resolution: {integrity: sha512-MCt5T90mCWyr3Z6pUCdM9lVRXoMoVBlL7z7U4CYVIiaDiuzad/UCfLuMqz5MeNmpZUgoBCQnrucJimU7EZR+XA==}
  1750. [email protected]:
  1751. resolution: {integrity: sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==}
  1752. [email protected]:
  1753. resolution: {integrity: sha512-njnL6sp8lEA8QQbZrt+52p/g4X0rw3bnGGmUcJnt1jeG8+iiqO779aGz0PirCtydAIVcuTBRlJ52F0u46z309Q==}
  1754. engines: {node: '>=18.12.0'}
  1755. [email protected]:
  1756. resolution: {integrity: sha512-vWuC8SwqJmxZFYwPojhOhOXDb5xFhNNcEVb9K/RFkyk/3VnfaOjzitWN7v+8DEKpMjSsY2AEGXNgt6I0yQrhRQ==}
  1757. engines: {node: '>=20.19.0'}
  1758. peerDependencies:
  1759. '@nuxt/kit': ^4.0.0
  1760. '@vueuse/core': '*'
  1761. peerDependenciesMeta:
  1762. '@nuxt/kit':
  1763. optional: true
  1764. '@vueuse/core':
  1765. optional: true
  1766. [email protected]:
  1767. resolution: {integrity: sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==}
  1768. engines: {node: '>=20.19.0'}
  1769. [email protected]:
  1770. resolution: {integrity: sha512-YiUkSxuRjab18XFOrX5VsIxXzccrfmHVGsGeJgSgklb829DQmCy9E4vvDUE4tuvZZdxyFJZX0Oc4TPnnxiiMyg==}
  1771. engines: {node: '>=20.19.0'}
  1772. peerDependencies:
  1773. '@nuxt/kit': ^3.2.2 || ^4.0.0
  1774. vue: ^3.0.0
  1775. peerDependenciesMeta:
  1776. '@nuxt/kit':
  1777. optional: true
  1778. [email protected]:
  1779. resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
  1780. engines: {node: '>=18.12.0'}
  1781. [email protected]:
  1782. resolution: {integrity: sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==}
  1783. engines: {node: ^20.19.0 || >=22.12.0}
  1784. [email protected]:
  1785. resolution: {integrity: sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==}
  1786. peerDependencies:
  1787. '@azure/app-configuration': ^1.8.0
  1788. '@azure/cosmos': ^4.2.0
  1789. '@azure/data-tables': ^13.3.0
  1790. '@azure/identity': ^4.6.0
  1791. '@azure/keyvault-secrets': ^4.9.0
  1792. '@azure/storage-blob': ^12.26.0
  1793. '@capacitor/preferences': ^6 || ^7 || ^8
  1794. '@deno/kv': '>=0.9.0'
  1795. '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0
  1796. '@planetscale/database': ^1.19.0
  1797. '@upstash/redis': ^1.34.3
  1798. '@vercel/blob': '>=0.27.1'
  1799. '@vercel/functions': ^2.2.12 || ^3.0.0
  1800. '@vercel/kv': ^1 || ^2 || ^3
  1801. aws4fetch: ^1.0.20
  1802. db0: '>=0.2.1'
  1803. idb-keyval: ^6.2.1
  1804. ioredis: ^5.4.2
  1805. uploadthing: ^7.4.4
  1806. peerDependenciesMeta:
  1807. '@azure/app-configuration':
  1808. optional: true
  1809. '@azure/cosmos':
  1810. optional: true
  1811. '@azure/data-tables':
  1812. optional: true
  1813. '@azure/identity':
  1814. optional: true
  1815. '@azure/keyvault-secrets':
  1816. optional: true
  1817. '@azure/storage-blob':
  1818. optional: true
  1819. '@capacitor/preferences':
  1820. optional: true
  1821. '@deno/kv':
  1822. optional: true
  1823. '@netlify/blobs':
  1824. optional: true
  1825. '@planetscale/database':
  1826. optional: true
  1827. '@upstash/redis':
  1828. optional: true
  1829. '@vercel/blob':
  1830. optional: true
  1831. '@vercel/functions':
  1832. optional: true
  1833. '@vercel/kv':
  1834. optional: true
  1835. aws4fetch:
  1836. optional: true
  1837. db0:
  1838. optional: true
  1839. idb-keyval:
  1840. optional: true
  1841. ioredis:
  1842. optional: true
  1843. uploadthing:
  1844. optional: true
  1845. [email protected]:
  1846. resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==}
  1847. hasBin: true
  1848. [email protected]:
  1849. resolution: {integrity: sha512-A6jOWOZX5yvyo1qMn7IveoWN91mJI5L3BUKsIwkg6qrTGgHs1Sb1JF/vyLJgnbN1rH4OOOxFbtqL9A46bOyGUQ==}
  1850. peerDependencies:
  1851. reka-ui: ^2.0.0
  1852. vue: ^3.3.0
  1853. [email protected]:
  1854. resolution: {integrity: sha512-MFtjBYgzmSxmgA4RAfjIyXWpGe1oALnjgUTzzV7QLx/TKxCzjtMH6Fd9/eVK+5Fg1qNoz5VAwsmMs/NofrmJvw==}
  1855. engines: {node: ^20.19.0 || >=22.12.0}
  1856. hasBin: true
  1857. peerDependencies:
  1858. '@types/node': ^20.19.0 || >=22.12.0
  1859. '@vitejs/devtools': ^0.1.18
  1860. esbuild: ^0.27.0 || ^0.28.0
  1861. jiti: '>=1.21.0'
  1862. less: ^4.0.0
  1863. sass: ^1.70.0
  1864. sass-embedded: ^1.70.0
  1865. stylus: '>=0.54.8'
  1866. sugarss: ^5.0.0
  1867. terser: ^5.16.0
  1868. tsx: ^4.8.1
  1869. yaml: ^2.4.2
  1870. peerDependenciesMeta:
  1871. '@types/node':
  1872. optional: true
  1873. '@vitejs/devtools':
  1874. optional: true
  1875. esbuild:
  1876. optional: true
  1877. jiti:
  1878. optional: true
  1879. less:
  1880. optional: true
  1881. sass:
  1882. optional: true
  1883. sass-embedded:
  1884. optional: true
  1885. stylus:
  1886. optional: true
  1887. sugarss:
  1888. optional: true
  1889. terser:
  1890. optional: true
  1891. tsx:
  1892. optional: true
  1893. yaml:
  1894. optional: true
  1895. [email protected]:
  1896. resolution: {integrity: sha512-flYyaFd2CgoCoU+0UKt3pxksgC+S02iTDN0n3LtqaMeXsI9SBcdNujc2k0DeFLzUn/0k538yNjOSdwgCqcrwJA==}
  1897. engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
  1898. hasBin: true
  1899. peerDependencies:
  1900. '@edge-runtime/vm': '*'
  1901. '@opentelemetry/api': ^1.9.0
  1902. '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
  1903. '@vitest/browser-playwright': 4.1.7
  1904. '@vitest/browser-preview': 4.1.7
  1905. '@vitest/browser-webdriverio': 4.1.7
  1906. '@vitest/coverage-istanbul': 4.1.7
  1907. '@vitest/coverage-v8': 4.1.7
  1908. '@vitest/ui': 4.1.7
  1909. happy-dom: '*'
  1910. jsdom: '*'
  1911. vite: ^6.0.0 || ^7.0.0 || ^8.0.0
  1912. peerDependenciesMeta:
  1913. '@edge-runtime/vm':
  1914. optional: true
  1915. '@opentelemetry/api':
  1916. optional: true
  1917. '@types/node':
  1918. optional: true
  1919. '@vitest/browser-playwright':
  1920. optional: true
  1921. '@vitest/browser-preview':
  1922. optional: true
  1923. '@vitest/browser-webdriverio':
  1924. optional: true
  1925. '@vitest/coverage-istanbul':
  1926. optional: true
  1927. '@vitest/coverage-v8':
  1928. optional: true
  1929. '@vitest/ui':
  1930. optional: true
  1931. happy-dom:
  1932. optional: true
  1933. jsdom:
  1934. optional: true
  1935. [email protected]:
  1936. resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
  1937. [email protected]:
  1938. resolution: {integrity: sha512-pu58kqxmVyEH6VfNYW1UyEfR3XAnJ27ZXT3yzXxxpjLxVzAbyC35Zk/nm/RMs7ijWnJNSd9fWkeex2OhUsx3MA==}
  1939. [email protected]:
  1940. resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
  1941. engines: {node: '>=12'}
  1942. hasBin: true
  1943. peerDependencies:
  1944. '@vue/composition-api': ^1.0.0-rc.1
  1945. vue: ^3.0.0-0 || ^2.6.0
  1946. peerDependenciesMeta:
  1947. '@vue/composition-api':
  1948. optional: true
  1949. [email protected]:
  1950. resolution: {integrity: sha512-dqfk8kvRbCutmCOCj/XLDqDEYxc1wBdAOGLuVy5M93ifYMsBd5fIjfaPN4tQAbxr5IprdBDIox1gr4wYyOx/SA==}
  1951. peerDependencies:
  1952. '@pinia/colada': '>=0.21.2'
  1953. '@vue/compiler-sfc': ^3.5.34
  1954. pinia: ^3.0.4
  1955. vue: ^3.5.34
  1956. peerDependenciesMeta:
  1957. '@pinia/colada':
  1958. optional: true
  1959. '@vue/compiler-sfc':
  1960. optional: true
  1961. pinia:
  1962. optional: true
  1963. [email protected]:
  1964. resolution: {integrity: sha512-webBP3jhlxzhELZ2g+11KJ6pg5OVY1xWhWrj7N/yQMi1CrtxJnW+tUACyRVeDK0cQNLP2Va5HNYK8pe+7c+msw==}
  1965. hasBin: true
  1966. peerDependencies:
  1967. typescript: '>=5.0.0'
  1968. [email protected]:
  1969. resolution: {integrity: sha512-WdLBG9gm02OgJIG9axd5Hpx0TFLdzVgfG2evFFu8Rur5O/IoGc5cMjnjh3tPL6GnRGsYvUhBSKVPYVcxRKpMCA==}
  1970. peerDependencies:
  1971. typescript: '*'
  1972. peerDependenciesMeta:
  1973. typescript:
  1974. optional: true
  1975. [email protected]:
  1976. resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
  1977. [email protected]:
  1978. resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
  1979. engines: {node: '>=18'}
  1980. [email protected]:
  1981. resolution: {integrity: sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==}
  1982. engines: {node: '>=20'}
  1983. [email protected]:
  1984. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  1985. [email protected]:
  1986. resolution: {integrity: sha512-sXcNcHOC51uPGF0P/D4NVtrkjSU2fNsm9iog4ZvZJsL3rjoDAzXZhkm2MWt1y+PUdggKAYVoMAIYcs78wJ51Cw==}
  1987. engines: {node: '>=20'}
  1988. [email protected]:
  1989. resolution: {integrity: sha512-1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw==}
  1990. engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
  1991. [email protected]:
  1992. resolution: {integrity: sha512-f+Gy33Oa5Z14XY9679Zze+7VFhbsQfBFXodnU2x589l4kxGM9L5Y8zETTmcMR5pWOPQyRv4Z0lNax6xCO0NSlA==}
  1993. engines: {node: '>=18'}
  1994. [email protected]:
  1995. resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
  1996. engines: {node: '>= 8'}
  1997. hasBin: true
  1998. [email protected]:
  1999. resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
  2000. engines: {node: '>=8'}
  2001. hasBin: true
  2002. [email protected]:
  2003. resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
  2004. engines: {node: '>=10'}
  2005. [email protected]:
  2006. resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
  2007. engines: {node: '>=12'}
  2008. [email protected]:
  2009. resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
  2010. engines: {node: '>=18'}
  2011. [email protected]:
  2012. resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
  2013. [email protected]:
  2014. resolution: {integrity: sha512-YSVsLoXxO67J6eE/nV4AtFtT3QEotZf5sK5BHxFBXso7VDUT3Tx07IfA6hsu5Q5OmBdMkQVmFZ9QOA7fikWvnw==}
  2015. engines: {node: '>=16.0.0', npm: '>=8.0.0'}
  2016. peerDependencies:
  2017. yjs: ^13.0.0
  2018. [email protected]:
  2019. resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==}
  2020. engines: {node: '>= 14.6'}
  2021. hasBin: true
  2022. [email protected]:
  2023. resolution: {integrity: sha512-vv/9h42eCMC81ZHDFswuu/MKzkl/vyq1BhaNGfHyOonwlG4CJbQF4oiBBJPvfdeCt/PlVDWh7Nov9D34YY09uQ==}
  2024. engines: {node: '>=16.0.0', npm: '>=8.0.0'}
  2025. snapshots:
  2026. '@alloc/[email protected]': {}
  2027. '@antfu/[email protected]':
  2028. dependencies:
  2029. package-manager-detector: 1.6.0
  2030. tinyexec: 1.1.2
  2031. '@asamuzakjp/[email protected]':
  2032. dependencies:
  2033. '@asamuzakjp/generational-cache': 1.0.1
  2034. '@csstools/css-calc': 3.2.1(@csstools/[email protected](@csstools/[email protected]))(@csstools/[email protected])
  2035. '@csstools/css-color-parser': 4.1.1(@csstools/[email protected](@csstools/[email protected]))(@csstools/[email protected])
  2036. '@csstools/css-parser-algorithms': 4.0.0(@csstools/[email protected])
  2037. '@csstools/css-tokenizer': 4.0.0
  2038. '@asamuzakjp/[email protected]':
  2039. dependencies:
  2040. '@asamuzakjp/generational-cache': 1.0.1
  2041. '@asamuzakjp/nwsapi': 2.3.9
  2042. bidi-js: 1.0.3
  2043. css-tree: 3.2.1
  2044. is-potential-custom-element-name: 1.0.1
  2045. '@asamuzakjp/[email protected]': {}
  2046. '@asamuzakjp/[email protected]': {}
  2047. '@babel/[email protected]':
  2048. dependencies:
  2049. '@babel/parser': 8.0.0-rc.5
  2050. '@babel/types': 8.0.0-rc.5
  2051. '@jridgewell/gen-mapping': 0.3.13
  2052. '@jridgewell/trace-mapping': 0.3.31
  2053. '@types/jsesc': 2.5.1
  2054. jsesc: 3.1.0
  2055. '@babel/[email protected]': {}
  2056. '@babel/[email protected]': {}
  2057. '@babel/[email protected]': {}
  2058. '@babel/[email protected]': {}
  2059. '@babel/[email protected]':
  2060. dependencies:
  2061. '@babel/types': 7.29.0
  2062. '@babel/[email protected]':
  2063. dependencies:
  2064. '@babel/types': 8.0.0-rc.5
  2065. '@babel/[email protected]':
  2066. dependencies:
  2067. '@babel/helper-string-parser': 7.27.1
  2068. '@babel/helper-validator-identifier': 7.28.5
  2069. '@babel/[email protected]':
  2070. dependencies:
  2071. '@babel/helper-string-parser': 8.0.0-rc.5
  2072. '@babel/helper-validator-identifier': 8.0.0-rc.5
  2073. '@biomejs/[email protected]':
  2074. optionalDependencies:
  2075. '@biomejs/cli-darwin-arm64': 2.4.15
  2076. '@biomejs/cli-darwin-x64': 2.4.15
  2077. '@biomejs/cli-linux-arm64': 2.4.15
  2078. '@biomejs/cli-linux-arm64-musl': 2.4.15
  2079. '@biomejs/cli-linux-x64': 2.4.15
  2080. '@biomejs/cli-linux-x64-musl': 2.4.15
  2081. '@biomejs/cli-win32-arm64': 2.4.15
  2082. '@biomejs/cli-win32-x64': 2.4.15
  2083. '@biomejs/[email protected]':
  2084. optional: true
  2085. '@biomejs/[email protected]':
  2086. optional: true
  2087. '@biomejs/[email protected]':
  2088. optional: true
  2089. '@biomejs/[email protected]':
  2090. optional: true
  2091. '@biomejs/[email protected]':
  2092. optional: true
  2093. '@biomejs/[email protected]':
  2094. optional: true
  2095. '@biomejs/[email protected]':
  2096. optional: true
  2097. '@biomejs/[email protected]':
  2098. optional: true
  2099. '@bramus/[email protected]':
  2100. dependencies:
  2101. css-tree: 3.2.1
  2102. '@capsizecss/[email protected]':
  2103. dependencies:
  2104. fontkitten: 1.0.3
  2105. '@csstools/[email protected]': {}
  2106. '@csstools/[email protected](@csstools/[email protected](@csstools/[email protected]))(@csstools/[email protected])':
  2107. dependencies:
  2108. '@csstools/css-parser-algorithms': 4.0.0(@csstools/[email protected])
  2109. '@csstools/css-tokenizer': 4.0.0
  2110. '@csstools/[email protected](@csstools/[email protected](@csstools/[email protected]))(@csstools/[email protected])':
  2111. dependencies:
  2112. '@csstools/color-helpers': 6.0.2
  2113. '@csstools/css-calc': 3.2.1(@csstools/[email protected](@csstools/[email protected]))(@csstools/[email protected])
  2114. '@csstools/css-parser-algorithms': 4.0.0(@csstools/[email protected])
  2115. '@csstools/css-tokenizer': 4.0.0
  2116. '@csstools/[email protected](@csstools/[email protected])':
  2117. dependencies:
  2118. '@csstools/css-tokenizer': 4.0.0
  2119. '@csstools/[email protected]([email protected])':
  2120. optionalDependencies:
  2121. css-tree: 3.2.1
  2122. '@csstools/[email protected]': {}
  2123. '@emnapi/[email protected]':
  2124. dependencies:
  2125. '@emnapi/wasi-threads': 1.2.1
  2126. tslib: 2.8.1
  2127. optional: true
  2128. '@emnapi/[email protected]':
  2129. dependencies:
  2130. tslib: 2.8.1
  2131. optional: true
  2132. '@emnapi/[email protected]':
  2133. dependencies:
  2134. tslib: 2.8.1
  2135. optional: true
  2136. '@esbuild/[email protected]':
  2137. optional: true
  2138. '@esbuild/[email protected]':
  2139. optional: true
  2140. '@esbuild/[email protected]':
  2141. optional: true
  2142. '@esbuild/[email protected]':
  2143. optional: true
  2144. '@esbuild/[email protected]':
  2145. optional: true
  2146. '@esbuild/[email protected]':
  2147. optional: true
  2148. '@esbuild/[email protected]':
  2149. optional: true
  2150. '@esbuild/[email protected]':
  2151. optional: true
  2152. '@esbuild/[email protected]':
  2153. optional: true
  2154. '@esbuild/[email protected]':
  2155. optional: true
  2156. '@esbuild/[email protected]':
  2157. optional: true
  2158. '@esbuild/[email protected]':
  2159. optional: true
  2160. '@esbuild/[email protected]':
  2161. optional: true
  2162. '@esbuild/[email protected]':
  2163. optional: true
  2164. '@esbuild/[email protected]':
  2165. optional: true
  2166. '@esbuild/[email protected]':
  2167. optional: true
  2168. '@esbuild/[email protected]':
  2169. optional: true
  2170. '@esbuild/[email protected]':
  2171. optional: true
  2172. '@esbuild/[email protected]':
  2173. optional: true
  2174. '@esbuild/[email protected]':
  2175. optional: true
  2176. '@esbuild/[email protected]':
  2177. optional: true
  2178. '@esbuild/[email protected]':
  2179. optional: true
  2180. '@esbuild/[email protected]':
  2181. optional: true
  2182. '@esbuild/[email protected]':
  2183. optional: true
  2184. '@esbuild/[email protected]':
  2185. optional: true
  2186. '@esbuild/[email protected]':
  2187. optional: true
  2188. '@exodus/[email protected]': {}
  2189. '@floating-ui/[email protected]':
  2190. dependencies:
  2191. '@floating-ui/utils': 0.2.11
  2192. '@floating-ui/[email protected]':
  2193. dependencies:
  2194. '@floating-ui/core': 1.7.5
  2195. '@floating-ui/utils': 0.2.11
  2196. '@floating-ui/[email protected]': {}
  2197. '@floating-ui/[email protected]([email protected]([email protected]))':
  2198. dependencies:
  2199. '@floating-ui/dom': 1.7.6
  2200. '@floating-ui/utils': 0.2.11
  2201. vue-demi: 0.14.10([email protected]([email protected]))
  2202. transitivePeerDependencies:
  2203. - '@vue/composition-api'
  2204. - vue
  2205. '@iconify-json/[email protected]':
  2206. dependencies:
  2207. '@iconify/types': 2.0.0
  2208. '@iconify-json/[email protected]':
  2209. dependencies:
  2210. '@iconify/types': 2.0.0
  2211. '@iconify/[email protected]':
  2212. dependencies:
  2213. '@iconify/types': 2.0.0
  2214. '@iconify/[email protected]': {}
  2215. '@iconify/[email protected]':
  2216. dependencies:
  2217. '@antfu/install-pkg': 1.1.0
  2218. '@iconify/types': 2.0.0
  2219. import-meta-resolve: 4.2.0
  2220. '@iconify/[email protected]([email protected]([email protected]))':
  2221. dependencies:
  2222. '@iconify/types': 2.0.0
  2223. vue: 3.5.34([email protected])
  2224. '@internationalized/[email protected]':
  2225. dependencies:
  2226. '@swc/helpers': 0.5.21
  2227. '@internationalized/[email protected]':
  2228. dependencies:
  2229. '@swc/helpers': 0.5.21
  2230. '@isaacs/[email protected]':
  2231. dependencies:
  2232. string-width: 5.1.2
  2233. string-width-cjs: [email protected]
  2234. strip-ansi: 7.2.0
  2235. strip-ansi-cjs: [email protected]
  2236. wrap-ansi: 8.1.0
  2237. wrap-ansi-cjs: [email protected]
  2238. '@jridgewell/[email protected]':
  2239. dependencies:
  2240. '@jridgewell/sourcemap-codec': 1.5.5
  2241. '@jridgewell/trace-mapping': 0.3.31
  2242. '@jridgewell/[email protected]':
  2243. dependencies:
  2244. '@jridgewell/gen-mapping': 0.3.13
  2245. '@jridgewell/trace-mapping': 0.3.31
  2246. '@jridgewell/[email protected]': {}
  2247. '@jridgewell/[email protected]': {}
  2248. '@jridgewell/[email protected]':
  2249. dependencies:
  2250. '@jridgewell/resolve-uri': 3.1.2
  2251. '@jridgewell/sourcemap-codec': 1.5.5
  2252. '@lezer/[email protected]': {}
  2253. '@lezer/[email protected]':
  2254. dependencies:
  2255. '@lezer/common': 1.5.2
  2256. '@lezer/[email protected]':
  2257. dependencies:
  2258. '@lezer/common': 1.5.2
  2259. '@lezer/highlight': 1.2.3
  2260. '@napi-rs/[email protected](@emnapi/[email protected])(@emnapi/[email protected])':
  2261. dependencies:
  2262. '@emnapi/core': 1.10.0
  2263. '@emnapi/runtime': 1.10.0
  2264. '@tybys/wasm-util': 0.10.2
  2265. optional: true
  2266. '@nuxt/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))':
  2267. dependencies:
  2268. '@nuxt/kit': 4.4.6
  2269. execa: 8.0.1
  2270. vite: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  2271. transitivePeerDependencies:
  2272. - magicast
  2273. '@nuxt/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))':
  2274. dependencies:
  2275. '@nuxt/kit': 4.4.6
  2276. execa: 8.0.1
  2277. vite: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  2278. transitivePeerDependencies:
  2279. - magicast
  2280. '@nuxt/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))':
  2281. dependencies:
  2282. '@nuxt/devtools-kit': 3.2.4([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  2283. '@nuxt/kit': 4.4.6
  2284. consola: 3.4.2
  2285. defu: 6.1.7
  2286. fontless: 0.2.1([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  2287. h3: 1.15.11
  2288. magic-regexp: 0.10.0
  2289. ofetch: 1.5.1
  2290. pathe: 2.0.3
  2291. sirv: 3.0.2
  2292. tinyglobby: 0.2.16
  2293. ufo: 1.6.4
  2294. unifont: 0.7.4
  2295. unplugin: 3.0.0
  2296. unstorage: 1.17.5
  2297. transitivePeerDependencies:
  2298. - '@azure/app-configuration'
  2299. - '@azure/cosmos'
  2300. - '@azure/data-tables'
  2301. - '@azure/identity'
  2302. - '@azure/keyvault-secrets'
  2303. - '@azure/storage-blob'
  2304. - '@capacitor/preferences'
  2305. - '@deno/kv'
  2306. - '@netlify/blobs'
  2307. - '@planetscale/database'
  2308. - '@upstash/redis'
  2309. - '@vercel/blob'
  2310. - '@vercel/functions'
  2311. - '@vercel/kv'
  2312. - aws4fetch
  2313. - db0
  2314. - idb-keyval
  2315. - ioredis
  2316. - magicast
  2317. - uploadthing
  2318. - vite
  2319. '@nuxt/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))':
  2320. dependencies:
  2321. '@nuxt/devtools-kit': 3.2.4([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  2322. '@nuxt/kit': 4.4.6
  2323. consola: 3.4.2
  2324. defu: 6.1.7
  2325. fontless: 0.2.1([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  2326. h3: 1.15.11
  2327. magic-regexp: 0.10.0
  2328. ofetch: 1.5.1
  2329. pathe: 2.0.3
  2330. sirv: 3.0.2
  2331. tinyglobby: 0.2.16
  2332. ufo: 1.6.4
  2333. unifont: 0.7.4
  2334. unplugin: 3.0.0
  2335. unstorage: 1.17.5
  2336. transitivePeerDependencies:
  2337. - '@azure/app-configuration'
  2338. - '@azure/cosmos'
  2339. - '@azure/data-tables'
  2340. - '@azure/identity'
  2341. - '@azure/keyvault-secrets'
  2342. - '@azure/storage-blob'
  2343. - '@capacitor/preferences'
  2344. - '@deno/kv'
  2345. - '@netlify/blobs'
  2346. - '@planetscale/database'
  2347. - '@upstash/redis'
  2348. - '@vercel/blob'
  2349. - '@vercel/functions'
  2350. - '@vercel/kv'
  2351. - aws4fetch
  2352. - db0
  2353. - idb-keyval
  2354. - ioredis
  2355. - magicast
  2356. - uploadthing
  2357. - vite
  2358. '@nuxt/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]([email protected]))':
  2359. dependencies:
  2360. '@iconify/collections': 1.0.686
  2361. '@iconify/types': 2.0.0
  2362. '@iconify/utils': 3.1.3
  2363. '@iconify/vue': 5.0.1([email protected]([email protected]))
  2364. '@nuxt/devtools-kit': 3.2.4([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  2365. '@nuxt/kit': 4.4.6
  2366. consola: 3.4.2
  2367. local-pkg: 1.2.0
  2368. mlly: 1.8.2
  2369. ohash: 2.0.11
  2370. pathe: 2.0.3
  2371. picomatch: 4.0.4
  2372. std-env: 4.1.0
  2373. tinyglobby: 0.2.16
  2374. transitivePeerDependencies:
  2375. - magicast
  2376. - vite
  2377. - vue
  2378. '@nuxt/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]([email protected]))':
  2379. dependencies:
  2380. '@iconify/collections': 1.0.686
  2381. '@iconify/types': 2.0.0
  2382. '@iconify/utils': 3.1.3
  2383. '@iconify/vue': 5.0.1([email protected]([email protected]))
  2384. '@nuxt/devtools-kit': 3.2.4([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  2385. '@nuxt/kit': 4.4.6
  2386. consola: 3.4.2
  2387. local-pkg: 1.2.0
  2388. mlly: 1.8.2
  2389. ohash: 2.0.11
  2390. pathe: 2.0.3
  2391. picomatch: 4.0.4
  2392. std-env: 4.1.0
  2393. tinyglobby: 0.2.16
  2394. transitivePeerDependencies:
  2395. - magicast
  2396. - vite
  2397. - vue
  2398. '@nuxt/[email protected]':
  2399. dependencies:
  2400. c12: 3.3.4
  2401. consola: 3.4.2
  2402. defu: 6.1.7
  2403. destr: 2.0.5
  2404. errx: 0.1.0
  2405. exsolve: 1.0.8
  2406. ignore: 7.0.5
  2407. jiti: 2.7.0
  2408. klona: 2.0.6
  2409. knitwork: 1.3.0
  2410. mlly: 1.8.2
  2411. ohash: 2.0.11
  2412. pathe: 2.0.3
  2413. pkg-types: 2.3.1
  2414. rc9: 3.0.1
  2415. scule: 1.3.0
  2416. semver: 7.8.0
  2417. tinyglobby: 0.2.16
  2418. ufo: 1.6.4
  2419. unctx: 2.5.0
  2420. untyped: 2.0.0
  2421. transitivePeerDependencies:
  2422. - magicast
  2423. '@nuxt/[email protected]':
  2424. dependencies:
  2425. c12: 3.3.4
  2426. consola: 3.4.2
  2427. defu: 6.1.7
  2428. destr: 2.0.5
  2429. errx: 0.1.0
  2430. exsolve: 1.0.8
  2431. ignore: 7.0.5
  2432. jiti: 2.7.0
  2433. klona: 2.0.6
  2434. mlly: 1.8.2
  2435. ohash: 2.0.11
  2436. pathe: 2.0.3
  2437. pkg-types: 2.3.1
  2438. rc9: 3.0.1
  2439. scule: 1.3.0
  2440. semver: 7.8.0
  2441. tinyglobby: 0.2.16
  2442. ufo: 1.6.4
  2443. unctx: 2.5.0
  2444. untyped: 2.0.0
  2445. transitivePeerDependencies:
  2446. - magicast
  2447. '@nuxt/[email protected]':
  2448. dependencies:
  2449. '@vue/shared': 3.5.34
  2450. defu: 6.1.7
  2451. pathe: 2.0.3
  2452. pkg-types: 2.3.1
  2453. std-env: 4.1.0
  2454. '@nuxt/[email protected](@internationalized/[email protected])(@internationalized/[email protected])(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected])([email protected])([email protected])([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected](@vue/[email protected])([email protected]([email protected])([email protected]([email protected])))([email protected]([email protected])))([email protected]([email protected]))([email protected])':
  2455. dependencies:
  2456. '@floating-ui/dom': 1.7.6
  2457. '@iconify/vue': 5.0.1([email protected]([email protected]))
  2458. '@nuxt/fonts': 0.14.0([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  2459. '@nuxt/icon': 2.2.2([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]([email protected]))
  2460. '@nuxt/kit': 4.4.6
  2461. '@nuxt/schema': 4.4.6
  2462. '@nuxtjs/color-mode': 3.5.2
  2463. '@standard-schema/spec': 1.1.0
  2464. '@tailwindcss/postcss': 4.3.0
  2465. '@tailwindcss/vite': 4.3.0([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  2466. '@tanstack/vue-table': 8.21.3([email protected]([email protected]))
  2467. '@tanstack/vue-virtual': 3.13.24([email protected]([email protected]))
  2468. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2469. '@tiptap/extension-bubble-menu': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2470. '@tiptap/extension-code': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2471. '@tiptap/extension-collaboration': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected])
  2472. '@tiptap/extension-drag-handle': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))
  2473. '@tiptap/extension-drag-handle-vue-3': 3.23.5(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected])))(@tiptap/[email protected])(@tiptap/[email protected](@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])([email protected]([email protected])))([email protected]([email protected]))
  2474. '@tiptap/extension-floating-menu': 3.23.5(@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2475. '@tiptap/extension-horizontal-rule': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2476. '@tiptap/extension-image': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2477. '@tiptap/extension-mention': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))
  2478. '@tiptap/extension-node-range': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2479. '@tiptap/extension-placeholder': 3.23.5(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))
  2480. '@tiptap/markdown': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2481. '@tiptap/pm': 3.23.5
  2482. '@tiptap/starter-kit': 3.23.5
  2483. '@tiptap/suggestion': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2484. '@tiptap/vue-3': 3.23.5(@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])([email protected]([email protected]))
  2485. '@unhead/vue': 2.1.15([email protected]([email protected]))
  2486. '@vueuse/core': 14.3.0([email protected]([email protected]))
  2487. '@vueuse/integrations': 14.3.0([email protected])([email protected]([email protected]))
  2488. '@vueuse/shared': 14.3.0([email protected]([email protected]))
  2489. colortranslator: 5.0.0
  2490. consola: 3.4.2
  2491. defu: 6.1.7
  2492. embla-carousel-auto-height: 8.6.0([email protected])
  2493. embla-carousel-auto-scroll: 8.6.0([email protected])
  2494. embla-carousel-autoplay: 8.6.0([email protected])
  2495. embla-carousel-class-names: 8.6.0([email protected])
  2496. embla-carousel-fade: 8.6.0([email protected])
  2497. embla-carousel-vue: 8.6.0([email protected]([email protected]))
  2498. embla-carousel-wheel-gestures: 8.1.0([email protected])
  2499. fuse.js: 7.3.0
  2500. hookable: 6.1.1
  2501. knitwork: 1.3.0
  2502. magic-string: 0.30.21
  2503. mlly: 1.8.2
  2504. motion-v: 2.2.1(@vueuse/[email protected]([email protected]([email protected])))([email protected]([email protected]))
  2505. ohash: 2.0.11
  2506. pathe: 2.0.3
  2507. reka-ui: 2.9.6([email protected]([email protected]))
  2508. scule: 1.3.0
  2509. tailwind-merge: 3.6.0
  2510. tailwind-variants: 3.2.2([email protected])([email protected])
  2511. tailwindcss: 4.3.0
  2512. tinyglobby: 0.2.16
  2513. typescript: 6.0.3
  2514. ufo: 1.6.4
  2515. unplugin: 3.0.0
  2516. unplugin-auto-import: 21.0.0(@nuxt/[email protected])(@vueuse/[email protected]([email protected]([email protected])))
  2517. unplugin-vue-components: 32.1.0(@nuxt/[email protected])([email protected]([email protected]))
  2518. vaul-vue: 0.4.1([email protected]([email protected]([email protected])))([email protected]([email protected]))
  2519. vue-component-type-helpers: 3.3.1
  2520. optionalDependencies:
  2521. '@internationalized/date': 3.12.1
  2522. '@internationalized/number': 3.6.6
  2523. vue-router: 5.0.7(@vue/[email protected])([email protected]([email protected])([email protected]([email protected])))([email protected]([email protected]))
  2524. transitivePeerDependencies:
  2525. - '@azure/app-configuration'
  2526. - '@azure/cosmos'
  2527. - '@azure/data-tables'
  2528. - '@azure/identity'
  2529. - '@azure/keyvault-secrets'
  2530. - '@azure/storage-blob'
  2531. - '@capacitor/preferences'
  2532. - '@deno/kv'
  2533. - '@emotion/is-prop-valid'
  2534. - '@netlify/blobs'
  2535. - '@planetscale/database'
  2536. - '@tiptap/extensions'
  2537. - '@tiptap/y-tiptap'
  2538. - '@upstash/redis'
  2539. - '@vercel/blob'
  2540. - '@vercel/functions'
  2541. - '@vercel/kv'
  2542. - '@vue/composition-api'
  2543. - async-validator
  2544. - aws4fetch
  2545. - axios
  2546. - change-case
  2547. - db0
  2548. - drauu
  2549. - embla-carousel
  2550. - focus-trap
  2551. - idb-keyval
  2552. - ioredis
  2553. - jwt-decode
  2554. - magicast
  2555. - nprogress
  2556. - qrcode
  2557. - react
  2558. - react-dom
  2559. - sortablejs
  2560. - universal-cookie
  2561. - uploadthing
  2562. - vite
  2563. - vue
  2564. - yjs
  2565. '@nuxt/[email protected](@internationalized/[email protected])(@internationalized/[email protected])(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected])([email protected])([email protected])([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected](@vue/[email protected])([email protected]([email protected])([email protected]([email protected])))([email protected]([email protected])))([email protected]([email protected]))([email protected])':
  2566. dependencies:
  2567. '@floating-ui/dom': 1.7.6
  2568. '@iconify/vue': 5.0.1([email protected]([email protected]))
  2569. '@nuxt/fonts': 0.14.0([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  2570. '@nuxt/icon': 2.2.2([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]([email protected]))
  2571. '@nuxt/kit': 4.4.6
  2572. '@nuxt/schema': 4.4.6
  2573. '@nuxtjs/color-mode': 3.5.2
  2574. '@standard-schema/spec': 1.1.0
  2575. '@tailwindcss/postcss': 4.3.0
  2576. '@tailwindcss/vite': 4.3.0([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  2577. '@tanstack/vue-table': 8.21.3([email protected]([email protected]))
  2578. '@tanstack/vue-virtual': 3.13.24([email protected]([email protected]))
  2579. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2580. '@tiptap/extension-bubble-menu': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2581. '@tiptap/extension-code': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2582. '@tiptap/extension-collaboration': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected])
  2583. '@tiptap/extension-drag-handle': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))
  2584. '@tiptap/extension-drag-handle-vue-3': 3.23.5(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected])))(@tiptap/[email protected])(@tiptap/[email protected](@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])([email protected]([email protected])))([email protected]([email protected]))
  2585. '@tiptap/extension-floating-menu': 3.23.5(@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2586. '@tiptap/extension-horizontal-rule': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2587. '@tiptap/extension-image': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2588. '@tiptap/extension-mention': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))
  2589. '@tiptap/extension-node-range': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2590. '@tiptap/extension-placeholder': 3.23.5(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))
  2591. '@tiptap/markdown': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2592. '@tiptap/pm': 3.23.5
  2593. '@tiptap/starter-kit': 3.23.5
  2594. '@tiptap/suggestion': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2595. '@tiptap/vue-3': 3.23.5(@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])([email protected]([email protected]))
  2596. '@unhead/vue': 2.1.15([email protected]([email protected]))
  2597. '@vueuse/core': 14.3.0([email protected]([email protected]))
  2598. '@vueuse/integrations': 14.3.0([email protected])([email protected]([email protected]))
  2599. '@vueuse/shared': 14.3.0([email protected]([email protected]))
  2600. colortranslator: 5.0.0
  2601. consola: 3.4.2
  2602. defu: 6.1.7
  2603. embla-carousel-auto-height: 8.6.0([email protected])
  2604. embla-carousel-auto-scroll: 8.6.0([email protected])
  2605. embla-carousel-autoplay: 8.6.0([email protected])
  2606. embla-carousel-class-names: 8.6.0([email protected])
  2607. embla-carousel-fade: 8.6.0([email protected])
  2608. embla-carousel-vue: 8.6.0([email protected]([email protected]))
  2609. embla-carousel-wheel-gestures: 8.1.0([email protected])
  2610. fuse.js: 7.3.0
  2611. hookable: 6.1.1
  2612. knitwork: 1.3.0
  2613. magic-string: 0.30.21
  2614. mlly: 1.8.2
  2615. motion-v: 2.2.1(@vueuse/[email protected]([email protected]([email protected])))([email protected]([email protected]))
  2616. ohash: 2.0.11
  2617. pathe: 2.0.3
  2618. reka-ui: 2.9.6([email protected]([email protected]))
  2619. scule: 1.3.0
  2620. tailwind-merge: 3.6.0
  2621. tailwind-variants: 3.2.2([email protected])([email protected])
  2622. tailwindcss: 4.3.0
  2623. tinyglobby: 0.2.16
  2624. typescript: 6.0.3
  2625. ufo: 1.6.4
  2626. unplugin: 3.0.0
  2627. unplugin-auto-import: 21.0.0(@nuxt/[email protected])(@vueuse/[email protected]([email protected]([email protected])))
  2628. unplugin-vue-components: 32.1.0(@nuxt/[email protected])([email protected]([email protected]))
  2629. vaul-vue: 0.4.1([email protected]([email protected]([email protected])))([email protected]([email protected]))
  2630. vue-component-type-helpers: 3.3.1
  2631. optionalDependencies:
  2632. '@internationalized/date': 3.12.1
  2633. '@internationalized/number': 3.6.6
  2634. vue-router: 5.0.7(@vue/[email protected])([email protected]([email protected])([email protected]([email protected])))([email protected]([email protected]))
  2635. transitivePeerDependencies:
  2636. - '@azure/app-configuration'
  2637. - '@azure/cosmos'
  2638. - '@azure/data-tables'
  2639. - '@azure/identity'
  2640. - '@azure/keyvault-secrets'
  2641. - '@azure/storage-blob'
  2642. - '@capacitor/preferences'
  2643. - '@deno/kv'
  2644. - '@emotion/is-prop-valid'
  2645. - '@netlify/blobs'
  2646. - '@planetscale/database'
  2647. - '@tiptap/extensions'
  2648. - '@tiptap/y-tiptap'
  2649. - '@upstash/redis'
  2650. - '@vercel/blob'
  2651. - '@vercel/functions'
  2652. - '@vercel/kv'
  2653. - '@vue/composition-api'
  2654. - async-validator
  2655. - aws4fetch
  2656. - axios
  2657. - change-case
  2658. - db0
  2659. - drauu
  2660. - embla-carousel
  2661. - focus-trap
  2662. - idb-keyval
  2663. - ioredis
  2664. - jwt-decode
  2665. - magicast
  2666. - nprogress
  2667. - qrcode
  2668. - react
  2669. - react-dom
  2670. - sortablejs
  2671. - universal-cookie
  2672. - uploadthing
  2673. - vite
  2674. - vue
  2675. - yjs
  2676. '@nuxtjs/[email protected]':
  2677. dependencies:
  2678. '@nuxt/kit': 3.21.6
  2679. pathe: 1.1.2
  2680. pkg-types: 1.3.1
  2681. semver: 7.8.0
  2682. transitivePeerDependencies:
  2683. - magicast
  2684. '@one-ini/[email protected]': {}
  2685. '@oxc-project/[email protected]': {}
  2686. '@pkgjs/[email protected]':
  2687. optional: true
  2688. '@polka/[email protected]': {}
  2689. '@rolldown/[email protected]':
  2690. optional: true
  2691. '@rolldown/[email protected]':
  2692. optional: true
  2693. '@rolldown/[email protected]':
  2694. optional: true
  2695. '@rolldown/[email protected]':
  2696. optional: true
  2697. '@rolldown/[email protected]':
  2698. optional: true
  2699. '@rolldown/[email protected]':
  2700. optional: true
  2701. '@rolldown/[email protected]':
  2702. optional: true
  2703. '@rolldown/[email protected]':
  2704. optional: true
  2705. '@rolldown/[email protected]':
  2706. optional: true
  2707. '@rolldown/[email protected]':
  2708. optional: true
  2709. '@rolldown/[email protected]':
  2710. optional: true
  2711. '@rolldown/[email protected]':
  2712. optional: true
  2713. '@rolldown/[email protected]':
  2714. dependencies:
  2715. '@emnapi/core': 1.10.0
  2716. '@emnapi/runtime': 1.10.0
  2717. '@napi-rs/wasm-runtime': 1.1.4(@emnapi/[email protected])(@emnapi/[email protected])
  2718. optional: true
  2719. '@rolldown/[email protected]':
  2720. optional: true
  2721. '@rolldown/[email protected]':
  2722. optional: true
  2723. '@rolldown/[email protected]': {}
  2724. '@standard-schema/[email protected]': {}
  2725. '@swc/[email protected]':
  2726. dependencies:
  2727. tslib: 2.8.1
  2728. '@tailwindcss/[email protected]':
  2729. dependencies:
  2730. '@jridgewell/remapping': 2.3.5
  2731. enhanced-resolve: 5.21.5
  2732. jiti: 2.7.0
  2733. lightningcss: 1.32.0
  2734. magic-string: 0.30.21
  2735. source-map-js: 1.2.1
  2736. tailwindcss: 4.3.0
  2737. '@tailwindcss/[email protected]':
  2738. optional: true
  2739. '@tailwindcss/[email protected]':
  2740. optional: true
  2741. '@tailwindcss/[email protected]':
  2742. optional: true
  2743. '@tailwindcss/[email protected]':
  2744. optional: true
  2745. '@tailwindcss/[email protected]':
  2746. optional: true
  2747. '@tailwindcss/[email protected]':
  2748. optional: true
  2749. '@tailwindcss/[email protected]':
  2750. optional: true
  2751. '@tailwindcss/[email protected]':
  2752. optional: true
  2753. '@tailwindcss/[email protected]':
  2754. optional: true
  2755. '@tailwindcss/[email protected]':
  2756. optional: true
  2757. '@tailwindcss/[email protected]':
  2758. optional: true
  2759. '@tailwindcss/[email protected]':
  2760. optional: true
  2761. '@tailwindcss/[email protected]':
  2762. optionalDependencies:
  2763. '@tailwindcss/oxide-android-arm64': 4.3.0
  2764. '@tailwindcss/oxide-darwin-arm64': 4.3.0
  2765. '@tailwindcss/oxide-darwin-x64': 4.3.0
  2766. '@tailwindcss/oxide-freebsd-x64': 4.3.0
  2767. '@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.0
  2768. '@tailwindcss/oxide-linux-arm64-gnu': 4.3.0
  2769. '@tailwindcss/oxide-linux-arm64-musl': 4.3.0
  2770. '@tailwindcss/oxide-linux-x64-gnu': 4.3.0
  2771. '@tailwindcss/oxide-linux-x64-musl': 4.3.0
  2772. '@tailwindcss/oxide-wasm32-wasi': 4.3.0
  2773. '@tailwindcss/oxide-win32-arm64-msvc': 4.3.0
  2774. '@tailwindcss/oxide-win32-x64-msvc': 4.3.0
  2775. '@tailwindcss/[email protected]':
  2776. dependencies:
  2777. '@alloc/quick-lru': 5.2.0
  2778. '@tailwindcss/node': 4.3.0
  2779. '@tailwindcss/oxide': 4.3.0
  2780. postcss: 8.5.15
  2781. tailwindcss: 4.3.0
  2782. '@tailwindcss/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))':
  2783. dependencies:
  2784. '@tailwindcss/node': 4.3.0
  2785. '@tailwindcss/oxide': 4.3.0
  2786. tailwindcss: 4.3.0
  2787. vite: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  2788. '@tailwindcss/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))':
  2789. dependencies:
  2790. '@tailwindcss/node': 4.3.0
  2791. '@tailwindcss/oxide': 4.3.0
  2792. tailwindcss: 4.3.0
  2793. vite: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  2794. '@tanstack/[email protected]': {}
  2795. '@tanstack/[email protected]': {}
  2796. '@tanstack/[email protected]([email protected]([email protected]))':
  2797. dependencies:
  2798. '@tanstack/table-core': 8.21.3
  2799. vue: 3.5.34([email protected])
  2800. '@tanstack/[email protected]([email protected]([email protected]))':
  2801. dependencies:
  2802. '@tanstack/virtual-core': 3.14.0
  2803. vue: 3.5.34([email protected])
  2804. '@tiptap/[email protected](@tiptap/[email protected])':
  2805. dependencies:
  2806. '@tiptap/pm': 3.23.5
  2807. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2808. dependencies:
  2809. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2810. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2811. dependencies:
  2812. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2813. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])':
  2814. dependencies:
  2815. '@floating-ui/dom': 1.7.6
  2816. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2817. '@tiptap/pm': 3.23.5
  2818. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))':
  2819. dependencies:
  2820. '@tiptap/extension-list': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2821. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])':
  2822. dependencies:
  2823. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2824. '@tiptap/pm': 3.23.5
  2825. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2826. dependencies:
  2827. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2828. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected])':
  2829. dependencies:
  2830. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2831. '@tiptap/pm': 3.23.5
  2832. '@tiptap/y-tiptap': 3.0.3([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected])
  2833. yjs: 13.6.30
  2834. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2835. dependencies:
  2836. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2837. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected])))(@tiptap/[email protected])(@tiptap/[email protected](@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])([email protected]([email protected])))([email protected]([email protected]))':
  2838. dependencies:
  2839. '@tiptap/extension-drag-handle': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))
  2840. '@tiptap/pm': 3.23.5
  2841. '@tiptap/vue-3': 3.23.5(@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])([email protected]([email protected]))
  2842. vue: 3.5.34([email protected])
  2843. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected]))(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))':
  2844. dependencies:
  2845. '@floating-ui/dom': 1.7.6
  2846. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2847. '@tiptap/extension-collaboration': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected]))([email protected])
  2848. '@tiptap/extension-node-range': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2849. '@tiptap/pm': 3.23.5
  2850. '@tiptap/y-tiptap': 3.0.3([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected])
  2851. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))':
  2852. dependencies:
  2853. '@tiptap/extensions': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2854. '@tiptap/[email protected](@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])':
  2855. dependencies:
  2856. '@floating-ui/dom': 1.7.6
  2857. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2858. '@tiptap/pm': 3.23.5
  2859. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))':
  2860. dependencies:
  2861. '@tiptap/extensions': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2862. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2863. dependencies:
  2864. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2865. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2866. dependencies:
  2867. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2868. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])':
  2869. dependencies:
  2870. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2871. '@tiptap/pm': 3.23.5
  2872. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2873. dependencies:
  2874. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2875. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2876. dependencies:
  2877. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2878. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])':
  2879. dependencies:
  2880. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2881. '@tiptap/pm': 3.23.5
  2882. linkifyjs: 4.3.3
  2883. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))':
  2884. dependencies:
  2885. '@tiptap/extension-list': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2886. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))':
  2887. dependencies:
  2888. '@tiptap/extension-list': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2889. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])':
  2890. dependencies:
  2891. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2892. '@tiptap/pm': 3.23.5
  2893. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))':
  2894. dependencies:
  2895. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2896. '@tiptap/pm': 3.23.5
  2897. '@tiptap/suggestion': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2898. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])':
  2899. dependencies:
  2900. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2901. '@tiptap/pm': 3.23.5
  2902. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))':
  2903. dependencies:
  2904. '@tiptap/extension-list': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2905. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2906. dependencies:
  2907. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2908. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))':
  2909. dependencies:
  2910. '@tiptap/extensions': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2911. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2912. dependencies:
  2913. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2914. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2915. dependencies:
  2916. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2917. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))':
  2918. dependencies:
  2919. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2920. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])':
  2921. dependencies:
  2922. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2923. '@tiptap/pm': 3.23.5
  2924. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])':
  2925. dependencies:
  2926. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2927. '@tiptap/pm': 3.23.5
  2928. marked: 17.0.6
  2929. '@tiptap/[email protected]':
  2930. dependencies:
  2931. prosemirror-changeset: 2.4.1
  2932. prosemirror-commands: 1.7.1
  2933. prosemirror-dropcursor: 1.8.2
  2934. prosemirror-gapcursor: 1.4.1
  2935. prosemirror-history: 1.5.0
  2936. prosemirror-keymap: 1.2.3
  2937. prosemirror-model: 1.25.7
  2938. prosemirror-schema-list: 1.5.1
  2939. prosemirror-state: 1.4.4
  2940. prosemirror-tables: 1.8.5
  2941. prosemirror-transform: 1.12.0
  2942. prosemirror-view: 1.41.8
  2943. '@tiptap/[email protected]':
  2944. dependencies:
  2945. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2946. '@tiptap/extension-blockquote': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2947. '@tiptap/extension-bold': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2948. '@tiptap/extension-bullet-list': 3.23.5(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))
  2949. '@tiptap/extension-code': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2950. '@tiptap/extension-code-block': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2951. '@tiptap/extension-document': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2952. '@tiptap/extension-dropcursor': 3.23.5(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))
  2953. '@tiptap/extension-gapcursor': 3.23.5(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))
  2954. '@tiptap/extension-hard-break': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2955. '@tiptap/extension-heading': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2956. '@tiptap/extension-horizontal-rule': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2957. '@tiptap/extension-italic': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2958. '@tiptap/extension-link': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2959. '@tiptap/extension-list': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2960. '@tiptap/extension-list-item': 3.23.5(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))
  2961. '@tiptap/extension-list-keymap': 3.23.5(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))
  2962. '@tiptap/extension-ordered-list': 3.23.5(@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected]))
  2963. '@tiptap/extension-paragraph': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2964. '@tiptap/extension-strike': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2965. '@tiptap/extension-text': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2966. '@tiptap/extension-underline': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))
  2967. '@tiptap/extensions': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2968. '@tiptap/pm': 3.23.5
  2969. '@tiptap/[email protected](@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])':
  2970. dependencies:
  2971. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2972. '@tiptap/pm': 3.23.5
  2973. '@tiptap/[email protected](@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])([email protected]([email protected]))':
  2974. dependencies:
  2975. '@floating-ui/dom': 1.7.6
  2976. '@tiptap/core': 3.23.5(@tiptap/[email protected])
  2977. '@tiptap/pm': 3.23.5
  2978. vue: 3.5.34([email protected])
  2979. optionalDependencies:
  2980. '@tiptap/extension-bubble-menu': 3.23.5(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2981. '@tiptap/extension-floating-menu': 3.23.5(@floating-ui/[email protected])(@tiptap/[email protected](@tiptap/[email protected]))(@tiptap/[email protected])
  2982. '@tiptap/[email protected]([email protected])([email protected])([email protected])([email protected]([email protected]))([email protected])':
  2983. dependencies:
  2984. lib0: 0.2.117
  2985. prosemirror-model: 1.25.7
  2986. prosemirror-state: 1.4.4
  2987. prosemirror-view: 1.41.8
  2988. y-protocols: 1.0.7([email protected])
  2989. yjs: 13.6.30
  2990. '@tsconfig/[email protected]': {}
  2991. '@tybys/[email protected]':
  2992. dependencies:
  2993. tslib: 2.8.1
  2994. optional: true
  2995. '@types/[email protected]':
  2996. dependencies:
  2997. '@types/deep-eql': 4.0.2
  2998. assertion-error: 2.0.1
  2999. '@types/[email protected]': {}
  3000. '@types/[email protected]': {}
  3001. '@types/[email protected]': {}
  3002. '@types/[email protected]':
  3003. dependencies:
  3004. undici-types: 7.16.0
  3005. '@types/[email protected]':
  3006. dependencies:
  3007. undici-types: 7.24.6
  3008. '@types/[email protected]': {}
  3009. '@types/[email protected]': {}
  3010. '@unhead/[email protected]([email protected]([email protected]))':
  3011. dependencies:
  3012. hookable: 6.1.1
  3013. unhead: 2.1.15
  3014. vue: 3.5.34([email protected])
  3015. '@vitejs/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]([email protected]))':
  3016. dependencies:
  3017. '@rolldown/pluginutils': 1.0.1
  3018. vite: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  3019. vue: 3.5.34([email protected])
  3020. '@vitejs/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))([email protected]([email protected]))':
  3021. dependencies:
  3022. '@rolldown/pluginutils': 1.0.1
  3023. vite: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  3024. vue: 3.5.34([email protected])
  3025. '@vitest/[email protected]':
  3026. dependencies:
  3027. '@standard-schema/spec': 1.1.0
  3028. '@types/chai': 5.2.3
  3029. '@vitest/spy': 4.1.7
  3030. '@vitest/utils': 4.1.7
  3031. chai: 6.2.2
  3032. tinyrainbow: 3.1.0
  3033. '@vitest/[email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected]))':
  3034. dependencies:
  3035. '@vitest/spy': 4.1.7
  3036. estree-walker: 3.0.3
  3037. magic-string: 0.30.21
  3038. optionalDependencies:
  3039. vite: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  3040. '@vitest/[email protected]':
  3041. dependencies:
  3042. tinyrainbow: 3.1.0
  3043. '@vitest/[email protected]':
  3044. dependencies:
  3045. '@vitest/utils': 4.1.7
  3046. pathe: 2.0.3
  3047. '@vitest/[email protected]':
  3048. dependencies:
  3049. '@vitest/pretty-format': 4.1.7
  3050. '@vitest/utils': 4.1.7
  3051. magic-string: 0.30.21
  3052. pathe: 2.0.3
  3053. '@vitest/[email protected]': {}
  3054. '@vitest/[email protected]':
  3055. dependencies:
  3056. '@vitest/pretty-format': 4.1.7
  3057. convert-source-map: 2.0.0
  3058. tinyrainbow: 3.1.0
  3059. '@volar/[email protected]':
  3060. dependencies:
  3061. '@volar/source-map': 2.4.28
  3062. '@volar/[email protected]': {}
  3063. '@volar/[email protected]':
  3064. dependencies:
  3065. '@volar/language-core': 2.4.28
  3066. path-browserify: 1.0.1
  3067. vscode-uri: 3.1.0
  3068. '@vue-macros/[email protected]([email protected]([email protected]))':
  3069. dependencies:
  3070. '@vue/compiler-sfc': 3.5.34
  3071. ast-kit: 2.2.0
  3072. local-pkg: 1.2.0
  3073. magic-string-ast: 1.0.3
  3074. unplugin-utils: 0.3.1
  3075. optionalDependencies:
  3076. vue: 3.5.34([email protected])
  3077. '@vue/[email protected]':
  3078. dependencies:
  3079. '@babel/parser': 7.29.3
  3080. '@vue/shared': 3.5.34
  3081. entities: 7.0.1
  3082. estree-walker: 2.0.2
  3083. source-map-js: 1.2.1
  3084. '@vue/[email protected]':
  3085. dependencies:
  3086. '@vue/compiler-core': 3.5.34
  3087. '@vue/shared': 3.5.34
  3088. '@vue/[email protected]':
  3089. dependencies:
  3090. '@babel/parser': 7.29.3
  3091. '@vue/compiler-core': 3.5.34
  3092. '@vue/compiler-dom': 3.5.34
  3093. '@vue/compiler-ssr': 3.5.34
  3094. '@vue/shared': 3.5.34
  3095. estree-walker: 2.0.2
  3096. magic-string: 0.30.21
  3097. postcss: 8.5.15
  3098. source-map-js: 1.2.1
  3099. '@vue/[email protected]':
  3100. dependencies:
  3101. '@vue/compiler-dom': 3.5.34
  3102. '@vue/shared': 3.5.34
  3103. '@vue/[email protected]':
  3104. dependencies:
  3105. '@vue/devtools-kit': 7.7.9
  3106. '@vue/[email protected]':
  3107. dependencies:
  3108. '@vue/devtools-kit': 8.1.2
  3109. '@vue/[email protected]':
  3110. dependencies:
  3111. '@vue/devtools-shared': 7.7.9
  3112. birpc: 2.9.0
  3113. hookable: 5.5.3
  3114. mitt: 3.0.1
  3115. perfect-debounce: 1.0.0
  3116. speakingurl: 14.0.1
  3117. superjson: 2.2.6
  3118. '@vue/[email protected]':
  3119. dependencies:
  3120. '@vue/devtools-shared': 8.1.2
  3121. birpc: 2.9.0
  3122. hookable: 5.5.3
  3123. perfect-debounce: 2.1.0
  3124. '@vue/[email protected]':
  3125. dependencies:
  3126. rfdc: 1.4.1
  3127. '@vue/[email protected]': {}
  3128. '@vue/[email protected]':
  3129. dependencies:
  3130. '@volar/language-core': 2.4.28
  3131. '@vue/compiler-dom': 3.5.34
  3132. '@vue/shared': 3.5.34
  3133. alien-signals: 3.2.1
  3134. muggle-string: 0.4.1
  3135. path-browserify: 1.0.1
  3136. picomatch: 4.0.4
  3137. '@vue/[email protected]':
  3138. dependencies:
  3139. '@vue/shared': 3.5.34
  3140. '@vue/[email protected]':
  3141. dependencies:
  3142. '@vue/reactivity': 3.5.34
  3143. '@vue/shared': 3.5.34
  3144. '@vue/[email protected]':
  3145. dependencies:
  3146. '@vue/reactivity': 3.5.34
  3147. '@vue/runtime-core': 3.5.34
  3148. '@vue/shared': 3.5.34
  3149. csstype: 3.2.3
  3150. '@vue/[email protected]([email protected]([email protected]))':
  3151. dependencies:
  3152. '@vue/compiler-ssr': 3.5.34
  3153. '@vue/shared': 3.5.34
  3154. vue: 3.5.34([email protected])
  3155. '@vue/[email protected]': {}
  3156. '@vue/[email protected](@vue/[email protected])(@vue/[email protected]([email protected]([email protected])))([email protected]([email protected]))':
  3157. dependencies:
  3158. '@vue/compiler-dom': 3.5.34
  3159. js-beautify: 1.15.4
  3160. vue: 3.5.34([email protected])
  3161. vue-component-type-helpers: 3.3.1
  3162. optionalDependencies:
  3163. '@vue/server-renderer': 3.5.34([email protected]([email protected]))
  3164. '@vue/[email protected]([email protected])([email protected]([email protected]))':
  3165. optionalDependencies:
  3166. typescript: 6.0.3
  3167. vue: 3.5.34([email protected])
  3168. '@vueuse/[email protected]([email protected]([email protected]))':
  3169. dependencies:
  3170. '@types/web-bluetooth': 0.0.20
  3171. '@vueuse/metadata': 10.11.1
  3172. '@vueuse/shared': 10.11.1([email protected]([email protected]))
  3173. vue-demi: 0.14.10([email protected]([email protected]))
  3174. transitivePeerDependencies:
  3175. - '@vue/composition-api'
  3176. - vue
  3177. '@vueuse/[email protected]([email protected]([email protected]))':
  3178. dependencies:
  3179. '@types/web-bluetooth': 0.0.21
  3180. '@vueuse/metadata': 14.3.0
  3181. '@vueuse/shared': 14.3.0([email protected]([email protected]))
  3182. vue: 3.5.34([email protected])
  3183. '@vueuse/[email protected]([email protected])([email protected]([email protected]))':
  3184. dependencies:
  3185. '@vueuse/core': 14.3.0([email protected]([email protected]))
  3186. '@vueuse/shared': 14.3.0([email protected]([email protected]))
  3187. vue: 3.5.34([email protected])
  3188. optionalDependencies:
  3189. fuse.js: 7.3.0
  3190. '@vueuse/[email protected]': {}
  3191. '@vueuse/[email protected]': {}
  3192. '@vueuse/[email protected]([email protected]([email protected]))':
  3193. dependencies:
  3194. vue-demi: 0.14.10([email protected]([email protected]))
  3195. transitivePeerDependencies:
  3196. - '@vue/composition-api'
  3197. - vue
  3198. '@vueuse/[email protected]([email protected]([email protected]))':
  3199. dependencies:
  3200. vue: 3.5.34([email protected])
  3201. [email protected]: {}
  3202. [email protected]: {}
  3203. [email protected]: {}
  3204. [email protected]: {}
  3205. [email protected]: {}
  3206. [email protected]:
  3207. dependencies:
  3208. color-convert: 2.0.1
  3209. [email protected]: {}
  3210. [email protected]:
  3211. dependencies:
  3212. normalize-path: 3.0.0
  3213. picomatch: 2.3.2
  3214. [email protected]:
  3215. dependencies:
  3216. tslib: 2.8.1
  3217. [email protected]: {}
  3218. [email protected]:
  3219. dependencies:
  3220. '@babel/parser': 7.29.3
  3221. pathe: 2.0.3
  3222. [email protected]:
  3223. dependencies:
  3224. '@babel/parser': 7.29.3
  3225. ast-kit: 2.2.0
  3226. [email protected]: {}
  3227. [email protected]:
  3228. dependencies:
  3229. require-from-string: 2.0.2
  3230. [email protected]: {}
  3231. [email protected]:
  3232. dependencies:
  3233. balanced-match: 1.0.2
  3234. [email protected]:
  3235. dependencies:
  3236. chokidar: 5.0.0
  3237. confbox: 0.2.4
  3238. defu: 6.1.7
  3239. dotenv: 17.4.2
  3240. exsolve: 1.0.8
  3241. giget: 3.2.0
  3242. jiti: 2.7.0
  3243. ohash: 2.0.11
  3244. pathe: 2.0.3
  3245. perfect-debounce: 2.1.0
  3246. pkg-types: 2.3.1
  3247. rc9: 3.0.1
  3248. [email protected]: {}
  3249. [email protected]:
  3250. dependencies:
  3251. readdirp: 5.0.0
  3252. [email protected]:
  3253. dependencies:
  3254. consola: 3.4.2
  3255. [email protected]:
  3256. dependencies:
  3257. color-name: 1.1.4
  3258. [email protected]: {}
  3259. [email protected]: {}
  3260. [email protected]: {}
  3261. [email protected]: {}
  3262. [email protected]: {}
  3263. [email protected]:
  3264. dependencies:
  3265. ini: 1.3.8
  3266. proto-list: 1.2.4
  3267. [email protected]: {}
  3268. [email protected]: {}
  3269. [email protected]: {}
  3270. [email protected]:
  3271. dependencies:
  3272. is-what: 5.5.0
  3273. [email protected]:
  3274. dependencies:
  3275. path-key: 3.1.1
  3276. shebang-command: 2.0.0
  3277. which: 2.0.2
  3278. [email protected]:
  3279. dependencies:
  3280. uncrypto: 0.1.3
  3281. [email protected]:
  3282. dependencies:
  3283. mdn-data: 2.27.1
  3284. source-map-js: 1.2.1
  3285. [email protected]: {}
  3286. [email protected]:
  3287. dependencies:
  3288. whatwg-mimetype: 5.0.0
  3289. whatwg-url: 16.0.1
  3290. transitivePeerDependencies:
  3291. - '@noble/hashes'
  3292. [email protected]: {}
  3293. [email protected]: {}
  3294. [email protected]: {}
  3295. [email protected]: {}
  3296. [email protected]: {}
  3297. [email protected]: {}
  3298. [email protected]:
  3299. dependencies:
  3300. '@one-ini/wasm': 0.1.1
  3301. commander: 10.0.1
  3302. minimatch: 9.0.9
  3303. semver: 7.8.0
  3304. [email protected]([email protected]):
  3305. dependencies:
  3306. embla-carousel: 8.6.0
  3307. [email protected]([email protected]):
  3308. dependencies:
  3309. embla-carousel: 8.6.0
  3310. [email protected]([email protected]):
  3311. dependencies:
  3312. embla-carousel: 8.6.0
  3313. [email protected]([email protected]):
  3314. dependencies:
  3315. embla-carousel: 8.6.0
  3316. [email protected]([email protected]):
  3317. dependencies:
  3318. embla-carousel: 8.6.0
  3319. [email protected]([email protected]):
  3320. dependencies:
  3321. embla-carousel: 8.6.0
  3322. [email protected]([email protected]([email protected])):
  3323. dependencies:
  3324. embla-carousel: 8.6.0
  3325. embla-carousel-reactive-utils: 8.6.0([email protected])
  3326. vue: 3.5.34([email protected])
  3327. [email protected]([email protected]):
  3328. dependencies:
  3329. embla-carousel: 8.6.0
  3330. wheel-gestures: 2.2.48
  3331. [email protected]: {}
  3332. [email protected]: {}
  3333. [email protected]: {}
  3334. [email protected]:
  3335. dependencies:
  3336. graceful-fs: 4.2.11
  3337. tapable: 2.3.3
  3338. [email protected]: {}
  3339. [email protected]: {}
  3340. [email protected]: {}
  3341. [email protected]: {}
  3342. [email protected]:
  3343. optionalDependencies:
  3344. '@esbuild/aix-ppc64': 0.27.7
  3345. '@esbuild/android-arm': 0.27.7
  3346. '@esbuild/android-arm64': 0.27.7
  3347. '@esbuild/android-x64': 0.27.7
  3348. '@esbuild/darwin-arm64': 0.27.7
  3349. '@esbuild/darwin-x64': 0.27.7
  3350. '@esbuild/freebsd-arm64': 0.27.7
  3351. '@esbuild/freebsd-x64': 0.27.7
  3352. '@esbuild/linux-arm': 0.27.7
  3353. '@esbuild/linux-arm64': 0.27.7
  3354. '@esbuild/linux-ia32': 0.27.7
  3355. '@esbuild/linux-loong64': 0.27.7
  3356. '@esbuild/linux-mips64el': 0.27.7
  3357. '@esbuild/linux-ppc64': 0.27.7
  3358. '@esbuild/linux-riscv64': 0.27.7
  3359. '@esbuild/linux-s390x': 0.27.7
  3360. '@esbuild/linux-x64': 0.27.7
  3361. '@esbuild/netbsd-arm64': 0.27.7
  3362. '@esbuild/netbsd-x64': 0.27.7
  3363. '@esbuild/openbsd-arm64': 0.27.7
  3364. '@esbuild/openbsd-x64': 0.27.7
  3365. '@esbuild/openharmony-arm64': 0.27.7
  3366. '@esbuild/sunos-x64': 0.27.7
  3367. '@esbuild/win32-arm64': 0.27.7
  3368. '@esbuild/win32-ia32': 0.27.7
  3369. '@esbuild/win32-x64': 0.27.7
  3370. [email protected]: {}
  3371. [email protected]: {}
  3372. [email protected]:
  3373. dependencies:
  3374. '@types/estree': 1.0.9
  3375. [email protected]:
  3376. dependencies:
  3377. cross-spawn: 7.0.6
  3378. get-stream: 8.0.1
  3379. human-signals: 5.0.0
  3380. is-stream: 3.0.0
  3381. merge-stream: 2.0.0
  3382. npm-run-path: 5.3.0
  3383. onetime: 6.0.0
  3384. signal-exit: 4.1.0
  3385. strip-final-newline: 3.0.0
  3386. [email protected]: {}
  3387. [email protected]: {}
  3388. [email protected]([email protected]):
  3389. optionalDependencies:
  3390. picomatch: 4.0.4
  3391. [email protected]:
  3392. dependencies:
  3393. '@capsizecss/unpack': 4.0.0
  3394. css-tree: 3.2.1
  3395. magic-regexp: 0.10.0
  3396. magic-string: 0.30.21
  3397. pathe: 2.0.3
  3398. ufo: 1.6.4
  3399. unplugin: 2.3.11
  3400. [email protected]:
  3401. dependencies:
  3402. tiny-inflate: 1.0.3
  3403. [email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected])):
  3404. dependencies:
  3405. consola: 3.4.2
  3406. css-tree: 3.2.1
  3407. defu: 6.1.7
  3408. esbuild: 0.27.7
  3409. fontaine: 0.8.0
  3410. jiti: 2.7.0
  3411. lightningcss: 1.32.0
  3412. magic-string: 0.30.21
  3413. ohash: 2.0.11
  3414. pathe: 2.0.3
  3415. ufo: 1.6.4
  3416. unifont: 0.7.4
  3417. unstorage: 1.17.5
  3418. optionalDependencies:
  3419. vite: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  3420. transitivePeerDependencies:
  3421. - '@azure/app-configuration'
  3422. - '@azure/cosmos'
  3423. - '@azure/data-tables'
  3424. - '@azure/identity'
  3425. - '@azure/keyvault-secrets'
  3426. - '@azure/storage-blob'
  3427. - '@capacitor/preferences'
  3428. - '@deno/kv'
  3429. - '@netlify/blobs'
  3430. - '@planetscale/database'
  3431. - '@upstash/redis'
  3432. - '@vercel/blob'
  3433. - '@vercel/functions'
  3434. - '@vercel/kv'
  3435. - aws4fetch
  3436. - db0
  3437. - idb-keyval
  3438. - ioredis
  3439. - uploadthing
  3440. [email protected]([email protected](@types/[email protected])([email protected])([email protected])([email protected])):
  3441. dependencies:
  3442. consola: 3.4.2
  3443. css-tree: 3.2.1
  3444. defu: 6.1.7
  3445. esbuild: 0.27.7
  3446. fontaine: 0.8.0
  3447. jiti: 2.7.0
  3448. lightningcss: 1.32.0
  3449. magic-string: 0.30.21
  3450. ohash: 2.0.11
  3451. pathe: 2.0.3
  3452. ufo: 1.6.4
  3453. unifont: 0.7.4
  3454. unstorage: 1.17.5
  3455. optionalDependencies:
  3456. vite: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  3457. transitivePeerDependencies:
  3458. - '@azure/app-configuration'
  3459. - '@azure/cosmos'
  3460. - '@azure/data-tables'
  3461. - '@azure/identity'
  3462. - '@azure/keyvault-secrets'
  3463. - '@azure/storage-blob'
  3464. - '@capacitor/preferences'
  3465. - '@deno/kv'
  3466. - '@netlify/blobs'
  3467. - '@planetscale/database'
  3468. - '@upstash/redis'
  3469. - '@vercel/blob'
  3470. - '@vercel/functions'
  3471. - '@vercel/kv'
  3472. - aws4fetch
  3473. - db0
  3474. - idb-keyval
  3475. - ioredis
  3476. - uploadthing
  3477. [email protected]:
  3478. dependencies:
  3479. cross-spawn: 7.0.6
  3480. signal-exit: 4.1.0
  3481. [email protected]:
  3482. dependencies:
  3483. motion-dom: 12.39.0
  3484. motion-utils: 12.39.0
  3485. tslib: 2.8.1
  3486. [email protected]:
  3487. optional: true
  3488. [email protected]: {}
  3489. [email protected]: {}
  3490. [email protected]: {}
  3491. [email protected]:
  3492. dependencies:
  3493. foreground-child: 3.3.1
  3494. jackspeak: 3.4.3
  3495. minimatch: 9.0.9
  3496. minipass: 7.1.3
  3497. package-json-from-dist: 1.0.1
  3498. path-scurry: 1.11.1
  3499. [email protected]: {}
  3500. [email protected]:
  3501. dependencies:
  3502. cookie-es: 1.2.3
  3503. crossws: 0.3.5
  3504. defu: 6.1.7
  3505. destr: 2.0.5
  3506. iron-webcrypto: 1.2.1
  3507. node-mock-http: 1.0.4
  3508. radix3: 1.1.2
  3509. ufo: 1.6.4
  3510. uncrypto: 0.1.3
  3511. [email protected]: {}
  3512. [email protected]: {}
  3513. [email protected]: {}
  3514. [email protected]:
  3515. dependencies:
  3516. '@exodus/bytes': 1.15.1
  3517. transitivePeerDependencies:
  3518. - '@noble/hashes'
  3519. [email protected]: {}
  3520. [email protected]: {}
  3521. [email protected]: {}
  3522. [email protected]: {}
  3523. [email protected]: {}
  3524. [email protected]: {}
  3525. [email protected]: {}
  3526. [email protected]: {}
  3527. [email protected]: {}
  3528. [email protected]: {}
  3529. [email protected]: {}
  3530. [email protected]:
  3531. dependencies:
  3532. '@isaacs/cliui': 8.0.2
  3533. optionalDependencies:
  3534. '@pkgjs/parseargs': 0.11.0
  3535. [email protected]: {}
  3536. [email protected]:
  3537. dependencies:
  3538. config-chain: 1.1.13
  3539. editorconfig: 1.0.7
  3540. glob: 10.5.0
  3541. js-cookie: 3.0.7
  3542. nopt: 7.2.1
  3543. [email protected]: {}
  3544. [email protected]: {}
  3545. [email protected]:
  3546. dependencies:
  3547. '@asamuzakjp/css-color': 5.1.11
  3548. '@asamuzakjp/dom-selector': 7.1.1
  3549. '@bramus/specificity': 2.4.2
  3550. '@csstools/css-syntax-patches-for-csstree': 1.1.4([email protected])
  3551. '@exodus/bytes': 1.15.1
  3552. css-tree: 3.2.1
  3553. data-urls: 7.0.0
  3554. decimal.js: 10.6.0
  3555. html-encoding-sniffer: 6.0.0
  3556. is-potential-custom-element-name: 1.0.1
  3557. lru-cache: 11.5.0
  3558. parse5: 8.0.1
  3559. saxes: 6.0.0
  3560. symbol-tree: 3.2.4
  3561. tough-cookie: 6.0.1
  3562. undici: 7.25.0
  3563. w3c-xmlserializer: 5.0.0
  3564. webidl-conversions: 8.0.1
  3565. whatwg-mimetype: 5.0.0
  3566. whatwg-url: 16.0.1
  3567. xml-name-validator: 5.0.0
  3568. transitivePeerDependencies:
  3569. - '@noble/hashes'
  3570. [email protected]: {}
  3571. [email protected]: {}
  3572. [email protected]: {}
  3573. [email protected]: {}
  3574. [email protected]:
  3575. dependencies:
  3576. isomorphic.js: 0.2.5
  3577. [email protected]:
  3578. optional: true
  3579. [email protected]:
  3580. optional: true
  3581. [email protected]:
  3582. optional: true
  3583. [email protected]:
  3584. optional: true
  3585. [email protected]:
  3586. optional: true
  3587. [email protected]:
  3588. optional: true
  3589. [email protected]:
  3590. optional: true
  3591. [email protected]:
  3592. optional: true
  3593. [email protected]:
  3594. optional: true
  3595. [email protected]:
  3596. optional: true
  3597. [email protected]:
  3598. optional: true
  3599. [email protected]:
  3600. dependencies:
  3601. detect-libc: 2.1.2
  3602. optionalDependencies:
  3603. lightningcss-android-arm64: 1.32.0
  3604. lightningcss-darwin-arm64: 1.32.0
  3605. lightningcss-darwin-x64: 1.32.0
  3606. lightningcss-freebsd-x64: 1.32.0
  3607. lightningcss-linux-arm-gnueabihf: 1.32.0
  3608. lightningcss-linux-arm64-gnu: 1.32.0
  3609. lightningcss-linux-arm64-musl: 1.32.0
  3610. lightningcss-linux-x64-gnu: 1.32.0
  3611. lightningcss-linux-x64-musl: 1.32.0
  3612. lightningcss-win32-arm64-msvc: 1.32.0
  3613. lightningcss-win32-x64-msvc: 1.32.0
  3614. [email protected]: {}
  3615. [email protected]:
  3616. dependencies:
  3617. mlly: 1.8.2
  3618. pkg-types: 2.3.1
  3619. quansync: 1.0.0
  3620. [email protected]: {}
  3621. [email protected]: {}
  3622. [email protected]:
  3623. dependencies:
  3624. estree-walker: 3.0.3
  3625. magic-string: 0.30.21
  3626. mlly: 1.8.2
  3627. regexp-tree: 0.1.27
  3628. type-level-regexp: 0.1.17
  3629. ufo: 1.6.4
  3630. unplugin: 2.3.11
  3631. [email protected]:
  3632. dependencies:
  3633. magic-string: 0.30.21
  3634. [email protected]:
  3635. dependencies:
  3636. '@jridgewell/sourcemap-codec': 1.5.5
  3637. [email protected]: {}
  3638. [email protected]: {}
  3639. [email protected]: {}
  3640. [email protected]: {}
  3641. [email protected]:
  3642. dependencies:
  3643. brace-expansion: 2.1.0
  3644. [email protected]: {}
  3645. [email protected]: {}
  3646. [email protected]:
  3647. dependencies:
  3648. acorn: 8.16.0
  3649. pathe: 2.0.3
  3650. pkg-types: 1.3.1
  3651. ufo: 1.6.4
  3652. [email protected]:
  3653. dependencies:
  3654. motion-utils: 12.39.0
  3655. [email protected]: {}
  3656. [email protected](@vueuse/[email protected]([email protected]([email protected])))([email protected]([email protected])):
  3657. dependencies:
  3658. '@vueuse/core': 14.3.0([email protected]([email protected]))
  3659. framer-motion: 12.39.0
  3660. hey-listen: 1.0.8
  3661. motion-dom: 12.39.0
  3662. motion-utils: 12.39.0
  3663. vue: 3.5.34([email protected])
  3664. transitivePeerDependencies:
  3665. - '@emotion/is-prop-valid'
  3666. - react
  3667. - react-dom
  3668. [email protected]: {}
  3669. [email protected]: {}
  3670. [email protected]: {}
  3671. [email protected]: {}
  3672. [email protected]: {}
  3673. [email protected]:
  3674. dependencies:
  3675. abbrev: 2.0.0
  3676. [email protected]: {}
  3677. [email protected]:
  3678. dependencies:
  3679. path-key: 4.0.0
  3680. [email protected]: {}
  3681. [email protected]:
  3682. dependencies:
  3683. destr: 2.0.5
  3684. node-fetch-native: 1.6.7
  3685. ufo: 1.6.4
  3686. [email protected]: {}
  3687. [email protected]:
  3688. dependencies:
  3689. mimic-fn: 4.0.0
  3690. [email protected]: {}
  3691. [email protected]: {}
  3692. [email protected]: {}
  3693. [email protected]:
  3694. dependencies:
  3695. entities: 8.0.0
  3696. [email protected]: {}
  3697. [email protected]: {}
  3698. [email protected]: {}
  3699. [email protected]:
  3700. dependencies:
  3701. lru-cache: 10.4.3
  3702. minipass: 7.1.3
  3703. [email protected]: {}
  3704. [email protected]: {}
  3705. [email protected]: {}
  3706. [email protected]: {}
  3707. [email protected]: {}
  3708. [email protected]: {}
  3709. [email protected]: {}
  3710. [email protected]([email protected])([email protected]([email protected])):
  3711. dependencies:
  3712. '@vue/devtools-api': 7.7.9
  3713. vue: 3.5.34([email protected])
  3714. optionalDependencies:
  3715. typescript: 6.0.3
  3716. [email protected]:
  3717. dependencies:
  3718. confbox: 0.1.8
  3719. mlly: 1.8.2
  3720. pathe: 2.0.3
  3721. [email protected]:
  3722. dependencies:
  3723. confbox: 0.2.4
  3724. exsolve: 1.0.8
  3725. pathe: 2.0.3
  3726. [email protected]:
  3727. dependencies:
  3728. nanoid: 3.3.12
  3729. picocolors: 1.1.1
  3730. source-map-js: 1.2.1
  3731. [email protected]:
  3732. dependencies:
  3733. prosemirror-transform: 1.12.0
  3734. [email protected]:
  3735. dependencies:
  3736. prosemirror-model: 1.25.7
  3737. prosemirror-state: 1.4.4
  3738. prosemirror-transform: 1.12.0
  3739. [email protected]:
  3740. dependencies:
  3741. prosemirror-state: 1.4.4
  3742. prosemirror-transform: 1.12.0
  3743. prosemirror-view: 1.41.8
  3744. [email protected]:
  3745. dependencies:
  3746. prosemirror-keymap: 1.2.3
  3747. prosemirror-model: 1.25.7
  3748. prosemirror-state: 1.4.4
  3749. prosemirror-view: 1.41.8
  3750. [email protected]:
  3751. dependencies:
  3752. prosemirror-state: 1.4.4
  3753. prosemirror-transform: 1.12.0
  3754. prosemirror-view: 1.41.8
  3755. rope-sequence: 1.3.4
  3756. [email protected]:
  3757. dependencies:
  3758. prosemirror-state: 1.4.4
  3759. w3c-keyname: 2.2.8
  3760. [email protected]:
  3761. dependencies:
  3762. orderedmap: 2.1.1
  3763. [email protected]:
  3764. dependencies:
  3765. prosemirror-model: 1.25.7
  3766. prosemirror-state: 1.4.4
  3767. prosemirror-transform: 1.12.0
  3768. [email protected]:
  3769. dependencies:
  3770. prosemirror-model: 1.25.7
  3771. prosemirror-transform: 1.12.0
  3772. prosemirror-view: 1.41.8
  3773. [email protected]:
  3774. dependencies:
  3775. prosemirror-keymap: 1.2.3
  3776. prosemirror-model: 1.25.7
  3777. prosemirror-state: 1.4.4
  3778. prosemirror-transform: 1.12.0
  3779. prosemirror-view: 1.41.8
  3780. [email protected]:
  3781. dependencies:
  3782. prosemirror-model: 1.25.7
  3783. [email protected]:
  3784. dependencies:
  3785. prosemirror-model: 1.25.7
  3786. prosemirror-state: 1.4.4
  3787. prosemirror-transform: 1.12.0
  3788. [email protected]: {}
  3789. [email protected]: {}
  3790. [email protected]: {}
  3791. [email protected]: {}
  3792. [email protected]:
  3793. dependencies:
  3794. defu: 6.1.7
  3795. destr: 2.0.5
  3796. [email protected]: {}
  3797. [email protected]: {}
  3798. [email protected]([email protected]([email protected])):
  3799. dependencies:
  3800. '@floating-ui/dom': 1.7.6
  3801. '@floating-ui/vue': 1.1.11([email protected]([email protected]))
  3802. '@internationalized/date': 3.12.1
  3803. '@internationalized/number': 3.6.6
  3804. '@tanstack/vue-virtual': 3.13.24([email protected]([email protected]))
  3805. '@vueuse/core': 14.3.0([email protected]([email protected]))
  3806. '@vueuse/shared': 14.3.0([email protected]([email protected]))
  3807. aria-hidden: 1.2.6
  3808. defu: 6.1.7
  3809. ohash: 2.0.11
  3810. vue: 3.5.34([email protected])
  3811. transitivePeerDependencies:
  3812. - '@vue/composition-api'
  3813. [email protected]: {}
  3814. [email protected]: {}
  3815. [email protected]:
  3816. dependencies:
  3817. '@oxc-project/types': 0.130.0
  3818. '@rolldown/pluginutils': 1.0.1
  3819. optionalDependencies:
  3820. '@rolldown/binding-android-arm64': 1.0.1
  3821. '@rolldown/binding-darwin-arm64': 1.0.1
  3822. '@rolldown/binding-darwin-x64': 1.0.1
  3823. '@rolldown/binding-freebsd-x64': 1.0.1
  3824. '@rolldown/binding-linux-arm-gnueabihf': 1.0.1
  3825. '@rolldown/binding-linux-arm64-gnu': 1.0.1
  3826. '@rolldown/binding-linux-arm64-musl': 1.0.1
  3827. '@rolldown/binding-linux-ppc64-gnu': 1.0.1
  3828. '@rolldown/binding-linux-s390x-gnu': 1.0.1
  3829. '@rolldown/binding-linux-x64-gnu': 1.0.1
  3830. '@rolldown/binding-linux-x64-musl': 1.0.1
  3831. '@rolldown/binding-openharmony-arm64': 1.0.1
  3832. '@rolldown/binding-wasm32-wasi': 1.0.1
  3833. '@rolldown/binding-win32-arm64-msvc': 1.0.1
  3834. '@rolldown/binding-win32-x64-msvc': 1.0.1
  3835. [email protected]: {}
  3836. [email protected]:
  3837. dependencies:
  3838. xmlchars: 2.2.0
  3839. [email protected]: {}
  3840. [email protected]: {}
  3841. [email protected]:
  3842. dependencies:
  3843. shebang-regex: 3.0.0
  3844. [email protected]: {}
  3845. [email protected]: {}
  3846. [email protected]: {}
  3847. [email protected]:
  3848. dependencies:
  3849. '@polka/url': 1.0.0-next.29
  3850. mrmime: 2.0.1
  3851. totalist: 3.0.1
  3852. [email protected]: {}
  3853. [email protected]: {}
  3854. [email protected]: {}
  3855. [email protected]: {}
  3856. [email protected]:
  3857. dependencies:
  3858. emoji-regex: 8.0.0
  3859. is-fullwidth-code-point: 3.0.0
  3860. strip-ansi: 6.0.1
  3861. [email protected]:
  3862. dependencies:
  3863. eastasianwidth: 0.2.0
  3864. emoji-regex: 9.2.2
  3865. strip-ansi: 7.2.0
  3866. [email protected]:
  3867. dependencies:
  3868. ansi-regex: 5.0.1
  3869. [email protected]:
  3870. dependencies:
  3871. ansi-regex: 6.2.2
  3872. [email protected]: {}
  3873. [email protected]:
  3874. dependencies:
  3875. js-tokens: 9.0.1
  3876. [email protected]:
  3877. dependencies:
  3878. copy-anything: 4.0.5
  3879. [email protected]: {}
  3880. [email protected]: {}
  3881. [email protected]([email protected])([email protected]):
  3882. dependencies:
  3883. tailwindcss: 4.3.0
  3884. optionalDependencies:
  3885. tailwind-merge: 3.6.0
  3886. [email protected]: {}
  3887. [email protected]: {}
  3888. [email protected]: {}
  3889. [email protected]: {}
  3890. [email protected]: {}
  3891. [email protected]:
  3892. dependencies:
  3893. fdir: 6.5.0([email protected])
  3894. picomatch: 4.0.4
  3895. [email protected]: {}
  3896. [email protected]: {}
  3897. [email protected]:
  3898. dependencies:
  3899. tldts-core: 7.0.30
  3900. [email protected]: {}
  3901. [email protected]:
  3902. dependencies:
  3903. tldts: 7.0.30
  3904. [email protected]:
  3905. dependencies:
  3906. punycode: 2.3.1
  3907. [email protected]: {}
  3908. [email protected]: {}
  3909. [email protected]: {}
  3910. [email protected]: {}
  3911. [email protected]: {}
  3912. [email protected]:
  3913. dependencies:
  3914. acorn: 8.16.0
  3915. estree-walker: 3.0.3
  3916. magic-string: 0.30.21
  3917. unplugin: 2.3.11
  3918. [email protected]: {}
  3919. [email protected]: {}
  3920. [email protected]: {}
  3921. [email protected]:
  3922. dependencies:
  3923. hookable: 6.1.1
  3924. [email protected]:
  3925. dependencies:
  3926. css-tree: 3.2.1
  3927. ofetch: 1.5.1
  3928. ohash: 2.0.11
  3929. [email protected]:
  3930. dependencies:
  3931. acorn: 8.16.0
  3932. escape-string-regexp: 5.0.0
  3933. estree-walker: 3.0.3
  3934. local-pkg: 1.2.0
  3935. magic-string: 0.30.21
  3936. mlly: 1.8.2
  3937. pathe: 2.0.3
  3938. picomatch: 4.0.4
  3939. pkg-types: 2.3.1
  3940. scule: 1.3.0
  3941. strip-literal: 3.1.0
  3942. tinyglobby: 0.2.16
  3943. unplugin: 2.3.11
  3944. unplugin-utils: 0.3.1
  3945. [email protected](@nuxt/[email protected])(@vueuse/[email protected]([email protected]([email protected]))):
  3946. dependencies:
  3947. local-pkg: 1.2.0
  3948. magic-string: 0.30.21
  3949. picomatch: 4.0.4
  3950. unimport: 5.7.0
  3951. unplugin: 2.3.11
  3952. unplugin-utils: 0.3.1
  3953. optionalDependencies:
  3954. '@nuxt/kit': 4.4.6
  3955. '@vueuse/core': 14.3.0([email protected]([email protected]))
  3956. [email protected]:
  3957. dependencies:
  3958. pathe: 2.0.3
  3959. picomatch: 4.0.4
  3960. [email protected](@nuxt/[email protected])([email protected]([email protected])):
  3961. dependencies:
  3962. chokidar: 5.0.0
  3963. local-pkg: 1.2.0
  3964. magic-string: 0.30.21
  3965. mlly: 1.8.2
  3966. obug: 2.1.1
  3967. picomatch: 4.0.4
  3968. tinyglobby: 0.2.16
  3969. unplugin: 3.0.0
  3970. unplugin-utils: 0.3.1
  3971. vue: 3.5.34([email protected])
  3972. optionalDependencies:
  3973. '@nuxt/kit': 4.4.6
  3974. [email protected]:
  3975. dependencies:
  3976. '@jridgewell/remapping': 2.3.5
  3977. acorn: 8.16.0
  3978. picomatch: 4.0.4
  3979. webpack-virtual-modules: 0.6.2
  3980. [email protected]:
  3981. dependencies:
  3982. '@jridgewell/remapping': 2.3.5
  3983. picomatch: 4.0.4
  3984. webpack-virtual-modules: 0.6.2
  3985. [email protected]:
  3986. dependencies:
  3987. anymatch: 3.1.3
  3988. chokidar: 5.0.0
  3989. destr: 2.0.5
  3990. h3: 1.15.11
  3991. lru-cache: 11.5.0
  3992. node-fetch-native: 1.6.7
  3993. ofetch: 1.5.1
  3994. ufo: 1.6.4
  3995. [email protected]:
  3996. dependencies:
  3997. citty: 0.1.6
  3998. defu: 6.1.7
  3999. jiti: 2.7.0
  4000. knitwork: 1.3.0
  4001. scule: 1.3.0
  4002. [email protected]([email protected]([email protected]([email protected])))([email protected]([email protected])):
  4003. dependencies:
  4004. '@vueuse/core': 10.11.1([email protected]([email protected]))
  4005. reka-ui: 2.9.6([email protected]([email protected]))
  4006. vue: 3.5.34([email protected])
  4007. transitivePeerDependencies:
  4008. - '@vue/composition-api'
  4009. [email protected](@types/[email protected])([email protected])([email protected])([email protected]):
  4010. dependencies:
  4011. lightningcss: 1.32.0
  4012. picomatch: 4.0.4
  4013. postcss: 8.5.15
  4014. rolldown: 1.0.1
  4015. tinyglobby: 0.2.16
  4016. optionalDependencies:
  4017. '@types/node': 24.12.4
  4018. esbuild: 0.27.7
  4019. fsevents: 2.3.3
  4020. jiti: 2.7.0
  4021. yaml: 2.9.0
  4022. [email protected](@types/[email protected])([email protected])([email protected])([email protected]):
  4023. dependencies:
  4024. lightningcss: 1.32.0
  4025. picomatch: 4.0.4
  4026. postcss: 8.5.15
  4027. rolldown: 1.0.1
  4028. tinyglobby: 0.2.16
  4029. optionalDependencies:
  4030. '@types/node': 25.9.1
  4031. esbuild: 0.27.7
  4032. fsevents: 2.3.3
  4033. jiti: 2.7.0
  4034. yaml: 2.9.0
  4035. [email protected](@types/[email protected])([email protected])([email protected](@types/[email protected])([email protected])([email protected])([email protected])):
  4036. dependencies:
  4037. '@vitest/expect': 4.1.7
  4038. '@vitest/mocker': 4.1.7([email protected](@types/[email protected])([email protected])([email protected])([email protected]))
  4039. '@vitest/pretty-format': 4.1.7
  4040. '@vitest/runner': 4.1.7
  4041. '@vitest/snapshot': 4.1.7
  4042. '@vitest/spy': 4.1.7
  4043. '@vitest/utils': 4.1.7
  4044. es-module-lexer: 2.1.0
  4045. expect-type: 1.3.0
  4046. magic-string: 0.30.21
  4047. obug: 2.1.1
  4048. pathe: 2.0.3
  4049. picomatch: 4.0.4
  4050. std-env: 4.1.0
  4051. tinybench: 2.9.0
  4052. tinyexec: 1.1.2
  4053. tinyglobby: 0.2.16
  4054. tinyrainbow: 3.1.0
  4055. vite: 8.0.13(@types/[email protected])([email protected])([email protected])([email protected])
  4056. why-is-node-running: 2.3.0
  4057. optionalDependencies:
  4058. '@types/node': 25.9.1
  4059. jsdom: 29.1.1
  4060. transitivePeerDependencies:
  4061. - msw
  4062. [email protected]: {}
  4063. [email protected]: {}
  4064. [email protected]([email protected]([email protected])):
  4065. dependencies:
  4066. vue: 3.5.34([email protected])
  4067. [email protected](@vue/[email protected])([email protected]([email protected])([email protected]([email protected])))([email protected]([email protected])):
  4068. dependencies:
  4069. '@babel/generator': 8.0.0-rc.5
  4070. '@vue-macros/common': 3.1.2([email protected]([email protected]))
  4071. '@vue/devtools-api': 8.1.2
  4072. ast-walker-scope: 0.8.3
  4073. chokidar: 5.0.0
  4074. json5: 2.2.3
  4075. local-pkg: 1.2.0
  4076. magic-string: 0.30.21
  4077. mlly: 1.8.2
  4078. muggle-string: 0.4.1
  4079. pathe: 2.0.3
  4080. picomatch: 4.0.4
  4081. scule: 1.3.0
  4082. tinyglobby: 0.2.16
  4083. unplugin: 3.0.0
  4084. unplugin-utils: 0.3.1
  4085. vue: 3.5.34([email protected])
  4086. yaml: 2.9.0
  4087. optionalDependencies:
  4088. '@vue/compiler-sfc': 3.5.34
  4089. pinia: 3.0.4([email protected])([email protected]([email protected]))
  4090. [email protected]([email protected]):
  4091. dependencies:
  4092. '@volar/typescript': 2.4.28
  4093. '@vue/language-core': 3.3.1
  4094. typescript: 6.0.3
  4095. [email protected]([email protected]):
  4096. dependencies:
  4097. '@vue/compiler-dom': 3.5.34
  4098. '@vue/compiler-sfc': 3.5.34
  4099. '@vue/runtime-dom': 3.5.34
  4100. '@vue/server-renderer': 3.5.34([email protected]([email protected]))
  4101. '@vue/shared': 3.5.34
  4102. optionalDependencies:
  4103. typescript: 6.0.3
  4104. [email protected]: {}
  4105. [email protected]:
  4106. dependencies:
  4107. xml-name-validator: 5.0.0
  4108. [email protected]: {}
  4109. [email protected]: {}
  4110. [email protected]: {}
  4111. [email protected]:
  4112. dependencies:
  4113. '@exodus/bytes': 1.15.1
  4114. tr46: 6.0.0
  4115. webidl-conversions: 8.0.1
  4116. transitivePeerDependencies:
  4117. - '@noble/hashes'
  4118. [email protected]: {}
  4119. [email protected]:
  4120. dependencies:
  4121. isexe: 2.0.0
  4122. [email protected]:
  4123. dependencies:
  4124. siginfo: 2.0.0
  4125. stackback: 0.0.2
  4126. [email protected]:
  4127. dependencies:
  4128. ansi-styles: 4.3.0
  4129. string-width: 4.2.3
  4130. strip-ansi: 6.0.1
  4131. [email protected]:
  4132. dependencies:
  4133. ansi-styles: 6.2.3
  4134. string-width: 5.1.2
  4135. strip-ansi: 7.2.0
  4136. [email protected]: {}
  4137. [email protected]: {}
  4138. [email protected]([email protected]):
  4139. dependencies:
  4140. lib0: 0.2.117
  4141. yjs: 13.6.30
  4142. [email protected]: {}
  4143. [email protected]:
  4144. dependencies:
  4145. lib0: 0.2.117