pnpm-lock.yaml 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100
  1. lockfileVersion: '9.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. importers:
  6. .:
  7. dependencies:
  8. better-sqlite3:
  9. specifier: ^12.11.1
  10. version: 12.11.1
  11. devDependencies:
  12. '@inlang/paraglide-js':
  13. specifier: ^2.20.2
  14. version: 2.20.2
  15. '@sveltejs/adapter-node':
  16. specifier: ^5.5.7
  17. version: 5.5.7(@sveltejs/kit@2.68.0(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0)))(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0)))
  18. '@sveltejs/kit':
  19. specifier: ^2.68.0
  20. version: 2.68.0(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0)))(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0))
  21. '@sveltejs/vite-plugin-svelte':
  22. specifier: ^7.1.2
  23. version: 7.1.2(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0))
  24. '@tailwindcss/forms':
  25. specifier: ^0.5.11
  26. version: 0.5.11(tailwindcss@4.3.1)
  27. '@tailwindcss/typography':
  28. specifier: ^0.5.20
  29. version: 0.5.20(tailwindcss@4.3.1)
  30. '@tailwindcss/vite':
  31. specifier: ^4.3.1
  32. version: 4.3.1(vite@8.1.0(jiti@2.7.0))
  33. flowbite:
  34. specifier: ^4.0.2
  35. version: 4.0.2(rollup@4.62.2)
  36. flowbite-svelte:
  37. specifier: ^1.33.1
  38. version: 1.33.1(rollup@4.62.2)(svelte@5.56.4)(tailwindcss@4.3.1)
  39. flowbite-svelte-icons:
  40. specifier: ^3.1.0
  41. version: 3.1.0(svelte@5.56.4)
  42. svelte:
  43. specifier: ^5.56.4
  44. version: 5.56.4
  45. tailwindcss:
  46. specifier: ^4.3.1
  47. version: 4.3.1
  48. vite:
  49. specifier: ^8.1.0
  50. version: 8.1.0(jiti@2.7.0)
  51. packages:
  52. '@alloc/quick-lru@5.2.0':
  53. resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
  54. engines: {node: '>=10'}
  55. '@emnapi/core@1.11.1':
  56. resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==}
  57. '@emnapi/runtime@1.11.1':
  58. resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==}
  59. '@emnapi/wasi-threads@1.2.2':
  60. resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==}
  61. '@floating-ui/core@1.7.5':
  62. resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
  63. '@floating-ui/dom@1.7.6':
  64. resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==}
  65. '@floating-ui/utils@0.2.11':
  66. resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
  67. '@inlang/paraglide-js@2.20.2':
  68. resolution: {integrity: sha512-V8iY3uu/vQU94gEag1bdC3glMJSp4Dg3XMwfnabZLBh1Dv0F++DvDYlMeniqv2+nHbnS/twB75AM140OmpHDEg==}
  69. hasBin: true
  70. peerDependencies:
  71. typescript: '>=5.6'
  72. peerDependenciesMeta:
  73. typescript:
  74. optional: true
  75. '@inlang/recommend-sherlock@0.2.1':
  76. resolution: {integrity: sha512-ckv8HvHy/iTqaVAEKrr+gnl+p3XFNwe5D2+6w6wJk2ORV2XkcRkKOJ/XsTUJbPSiyi4PI+p+T3bqbmNx/rDUlg==}
  77. '@inlang/sdk@2.10.2':
  78. resolution: {integrity: sha512-O1ki72SNK6LPagaGrvlioBb1mWKvump7cO7P85hfGZjdFTmDdn3icI0A6MvaBsB3P9KQHAjzyubnN1OslGufTw==}
  79. engines: {node: '>=20.0.0'}
  80. '@jridgewell/gen-mapping@0.3.13':
  81. resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
  82. '@jridgewell/remapping@2.3.5':
  83. resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
  84. '@jridgewell/resolve-uri@3.1.2':
  85. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  86. engines: {node: '>=6.0.0'}
  87. '@jridgewell/sourcemap-codec@1.5.5':
  88. resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
  89. '@jridgewell/trace-mapping@0.3.31':
  90. resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
  91. '@lix-js/sdk@0.4.10':
  92. resolution: {integrity: sha512-0dMInAJK/67guTG5rRZaCEhvzC5cCXENOjaePA5AqMXrCE97kaY7SRor9e2vnoGsFIiGqXKlT0MCIoZj36G0gg==}
  93. engines: {node: '>=18'}
  94. '@lix-js/server-protocol-schema@0.1.1':
  95. resolution: {integrity: sha512-jBeALB6prAbtr5q4vTuxnRZZv1M2rKe8iNqRQhFJ4Tv7150unEa0vKyz0hs8Gl3fUGsWaNJBh3J8++fpbrpRBQ==}
  96. '@napi-rs/wasm-runtime@1.1.6':
  97. resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==}
  98. peerDependencies:
  99. '@emnapi/core': ^1.7.1
  100. '@emnapi/runtime': ^1.7.1
  101. '@oxc-project/types@0.137.0':
  102. resolution: {integrity: sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==}
  103. '@polka/url@1.0.0-next.29':
  104. resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
  105. '@popperjs/core@2.11.8':
  106. resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
  107. '@rolldown/binding-android-arm64@1.1.3':
  108. resolution: {integrity: sha512-DT6Z3PhvioeHMvxo+xHc3KtqggrI7CCTXCmC2h/5zUlp5jVitv7XEy+9q5/7v8IolhlioawpMo8Kg0EEBy7J0g==}
  109. engines: {node: ^20.19.0 || >=22.12.0}
  110. cpu: [arm64]
  111. os: [android]
  112. '@rolldown/binding-darwin-arm64@1.1.3':
  113. resolution: {integrity: sha512-0NwgwsjM7LrsuVnXMK3koTpagBNOhloc/BNjKqZjv4V5zI5r13qx69uVhRx+o5Z0yy4Hzq+lpy7TAgUG/ocvrw==}
  114. engines: {node: ^20.19.0 || >=22.12.0}
  115. cpu: [arm64]
  116. os: [darwin]
  117. '@rolldown/binding-darwin-x64@1.1.3':
  118. resolution: {integrity: sha512-YtiBp4disu6V560loT6PjMdiRaWmVvDNrUunAalbiFx2ggeJwxdAsgZMcoGP17uyAsTwAj5V1niksxlHnVQ1Sw==}
  119. engines: {node: ^20.19.0 || >=22.12.0}
  120. cpu: [x64]
  121. os: [darwin]
  122. '@rolldown/binding-freebsd-x64@1.1.3':
  123. resolution: {integrity: sha512-yD3EkEdXk2LypPxnf/kSZHirarsI8gcPzc62SukhR9VJTyvV+F9Q/GxWNuCojc7sXyuVC4DxRGhdDK4X8VSsbw==}
  124. engines: {node: ^20.19.0 || >=22.12.0}
  125. cpu: [x64]
  126. os: [freebsd]
  127. '@rolldown/binding-linux-arm-gnueabihf@1.1.3':
  128. resolution: {integrity: sha512-c+8vieQbsD7HNAHKIA34w0GJ9FedFFuJGD+7E6vz7Q3uqAIugL5p45fhlsj4UaAsHpcmlqugBWMhA0/j7o0sIg==}
  129. engines: {node: ^20.19.0 || >=22.12.0}
  130. cpu: [arm]
  131. os: [linux]
  132. '@rolldown/binding-linux-arm64-gnu@1.1.3':
  133. resolution: {integrity: sha512-50jD0uUwLvur7Zz9LHz17kaAdTPjn5wN93hEgjvmYFRZwiR7ZJYovTd5ipyWJDAnXKvZ+wgc+/Ika6dwSF5OcA==}
  134. engines: {node: ^20.19.0 || >=22.12.0}
  135. cpu: [arm64]
  136. os: [linux]
  137. libc: [glibc]
  138. '@rolldown/binding-linux-arm64-musl@1.1.3':
  139. resolution: {integrity: sha512-BO9+oPL8K9poZJBfYPsXNtYjPE5uM3qeehT3aFcW4LITOl+iSqhp0abzjR2nWBUNjIZeKXjAEWBZ64WjNoHd6w==}
  140. engines: {node: ^20.19.0 || >=22.12.0}
  141. cpu: [arm64]
  142. os: [linux]
  143. libc: [musl]
  144. '@rolldown/binding-linux-ppc64-gnu@1.1.3':
  145. resolution: {integrity: sha512-f3VpLB1vQ0Eo6ecr/6cekLnvYMFF4YBFoVGkfkvPLq1bAkbAwHYQPZKoAmG6OJyTcxxoC+AvezGx/S1obNC0Mw==}
  146. engines: {node: ^20.19.0 || >=22.12.0}
  147. cpu: [ppc64]
  148. os: [linux]
  149. libc: [glibc]
  150. '@rolldown/binding-linux-s390x-gnu@1.1.3':
  151. resolution: {integrity: sha512-AmurZ26Pqx/RI9N1gzEOCklkKXl927yjfXWUUS0O7Puh8ARM/Ob8qfrD3qnWksScdw6cSrW5PSHE9DyLu7+PtA==}
  152. engines: {node: ^20.19.0 || >=22.12.0}
  153. cpu: [s390x]
  154. os: [linux]
  155. libc: [glibc]
  156. '@rolldown/binding-linux-x64-gnu@1.1.3':
  157. resolution: {integrity: sha512-JJpqs8bRGITDOdbkNKnlojzBabbOHrqjSvDr0IVsZObE1lBcPjxItUEY9eWIDbxaJ3cGrXPWGfGkIxFijg/URg==}
  158. engines: {node: ^20.19.0 || >=22.12.0}
  159. cpu: [x64]
  160. os: [linux]
  161. libc: [glibc]
  162. '@rolldown/binding-linux-x64-musl@1.1.3':
  163. resolution: {integrity: sha512-rSJcdjPxzA/by/6/rYs+v+bXU7UjvnbUWz8MJb6kh6+knqB1dCrtHg0uu7C/4haqJvqdkYHQ5IGn+tCH9GLW/g==}
  164. engines: {node: ^20.19.0 || >=22.12.0}
  165. cpu: [x64]
  166. os: [linux]
  167. libc: [musl]
  168. '@rolldown/binding-openharmony-arm64@1.1.3':
  169. resolution: {integrity: sha512-hQ3/PYkDJICgevvyNcVrihVeqq7k1Pp3VZ9lY+dauAYUJKO+auqApvANhvR1An9BhmqYKvW2Mu1F9u4DXSMLxQ==}
  170. engines: {node: ^20.19.0 || >=22.12.0}
  171. cpu: [arm64]
  172. os: [openharmony]
  173. '@rolldown/binding-wasm32-wasi@1.1.3':
  174. resolution: {integrity: sha512-Elcv/BtML9lXrV6JuKITc/grN2kYV9gjsQpW8Jfw4ioK0TOkjBjye0nnyqQNy9STNaI20lXNaQBRrD5gSgR0Yg==}
  175. engines: {node: ^20.19.0 || >=22.12.0}
  176. cpu: [wasm32]
  177. '@rolldown/binding-win32-arm64-msvc@1.1.3':
  178. resolution: {integrity: sha512-2DrEfhluH9yhiaFApmsjsjwrSYbNcY1oFTzYSP1a535jDbV98zCFanA/96TBUd0iDFcxGmw9QRExwGCXz3U+/g==}
  179. engines: {node: ^20.19.0 || >=22.12.0}
  180. cpu: [arm64]
  181. os: [win32]
  182. '@rolldown/binding-win32-x64-msvc@1.1.3':
  183. resolution: {integrity: sha512-OL4OMk7UPXOeVGGd3qo5zJyPIljf4AFgk5QAkPPS+OoLuOOozhuaQGC18MxVTnw/06q93gShAJzlwnSCY9YtqA==}
  184. engines: {node: ^20.19.0 || >=22.12.0}
  185. cpu: [x64]
  186. os: [win32]
  187. '@rolldown/pluginutils@1.0.1':
  188. resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
  189. '@rollup/plugin-commonjs@29.0.3':
  190. resolution: {integrity: sha512-ZaOxZceP7SOUW7Lqw5IRVweSQYWaeIPnXIGLiB690EBA3FGJTO40EEr2L5yZplJWsgTCogILRSpcAe7+U0Otdg==}
  191. engines: {node: '>=16.0.0 || 14 >= 14.17'}
  192. peerDependencies:
  193. rollup: ^2.68.0||^3.0.0||^4.0.0
  194. peerDependenciesMeta:
  195. rollup:
  196. optional: true
  197. '@rollup/plugin-json@6.1.0':
  198. resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==}
  199. engines: {node: '>=14.0.0'}
  200. peerDependencies:
  201. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  202. peerDependenciesMeta:
  203. rollup:
  204. optional: true
  205. '@rollup/plugin-node-resolve@15.3.1':
  206. resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==}
  207. engines: {node: '>=14.0.0'}
  208. peerDependencies:
  209. rollup: ^2.78.0||^3.0.0||^4.0.0
  210. peerDependenciesMeta:
  211. rollup:
  212. optional: true
  213. '@rollup/plugin-node-resolve@16.0.3':
  214. resolution: {integrity: sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==}
  215. engines: {node: '>=14.0.0'}
  216. peerDependencies:
  217. rollup: ^2.78.0||^3.0.0||^4.0.0
  218. peerDependenciesMeta:
  219. rollup:
  220. optional: true
  221. '@rollup/plugin-replace@6.0.3':
  222. resolution: {integrity: sha512-J4RZarRvQAm5IF0/LwUUg+obsm+xZhYnbMXmXROyoSE1ATJe3oXSb9L5MMppdxP2ylNSjv6zFBwKYjcKMucVfA==}
  223. engines: {node: '>=14.0.0'}
  224. peerDependencies:
  225. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  226. peerDependenciesMeta:
  227. rollup:
  228. optional: true
  229. '@rollup/pluginutils@5.4.0':
  230. resolution: {integrity: sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==}
  231. engines: {node: '>=14.0.0'}
  232. peerDependencies:
  233. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  234. peerDependenciesMeta:
  235. rollup:
  236. optional: true
  237. '@rollup/rollup-android-arm-eabi@4.62.2':
  238. resolution: {integrity: sha512-6o7ZLZK+BeenkZCFNDXqpbjw9bD6nuWonvS/lwQJp7NoVVxm6p3qE7qQ5jGuBjiFsgvqjD8mZAU5oWxTmbOeOg==}
  239. cpu: [arm]
  240. os: [android]
  241. '@rollup/rollup-android-arm64@4.62.2':
  242. resolution: {integrity: sha512-BaH7BllCACHoH1LguOU56UItGfUWjujlO65kS9LAodViaN4bwIKd7oeW/ZHJ/4ljr/7MIiENnNy3HJ0zXv8Zkw==}
  243. cpu: [arm64]
  244. os: [android]
  245. '@rollup/rollup-darwin-arm64@4.62.2':
  246. resolution: {integrity: sha512-v39RCCvj4He82I9sFmk+M1VZ0PLM9sfsLVikjfx2hYBNALhrrOR2D3JjQA6AhlaSOgcR+RzrKY7e1+bT6SUO/A==}
  247. cpu: [arm64]
  248. os: [darwin]
  249. '@rollup/rollup-darwin-x64@4.62.2':
  250. resolution: {integrity: sha512-yl0y2vq3S3lHeuXhEdss6TWfKW8vkujImO12tn4ZkG/4oghr09LvdYm2RElVjokTQiUvDUGXLGsYeLqUMCKpGA==}
  251. cpu: [x64]
  252. os: [darwin]
  253. '@rollup/rollup-freebsd-arm64@4.62.2':
  254. resolution: {integrity: sha512-tT4pvt4qXD+vEoezupCWi+a1F0vvDiksiHc+PxRlYTOH1I6/X4id9jPxTP+Fg+545euaFT1jJVs4CEdHZAU1vw==}
  255. cpu: [arm64]
  256. os: [freebsd]
  257. '@rollup/rollup-freebsd-x64@4.62.2':
  258. resolution: {integrity: sha512-6nU5F2wCW+qvCBhTn1pdIU3bzsIoF7EUwsCDRxilWGprQR6yd508YnH9+OKFCwpfS8pjZqDUmnCAr7exax0XCg==}
  259. cpu: [x64]
  260. os: [freebsd]
  261. '@rollup/rollup-linux-arm-gnueabihf@4.62.2':
  262. resolution: {integrity: sha512-n1GJHPOvpIfhi3TmrCeh6S6URt9BFCt0KQE3qvexyGCTAKpR4Lg+eWvNZEqu7epxwus/8ElT3hacYEucm49SZg==}
  263. cpu: [arm]
  264. os: [linux]
  265. libc: [glibc]
  266. '@rollup/rollup-linux-arm-musleabihf@4.62.2':
  267. resolution: {integrity: sha512-JqgflS8wEB+UXV/vS1RpRbifGBeN4D5lz8D8oOFbFZw4vedvdOgCFAjfBmIMdW3yL10XpQQ0Ambepw6MXrhOnA==}
  268. cpu: [arm]
  269. os: [linux]
  270. libc: [musl]
  271. '@rollup/rollup-linux-arm64-gnu@4.62.2':
  272. resolution: {integrity: sha512-wnFJkogWvN4jm/hQRF2UBaeUmk20j5+DmHvoyWii2b8HJDyvz1MF2OU/6ynXt2KR63rbZLWkFpoytpdc/yBuSA==}
  273. cpu: [arm64]
  274. os: [linux]
  275. libc: [glibc]
  276. '@rollup/rollup-linux-arm64-musl@4.62.2':
  277. resolution: {integrity: sha512-HVu2bp0zhvJ8xHEV9+UUs7S90VadmBSY3LcIMvozbPo4AuMGDWlz3ymHLHZPX4hR67TKTt8Qp5PJ5RBg/i+RMQ==}
  278. cpu: [arm64]
  279. os: [linux]
  280. libc: [musl]
  281. '@rollup/rollup-linux-loong64-gnu@4.62.2':
  282. resolution: {integrity: sha512-mQqqAV8QaoSgr9I2fKDLY2BAVvmKjWoGiu/cSYQonsLvtqwEn1E4QYfnCOcp5zoEqNhsDYin1s6jx/VJmrxlZg==}
  283. cpu: [loong64]
  284. os: [linux]
  285. libc: [glibc]
  286. '@rollup/rollup-linux-loong64-musl@4.62.2':
  287. resolution: {integrity: sha512-IxKLoxCQ2IWi6bT2akyDUBGsOImDKB+sPp4EsTmwFQ/fMwpCKm8uLSSgP/Kx/QYUgKis6SEZ5/Nlhup0DIA0PQ==}
  288. cpu: [loong64]
  289. os: [linux]
  290. libc: [musl]
  291. '@rollup/rollup-linux-ppc64-gnu@4.62.2':
  292. resolution: {integrity: sha512-Mk5ha2RQSgyFfmYYLkBpPnUk8D8FriBxesO1u9O75X0mHgXL1UQcH5Itl2lurWL2tj0RxV9b9tJgipac0hRY9A==}
  293. cpu: [ppc64]
  294. os: [linux]
  295. libc: [glibc]
  296. '@rollup/rollup-linux-ppc64-musl@4.62.2':
  297. resolution: {integrity: sha512-CjvEnqJL/0/TQ3TXX3OPIJ/kmBellrWd4heXUmHeJlTnmwjKpSJzoehLaL6Xk0ZnMHBu9dZuFADNOrtjF4v+2w==}
  298. cpu: [ppc64]
  299. os: [linux]
  300. libc: [musl]
  301. '@rollup/rollup-linux-riscv64-gnu@4.62.2':
  302. resolution: {integrity: sha512-1SiZbzwdkaDURsew/tSOrooKiYy7EQGT6m8ufavAi9NEyQb/6VuIxFXAL1fqa4iZe3g4NbNk4P7J32z2tw5Mgg==}
  303. cpu: [riscv64]
  304. os: [linux]
  305. libc: [glibc]
  306. '@rollup/rollup-linux-riscv64-musl@4.62.2':
  307. resolution: {integrity: sha512-nQts12zJ3NQRoE6uYljOH89v7szzLDvG2JD/vsX+vGXU8w/At1GowTZ5/7qeFQ8m7L55rpR8Okugnuo5bgjy2Q==}
  308. cpu: [riscv64]
  309. os: [linux]
  310. libc: [musl]
  311. '@rollup/rollup-linux-s390x-gnu@4.62.2':
  312. resolution: {integrity: sha512-E9/ll019jhPIJgpzfZoIkBGhcz+kKNgVWYRY0zr9srBdPPFVpvOKW8VaJKUbeK+eZXyQF9ltME+Kk6affeaPgg==}
  313. cpu: [s390x]
  314. os: [linux]
  315. libc: [glibc]
  316. '@rollup/rollup-linux-x64-gnu@4.62.2':
  317. resolution: {integrity: sha512-5BqxR/pshjey51iliyzTD5Xi3EN0aLmQ2lZ3lvefVV9c82BvrLo2/6OT55iifpWBufs6kdwWbuOKS841DrmK9A==}
  318. cpu: [x64]
  319. os: [linux]
  320. libc: [glibc]
  321. '@rollup/rollup-linux-x64-musl@4.62.2':
  322. resolution: {integrity: sha512-uNN83XxQrRAh/w0/pmAfibcwyb6YWt4gP+dpnQKPVJshAloQ785ii8CT8ZCIxkGg9opVsvAlGhFitSm6D1Jjpg==}
  323. cpu: [x64]
  324. os: [linux]
  325. libc: [musl]
  326. '@rollup/rollup-openbsd-x64@4.62.2':
  327. resolution: {integrity: sha512-srjEIxSH3LRnJN6THczDHWQplqEMFiAJrTab0msUryh9kwNpkICf3Ea6q6MN/2cZwRFUNx5w+h6Hpi4QuHS6Zg==}
  328. cpu: [x64]
  329. os: [openbsd]
  330. '@rollup/rollup-openharmony-arm64@4.62.2':
  331. resolution: {integrity: sha512-8hOJnxgbyObnCm5AlRA3A931xX19xq80RjVTKgJOvEKWqJruP/Uf12IbAOaDjjEXYRewwHLfmF0YRIdK3OwKWA==}
  332. cpu: [arm64]
  333. os: [openharmony]
  334. '@rollup/rollup-win32-arm64-msvc@4.62.2':
  335. resolution: {integrity: sha512-mmF4AY1i0hG/bLWUctUq59gtmgaSIRa3cu/A3JFRp/sCNEme2bgDEiDS22P9FbnJB8NJNF4jPJiSP5RHQpUTDg==}
  336. cpu: [arm64]
  337. os: [win32]
  338. '@rollup/rollup-win32-ia32-msvc@4.62.2':
  339. resolution: {integrity: sha512-DZgkknc6jhHrk46V25vbAM0zZkyP0nSDkJB8/dRkLTxv470dOmWDqGoEJl/9A0dFfS7yE3REOwNDxpHwSLSt0Q==}
  340. cpu: [ia32]
  341. os: [win32]
  342. '@rollup/rollup-win32-x64-gnu@4.62.2':
  343. resolution: {integrity: sha512-T6xr6ucWSFto+VGajA8YH26LdpHRuP4YLHEKAtCWvJDOlnmWcDZVCI2Jmjr+IFHDlt2zRaTAKE4tfjTaWLgJBg==}
  344. cpu: [x64]
  345. os: [win32]
  346. '@rollup/rollup-win32-x64-msvc@4.62.2':
  347. resolution: {integrity: sha512-BfzEnDJOt9T8M989/lA37EcJgat01wLRnoi5dQf3QzOH7jzpqTAzdDbVfRljVr5r+jzKqpbHeyOfAaXxAd0PAA==}
  348. cpu: [x64]
  349. os: [win32]
  350. '@sinclair/typebox@0.31.28':
  351. resolution: {integrity: sha512-/s55Jujywdw/Jpan+vsy6JZs1z2ZTGxTmbZTPiuSL2wz9mfzA2gN1zzaqmvfi4pq+uOt7Du85fkiwv5ymW84aQ==}
  352. '@sqlite.org/sqlite-wasm@3.48.0-build4':
  353. resolution: {integrity: sha512-hI6twvUkzOmyGZhQMza1gpfqErZxXRw6JEsiVjUbo7tFanVD+8Oil0Ih3l2nGzHdxPI41zFmfUQG7GHqhciKZQ==}
  354. hasBin: true
  355. '@standard-schema/spec@1.1.0':
  356. resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
  357. '@sveltejs/acorn-typescript@1.0.10':
  358. resolution: {integrity: sha512-4WfKk68eTih+MiJD4fSbxN7E8kVBmTMPWHUPYjvl2N0rMs53YLTT8/YjKU5Dtnz5LqDjl7LEw4U7lXR2W3J5WA==}
  359. peerDependencies:
  360. acorn: ^8.9.0
  361. '@sveltejs/adapter-node@5.5.7':
  362. resolution: {integrity: sha512-uOfc9eVlI3A37RRSaKcgrheBYPrfJwC9VMqDp8x/O6tlKdcLLvHThSWD0KNIbjQ/d+7bwLGx3vx6aowAcRfd2g==}
  363. peerDependencies:
  364. '@sveltejs/kit': ^2.4.0
  365. '@sveltejs/kit@2.68.0':
  366. resolution: {integrity: sha512-PdKiWsqinAoubVsSiRgVFkg3MHzGhQPnwQ8VxnGQKpZYijpapZ3UHHBje0GeByt2TvfjHPw+kxV+dNK2RIZg9g==}
  367. engines: {node: '>=18.13'}
  368. hasBin: true
  369. peerDependencies:
  370. '@opentelemetry/api': ^1.0.0
  371. '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0 || ^7.0.0
  372. svelte: ^4.0.0 || ^5.0.0-next.0
  373. typescript: ^5.3.3 || ^6.0.0
  374. vite: ^5.0.3 || ^6.0.0 || ^7.0.0-beta.0 || ^8.0.0
  375. peerDependenciesMeta:
  376. '@opentelemetry/api':
  377. optional: true
  378. typescript:
  379. optional: true
  380. '@sveltejs/vite-plugin-svelte@7.1.2':
  381. resolution: {integrity: sha512-DrUBA2UXRfDmUX/ZTiEopd3X40yavsJF1FX2RygcuIScHL7o5YX1fMvoYnDhjeJQC4weCOklirpNWlcb2NiSeA==}
  382. engines: {node: ^20.19 || ^22.12 || >=24}
  383. peerDependencies:
  384. svelte: ^5.46.4
  385. vite: ^8.0.0-beta.7 || ^8.0.0
  386. '@tailwindcss/forms@0.5.11':
  387. resolution: {integrity: sha512-h9wegbZDPurxG22xZSoWtdzc41/OlNEUQERNqI/0fOwa2aVlWGu7C35E/x6LDyD3lgtztFSSjKZyuVM0hxhbgA==}
  388. peerDependencies:
  389. tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1'
  390. '@tailwindcss/node@4.3.1':
  391. resolution: {integrity: sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==}
  392. '@tailwindcss/oxide-android-arm64@4.3.1':
  393. resolution: {integrity: sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==}
  394. engines: {node: '>= 20'}
  395. cpu: [arm64]
  396. os: [android]
  397. '@tailwindcss/oxide-darwin-arm64@4.3.1':
  398. resolution: {integrity: sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==}
  399. engines: {node: '>= 20'}
  400. cpu: [arm64]
  401. os: [darwin]
  402. '@tailwindcss/oxide-darwin-x64@4.3.1':
  403. resolution: {integrity: sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==}
  404. engines: {node: '>= 20'}
  405. cpu: [x64]
  406. os: [darwin]
  407. '@tailwindcss/oxide-freebsd-x64@4.3.1':
  408. resolution: {integrity: sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==}
  409. engines: {node: '>= 20'}
  410. cpu: [x64]
  411. os: [freebsd]
  412. '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.1':
  413. resolution: {integrity: sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==}
  414. engines: {node: '>= 20'}
  415. cpu: [arm]
  416. os: [linux]
  417. '@tailwindcss/oxide-linux-arm64-gnu@4.3.1':
  418. resolution: {integrity: sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==}
  419. engines: {node: '>= 20'}
  420. cpu: [arm64]
  421. os: [linux]
  422. libc: [glibc]
  423. '@tailwindcss/oxide-linux-arm64-musl@4.3.1':
  424. resolution: {integrity: sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==}
  425. engines: {node: '>= 20'}
  426. cpu: [arm64]
  427. os: [linux]
  428. libc: [musl]
  429. '@tailwindcss/oxide-linux-x64-gnu@4.3.1':
  430. resolution: {integrity: sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==}
  431. engines: {node: '>= 20'}
  432. cpu: [x64]
  433. os: [linux]
  434. libc: [glibc]
  435. '@tailwindcss/oxide-linux-x64-musl@4.3.1':
  436. resolution: {integrity: sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==}
  437. engines: {node: '>= 20'}
  438. cpu: [x64]
  439. os: [linux]
  440. libc: [musl]
  441. '@tailwindcss/oxide-wasm32-wasi@4.3.1':
  442. resolution: {integrity: sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==}
  443. engines: {node: '>=14.0.0'}
  444. cpu: [wasm32]
  445. bundledDependencies:
  446. - '@napi-rs/wasm-runtime'
  447. - '@emnapi/core'
  448. - '@emnapi/runtime'
  449. - '@tybys/wasm-util'
  450. - '@emnapi/wasi-threads'
  451. - tslib
  452. '@tailwindcss/oxide-win32-arm64-msvc@4.3.1':
  453. resolution: {integrity: sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==}
  454. engines: {node: '>= 20'}
  455. cpu: [arm64]
  456. os: [win32]
  457. '@tailwindcss/oxide-win32-x64-msvc@4.3.1':
  458. resolution: {integrity: sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==}
  459. engines: {node: '>= 20'}
  460. cpu: [x64]
  461. os: [win32]
  462. '@tailwindcss/oxide@4.3.1':
  463. resolution: {integrity: sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==}
  464. engines: {node: '>= 20'}
  465. '@tailwindcss/postcss@4.3.1':
  466. resolution: {integrity: sha512-dNJuNbdEJT/SWRuXTYP1WSamelsz3ztkUsdtWQPjrexysrTpaEPM40P/71knXiXLYEojqPOEGitVLLpPMS5T6A==}
  467. '@tailwindcss/typography@0.5.20':
  468. resolution: {integrity: sha512-hwbzQuNUfcPvbegQFatVPl/MY/tcM9KLl963hQ5laJKPh81TEZ1+dNG9PirGvcaDBkp+BCshExAyKVPW91dozw==}
  469. peerDependencies:
  470. tailwindcss: '>=3.0.0 || >=4.0.0 || insiders'
  471. '@tailwindcss/vite@4.3.1':
  472. resolution: {integrity: sha512-hItDHuIIlEV61R+faXu66s1K36aTurO/Qw0e45Vskz57gXl9pWOT6eg3zmcEui6CZXddbN7zd41bwmvag4JGwQ==}
  473. peerDependencies:
  474. vite: ^5.2.0 || ^6 || ^7 || ^8
  475. '@tybys/wasm-util@0.10.3':
  476. resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==}
  477. '@types/cookie@0.6.0':
  478. resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
  479. '@types/estree@1.0.9':
  480. resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
  481. '@types/resolve@1.20.2':
  482. resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
  483. '@types/trusted-types@2.0.7':
  484. resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
  485. acorn@8.17.0:
  486. resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==}
  487. engines: {node: '>=0.4.0'}
  488. hasBin: true
  489. apexcharts@5.15.2:
  490. resolution: {integrity: sha512-qbd+ehDiRxo++wAqaGLmJcd683ktulTqoku4WYYyQ3XOgJIn4yhOQGV27KcdK7c2yhwxblyh4mgMm8ukI0wC0Q==}
  491. aria-query@5.3.1:
  492. resolution: {integrity: sha512-Z/ZeOgVl7bcSYZ/u/rh0fOpvEpq//LZmdbkXyc7syVzjPAhfOa9ebsdTSjEBDU4vs5nC98Kfduj1uFo0qyET3g==}
  493. engines: {node: '>= 0.4'}
  494. array-timsort@1.0.3:
  495. resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==}
  496. axobject-query@4.1.0:
  497. resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
  498. engines: {node: '>= 0.4'}
  499. base64-js@1.5.1:
  500. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  501. better-sqlite3@12.11.1:
  502. resolution: {integrity: sha512-dq9AtApgg5PGFtBzPFSBl3HZQjHok5gaQCM6zh2Yk0aSmDCs1CbnVI8/HgASQkNKsWFpseIO9beg5xxpYhbIfA==}
  503. engines: {node: 20.x || 22.x || 23.x || 24.x || 25.x || 26.x}
  504. bindings@1.5.0:
  505. resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
  506. bl@4.1.0:
  507. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  508. buffer@5.7.1:
  509. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  510. chownr@1.1.4:
  511. resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
  512. clsx@2.1.1:
  513. resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
  514. engines: {node: '>=6'}
  515. commander@11.1.0:
  516. resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==}
  517. engines: {node: '>=16'}
  518. comment-json@4.6.2:
  519. resolution: {integrity: sha512-R2rze/hDX30uul4NZoIZ76ImSJLFxn/1/ZxtKC1L77y2X1k+yYu1joKbAtMA2Fg3hZrTOiw0I5mwVMo0cf250w==}
  520. engines: {node: '>= 6'}
  521. commondir@1.0.1:
  522. resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
  523. consola@3.4.0:
  524. resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==}
  525. engines: {node: ^14.18.0 || >=16.10.0}
  526. cookie@0.6.0:
  527. resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
  528. engines: {node: '>= 0.6'}
  529. cssesc@3.0.0:
  530. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  531. engines: {node: '>=4'}
  532. hasBin: true
  533. date-fns@4.4.0:
  534. resolution: {integrity: sha512-+1UMbeh68lH1SegH83CGWwpb6OHHbpSgr3+s5Eww5M4CAgswBpoWS0AjTOfEJ33HiYKz1hdj/KTFprzXHmq/6w==}
  535. decompress-response@6.0.0:
  536. resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
  537. engines: {node: '>=10'}
  538. dedent@1.5.1:
  539. resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==}
  540. peerDependencies:
  541. babel-plugin-macros: ^3.1.0
  542. peerDependenciesMeta:
  543. babel-plugin-macros:
  544. optional: true
  545. deep-extend@0.6.0:
  546. resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
  547. engines: {node: '>=4.0.0'}
  548. deepmerge@4.3.1:
  549. resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
  550. engines: {node: '>=0.10.0'}
  551. detect-libc@2.1.2:
  552. resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
  553. engines: {node: '>=8'}
  554. devalue@5.8.1:
  555. resolution: {integrity: sha512-4CXDYRBGqN+57wVJkuXBYmpAVUSg3L6JAQa/DFqm238G73E1wuyc/JhGQJzN7vUf/CMphYau2zXbfWzDR5aTEw==}
  556. end-of-stream@1.4.5:
  557. resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
  558. enhanced-resolve@5.21.6:
  559. resolution: {integrity: sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==}
  560. engines: {node: '>=10.13.0'}
  561. es-errors@1.3.0:
  562. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  563. engines: {node: '>= 0.4'}
  564. esm-env@1.2.2:
  565. resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==}
  566. esprima@4.0.1:
  567. resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
  568. engines: {node: '>=4'}
  569. hasBin: true
  570. esrap@2.2.12:
  571. resolution: {integrity: sha512-On0QbLyaiAkVC4eXtgnXK9Kh2opit+3rcUSOc45DqJ2s/X2eXAHsGOKRSJ6IDagQEW5vPyivANfXUiqgXC67Rw==}
  572. peerDependencies:
  573. '@typescript-eslint/types': ^8.2.0
  574. peerDependenciesMeta:
  575. '@typescript-eslint/types':
  576. optional: true
  577. estree-walker@2.0.2:
  578. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  579. expand-template@2.0.3:
  580. resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
  581. engines: {node: '>=6'}
  582. fdir@6.5.0:
  583. resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
  584. engines: {node: '>=12.0.0'}
  585. peerDependencies:
  586. picomatch: ^3 || ^4
  587. peerDependenciesMeta:
  588. picomatch:
  589. optional: true
  590. file-uri-to-path@1.0.0:
  591. resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
  592. flowbite-datepicker@1.3.2:
  593. resolution: {integrity: sha512-6Nfm0MCVX3mpaR7YSCjmEO2GO8CDt6CX8ZpQnGdeu03WUCWtEPQ/uy0PUiNtIJjJZWnX0Cm3H55MOhbD1g+E/g==}
  594. flowbite-datepicker@2.0.0:
  595. resolution: {integrity: sha512-m81hl0Bimq45MUg4maJLOnXrX+C9lZ0AkjMb9uotuVUSr729k/YiymWDfVAm63AYDH7g7y3rI3ke3XaBzWWqLw==}
  596. flowbite-svelte-icons@3.1.0:
  597. resolution: {integrity: sha512-ZKBFlJY6VbORSo0aHvhqP152/QQN+YKU2upZA6lOkIbTN2vHgENerzd+PnZpLA+os3QbJTG2LKK0l7Zeh1vDBQ==}
  598. peerDependencies:
  599. svelte: ^5.0.0
  600. flowbite-svelte@1.33.1:
  601. resolution: {integrity: sha512-HIG61H/YvWbfk0JTfirbPFb1F/YRPiJWYlUE7KTlmZ1X/ZTG6NZA9CgRuraO358cdpt0kv1gPYldrAKM1Apx2w==}
  602. peerDependencies:
  603. svelte: ^5.40.0
  604. tailwindcss: ^4.1.4
  605. flowbite@2.5.2:
  606. resolution: {integrity: sha512-kwFD3n8/YW4EG8GlY3Od9IoKND97kitO+/ejISHSqpn3vw2i5K/+ZI8Jm2V+KC4fGdnfi0XZ+TzYqQb4Q1LshA==}
  607. flowbite@3.1.2:
  608. resolution: {integrity: sha512-MkwSgbbybCYgMC+go6Da5idEKUFfMqc/AmSjm/2ZbdmvoKf5frLPq/eIhXc9P+rC8t9boZtUXzHDgt5whZ6A/Q==}
  609. flowbite@4.0.2:
  610. resolution: {integrity: sha512-TxBdfZpd3HktHH4ashiYjirrSZeVPtG1OCRZMKTeXUa9FOlMxSF98zgjMB/AxE49KZ+rlfgWynAlaNpWxrqZmA==}
  611. fs-constants@1.0.0:
  612. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  613. fsevents@2.3.3:
  614. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  615. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  616. os: [darwin]
  617. function-bind@1.1.2:
  618. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  619. github-from-package@0.0.0:
  620. resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
  621. graceful-fs@4.2.11:
  622. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  623. hasown@2.0.4:
  624. resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==}
  625. engines: {node: '>= 0.4'}
  626. human-id@4.2.0:
  627. resolution: {integrity: sha512-K3GbkIWqyvvlpfhBPlbEvD97TtqBpAYA4kt+cn2lD2x2HuohzZCibcA2nOlnJT6exqvJLggoB5nv2dNf192nEA==}
  628. hasBin: true
  629. ieee754@1.2.1:
  630. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  631. inherits@2.0.4:
  632. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  633. ini@1.3.8:
  634. resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
  635. is-core-module@2.16.2:
  636. resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==}
  637. engines: {node: '>= 0.4'}
  638. is-module@1.0.0:
  639. resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
  640. is-reference@1.2.1:
  641. resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
  642. is-reference@3.0.3:
  643. resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
  644. jiti@2.7.0:
  645. resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==}
  646. hasBin: true
  647. js-sha256@0.11.1:
  648. resolution: {integrity: sha512-o6WSo/LUvY2uC4j7mO50a2ms7E/EAdbP0swigLV+nzHKTTaYnaLIWJ02VdXrsJX0vGedDESQnLsOekr94ryfjg==}
  649. json5@2.2.3:
  650. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  651. engines: {node: '>=6'}
  652. hasBin: true
  653. kleur@4.1.5:
  654. resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
  655. engines: {node: '>=6'}
  656. kysely@0.28.17:
  657. resolution: {integrity: sha512-nbD8lB9EB3wNdMhOCdx5Li8DxnLbvKByylRLcJ1h+4SkrowVeECAyZlyiKMThF7xFdRz0jSQ2MoJr+wXux2y0Q==}
  658. engines: {node: '>=20.0.0'}
  659. lightningcss-android-arm64@1.32.0:
  660. resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
  661. engines: {node: '>= 12.0.0'}
  662. cpu: [arm64]
  663. os: [android]
  664. lightningcss-darwin-arm64@1.32.0:
  665. resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
  666. engines: {node: '>= 12.0.0'}
  667. cpu: [arm64]
  668. os: [darwin]
  669. lightningcss-darwin-x64@1.32.0:
  670. resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
  671. engines: {node: '>= 12.0.0'}
  672. cpu: [x64]
  673. os: [darwin]
  674. lightningcss-freebsd-x64@1.32.0:
  675. resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
  676. engines: {node: '>= 12.0.0'}
  677. cpu: [x64]
  678. os: [freebsd]
  679. lightningcss-linux-arm-gnueabihf@1.32.0:
  680. resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
  681. engines: {node: '>= 12.0.0'}
  682. cpu: [arm]
  683. os: [linux]
  684. lightningcss-linux-arm64-gnu@1.32.0:
  685. resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
  686. engines: {node: '>= 12.0.0'}
  687. cpu: [arm64]
  688. os: [linux]
  689. libc: [glibc]
  690. lightningcss-linux-arm64-musl@1.32.0:
  691. resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
  692. engines: {node: '>= 12.0.0'}
  693. cpu: [arm64]
  694. os: [linux]
  695. libc: [musl]
  696. lightningcss-linux-x64-gnu@1.32.0:
  697. resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
  698. engines: {node: '>= 12.0.0'}
  699. cpu: [x64]
  700. os: [linux]
  701. libc: [glibc]
  702. lightningcss-linux-x64-musl@1.32.0:
  703. resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
  704. engines: {node: '>= 12.0.0'}
  705. cpu: [x64]
  706. os: [linux]
  707. libc: [musl]
  708. lightningcss-win32-arm64-msvc@1.32.0:
  709. resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
  710. engines: {node: '>= 12.0.0'}
  711. cpu: [arm64]
  712. os: [win32]
  713. lightningcss-win32-x64-msvc@1.32.0:
  714. resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
  715. engines: {node: '>= 12.0.0'}
  716. cpu: [x64]
  717. os: [win32]
  718. lightningcss@1.32.0:
  719. resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
  720. engines: {node: '>= 12.0.0'}
  721. locate-character@3.0.0:
  722. resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
  723. magic-string@0.30.21:
  724. resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
  725. mimic-response@3.1.0:
  726. resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
  727. engines: {node: '>=10'}
  728. mini-svg-data-uri@1.4.4:
  729. resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
  730. hasBin: true
  731. minimist@1.2.8:
  732. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  733. mkdirp-classic@0.5.3:
  734. resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
  735. mrmime@2.0.1:
  736. resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
  737. engines: {node: '>=10'}
  738. nanoid@3.3.15:
  739. resolution: {integrity: sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==}
  740. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  741. hasBin: true
  742. napi-build-utils@2.0.0:
  743. resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
  744. node-abi@3.92.0:
  745. resolution: {integrity: sha512-KdHvFWZjEKDf0cakgFjebl371GPsISX2oZHcuyKqM7DtogIsHrqKeLTo8wBHxaXRAQlY2PsPlZmfo+9ZCxEREQ==}
  746. engines: {node: '>=10'}
  747. obug@2.1.3:
  748. resolution: {integrity: sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==}
  749. engines: {node: '>=12.20.0'}
  750. once@1.4.0:
  751. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  752. path-parse@1.0.7:
  753. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  754. picocolors@1.1.1:
  755. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  756. picomatch@4.0.4:
  757. resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
  758. engines: {node: '>=12'}
  759. postcss-selector-parser@6.0.10:
  760. resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
  761. engines: {node: '>=4'}
  762. postcss@8.5.15:
  763. resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
  764. engines: {node: ^10 || ^12 || >=14}
  765. prebuild-install@7.1.3:
  766. resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
  767. engines: {node: '>=10'}
  768. deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
  769. hasBin: true
  770. pump@3.0.4:
  771. resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==}
  772. rc@1.2.8:
  773. resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
  774. hasBin: true
  775. readable-stream@3.6.2:
  776. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  777. engines: {node: '>= 6'}
  778. resolve@1.22.12:
  779. resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==}
  780. engines: {node: '>= 0.4'}
  781. hasBin: true
  782. rolldown@1.1.3:
  783. resolution: {integrity: sha512-1F1eEtUBtFvcGm1HQ9TiUIUHPQG7mSAODrhIzjxoUEFuo8OcbrGLiVLkevNgj84TE4lnHvnumwFjhJO5Eu135g==}
  784. engines: {node: ^20.19.0 || >=22.12.0}
  785. hasBin: true
  786. rollup@4.62.2:
  787. resolution: {integrity: sha512-RFnrW4lhXA3s3eqHDZvN654g8OTjzRfqpIRJYczCGB6HzphckVAi/Qh4tbPUbRuDi7s1Llv8g/NspLkttY3gTA==}
  788. engines: {node: '>=18.0.0', npm: '>=8.0.0'}
  789. hasBin: true
  790. safe-buffer@5.2.1:
  791. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  792. semver@7.8.5:
  793. resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==}
  794. engines: {node: '>=10'}
  795. hasBin: true
  796. set-cookie-parser@3.1.1:
  797. resolution: {integrity: sha512-vM9SUhjsUYs6UeJUmygc5Ofm5eQGe85riob5ju6XCgFGJI5PLV4nrDAQpQjd+LkFBpAkADn5BQQpZ9EUNkyLuA==}
  798. simple-concat@1.0.1:
  799. resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
  800. simple-get@4.0.1:
  801. resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
  802. sirv@3.0.2:
  803. resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
  804. engines: {node: '>=18'}
  805. source-map-js@1.2.1:
  806. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  807. engines: {node: '>=0.10.0'}
  808. sqlite-wasm-kysely@0.3.0:
  809. resolution: {integrity: sha512-TzjBNv7KwRw6E3pdKdlRyZiTmUIE0UttT/Sl56MVwVARl/u5gp978KepazCJZewFUnlWHz9i3NQd4kOtP/Afdg==}
  810. peerDependencies:
  811. kysely: '*'
  812. string_decoder@1.3.0:
  813. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  814. strip-json-comments@2.0.1:
  815. resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
  816. engines: {node: '>=0.10.0'}
  817. supports-preserve-symlinks-flag@1.0.0:
  818. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  819. engines: {node: '>= 0.4'}
  820. svelte@5.56.4:
  821. resolution: {integrity: sha512-/d0QHehmRuJW8gVz395MTkPcPozxzdjBMBE8oEYGz8O3b9KTMzzQ9ZHJQLuFKOHOPQbU6kx/X4iid/EBBzH7iw==}
  822. engines: {node: '>=18'}
  823. tailwind-merge@3.6.0:
  824. resolution: {integrity: sha512-uxL7qAVQriqRQPAyK3pj66VqskWqoZ37PW94jwOTwNfq/z9oyu1V+eqrZqtR2+fCiXdYOZe/Modt8GtvqNzu+w==}
  825. tailwind-variants@3.2.2:
  826. resolution: {integrity: sha512-Mi4kHeMTLvKlM98XPnK+7HoBPmf4gygdFmqQPaDivc3DpYS6aIY6KiG/PgThrGvii5YZJqRsPz0aPyhoFzmZgg==}
  827. engines: {node: '>=16.x', pnpm: '>=7.x'}
  828. peerDependencies:
  829. tailwind-merge: '>=3.0.0'
  830. tailwindcss: '*'
  831. peerDependenciesMeta:
  832. tailwind-merge:
  833. optional: true
  834. tailwindcss@4.3.1:
  835. resolution: {integrity: sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==}
  836. tapable@2.3.3:
  837. resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
  838. engines: {node: '>=6'}
  839. tar-fs@2.1.5:
  840. resolution: {integrity: sha512-OboTd8mmMhZDNPV+UjQcK9yKAatXu2aJ+r1w4im1Otd4M4fl2hwvdoXUxIYHFTHWK/3y3FarBP70v3vwmGlOxw==}
  841. tar-stream@2.2.0:
  842. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  843. engines: {node: '>=6'}
  844. tinyglobby@0.2.17:
  845. resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
  846. engines: {node: '>=12.0.0'}
  847. totalist@3.0.1:
  848. resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
  849. engines: {node: '>=6'}
  850. tslib@2.8.1:
  851. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  852. tunnel-agent@0.6.0:
  853. resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
  854. unplugin@2.3.11:
  855. resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
  856. engines: {node: '>=18.12.0'}
  857. urlpattern-polyfill@10.1.0:
  858. resolution: {integrity: sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==}
  859. util-deprecate@1.0.2:
  860. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  861. uuid@14.0.1:
  862. resolution: {integrity: sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew==}
  863. hasBin: true
  864. vite@8.1.0:
  865. resolution: {integrity: sha512-BuJcQK/56NQTWDGn4ABea3q4SSBdNPWwNZKTkkUpcMPnLoquSYH8llRtSUIgoL1KSCpHt5eghLShn50mH36y7Q==}
  866. engines: {node: ^20.19.0 || >=22.12.0}
  867. hasBin: true
  868. peerDependencies:
  869. '@types/node': ^20.19.0 || >=22.12.0
  870. '@vitejs/devtools': ^0.3.0
  871. esbuild: ^0.27.0 || ^0.28.0
  872. jiti: '>=1.21.0'
  873. less: ^4.0.0
  874. sass: ^1.70.0
  875. sass-embedded: ^1.70.0
  876. stylus: '>=0.54.8'
  877. sugarss: ^5.0.0
  878. terser: ^5.16.0
  879. tsx: ^4.8.1
  880. yaml: ^2.4.2
  881. peerDependenciesMeta:
  882. '@types/node':
  883. optional: true
  884. '@vitejs/devtools':
  885. optional: true
  886. esbuild:
  887. optional: true
  888. jiti:
  889. optional: true
  890. less:
  891. optional: true
  892. sass:
  893. optional: true
  894. sass-embedded:
  895. optional: true
  896. stylus:
  897. optional: true
  898. sugarss:
  899. optional: true
  900. terser:
  901. optional: true
  902. tsx:
  903. optional: true
  904. yaml:
  905. optional: true
  906. vitefu@1.1.3:
  907. resolution: {integrity: sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==}
  908. peerDependencies:
  909. vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
  910. peerDependenciesMeta:
  911. vite:
  912. optional: true
  913. webpack-virtual-modules@0.6.2:
  914. resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
  915. wrappy@1.0.2:
  916. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  917. zimmerframe@1.1.4:
  918. resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==}
  919. snapshots:
  920. '@alloc/quick-lru@5.2.0': {}
  921. '@emnapi/core@1.11.1':
  922. dependencies:
  923. '@emnapi/wasi-threads': 1.2.2
  924. tslib: 2.8.1
  925. optional: true
  926. '@emnapi/runtime@1.11.1':
  927. dependencies:
  928. tslib: 2.8.1
  929. optional: true
  930. '@emnapi/wasi-threads@1.2.2':
  931. dependencies:
  932. tslib: 2.8.1
  933. optional: true
  934. '@floating-ui/core@1.7.5':
  935. dependencies:
  936. '@floating-ui/utils': 0.2.11
  937. '@floating-ui/dom@1.7.6':
  938. dependencies:
  939. '@floating-ui/core': 1.7.5
  940. '@floating-ui/utils': 0.2.11
  941. '@floating-ui/utils@0.2.11': {}
  942. '@inlang/paraglide-js@2.20.2':
  943. dependencies:
  944. '@inlang/recommend-sherlock': 0.2.1
  945. '@inlang/sdk': 2.10.2
  946. commander: 11.1.0
  947. consola: 3.4.0
  948. json5: 2.2.3
  949. unplugin: 2.3.11
  950. urlpattern-polyfill: 10.1.0
  951. transitivePeerDependencies:
  952. - babel-plugin-macros
  953. '@inlang/recommend-sherlock@0.2.1':
  954. dependencies:
  955. comment-json: 4.6.2
  956. '@inlang/sdk@2.10.2':
  957. dependencies:
  958. '@lix-js/sdk': 0.4.10
  959. '@sinclair/typebox': 0.31.28
  960. kysely: 0.28.17
  961. sqlite-wasm-kysely: 0.3.0(kysely@0.28.17)
  962. uuid: 14.0.1
  963. transitivePeerDependencies:
  964. - babel-plugin-macros
  965. '@jridgewell/gen-mapping@0.3.13':
  966. dependencies:
  967. '@jridgewell/sourcemap-codec': 1.5.5
  968. '@jridgewell/trace-mapping': 0.3.31
  969. '@jridgewell/remapping@2.3.5':
  970. dependencies:
  971. '@jridgewell/gen-mapping': 0.3.13
  972. '@jridgewell/trace-mapping': 0.3.31
  973. '@jridgewell/resolve-uri@3.1.2': {}
  974. '@jridgewell/sourcemap-codec@1.5.5': {}
  975. '@jridgewell/trace-mapping@0.3.31':
  976. dependencies:
  977. '@jridgewell/resolve-uri': 3.1.2
  978. '@jridgewell/sourcemap-codec': 1.5.5
  979. '@lix-js/sdk@0.4.10':
  980. dependencies:
  981. '@lix-js/server-protocol-schema': 0.1.1
  982. dedent: 1.5.1
  983. human-id: 4.2.0
  984. js-sha256: 0.11.1
  985. kysely: 0.28.17
  986. sqlite-wasm-kysely: 0.3.0(kysely@0.28.17)
  987. uuid: 14.0.1
  988. transitivePeerDependencies:
  989. - babel-plugin-macros
  990. '@lix-js/server-protocol-schema@0.1.1': {}
  991. '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
  992. dependencies:
  993. '@emnapi/core': 1.11.1
  994. '@emnapi/runtime': 1.11.1
  995. '@tybys/wasm-util': 0.10.3
  996. optional: true
  997. '@oxc-project/types@0.137.0': {}
  998. '@polka/url@1.0.0-next.29': {}
  999. '@popperjs/core@2.11.8': {}
  1000. '@rolldown/binding-android-arm64@1.1.3':
  1001. optional: true
  1002. '@rolldown/binding-darwin-arm64@1.1.3':
  1003. optional: true
  1004. '@rolldown/binding-darwin-x64@1.1.3':
  1005. optional: true
  1006. '@rolldown/binding-freebsd-x64@1.1.3':
  1007. optional: true
  1008. '@rolldown/binding-linux-arm-gnueabihf@1.1.3':
  1009. optional: true
  1010. '@rolldown/binding-linux-arm64-gnu@1.1.3':
  1011. optional: true
  1012. '@rolldown/binding-linux-arm64-musl@1.1.3':
  1013. optional: true
  1014. '@rolldown/binding-linux-ppc64-gnu@1.1.3':
  1015. optional: true
  1016. '@rolldown/binding-linux-s390x-gnu@1.1.3':
  1017. optional: true
  1018. '@rolldown/binding-linux-x64-gnu@1.1.3':
  1019. optional: true
  1020. '@rolldown/binding-linux-x64-musl@1.1.3':
  1021. optional: true
  1022. '@rolldown/binding-openharmony-arm64@1.1.3':
  1023. optional: true
  1024. '@rolldown/binding-wasm32-wasi@1.1.3':
  1025. dependencies:
  1026. '@emnapi/core': 1.11.1
  1027. '@emnapi/runtime': 1.11.1
  1028. '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
  1029. optional: true
  1030. '@rolldown/binding-win32-arm64-msvc@1.1.3':
  1031. optional: true
  1032. '@rolldown/binding-win32-x64-msvc@1.1.3':
  1033. optional: true
  1034. '@rolldown/pluginutils@1.0.1': {}
  1035. '@rollup/plugin-commonjs@29.0.3(rollup@4.62.2)':
  1036. dependencies:
  1037. '@rollup/pluginutils': 5.4.0(rollup@4.62.2)
  1038. commondir: 1.0.1
  1039. estree-walker: 2.0.2
  1040. fdir: 6.5.0(picomatch@4.0.4)
  1041. is-reference: 1.2.1
  1042. magic-string: 0.30.21
  1043. picomatch: 4.0.4
  1044. optionalDependencies:
  1045. rollup: 4.62.2
  1046. '@rollup/plugin-json@6.1.0(rollup@4.62.2)':
  1047. dependencies:
  1048. '@rollup/pluginutils': 5.4.0(rollup@4.62.2)
  1049. optionalDependencies:
  1050. rollup: 4.62.2
  1051. '@rollup/plugin-node-resolve@15.3.1(rollup@4.62.2)':
  1052. dependencies:
  1053. '@rollup/pluginutils': 5.4.0(rollup@4.62.2)
  1054. '@types/resolve': 1.20.2
  1055. deepmerge: 4.3.1
  1056. is-module: 1.0.0
  1057. resolve: 1.22.12
  1058. optionalDependencies:
  1059. rollup: 4.62.2
  1060. '@rollup/plugin-node-resolve@16.0.3(rollup@4.62.2)':
  1061. dependencies:
  1062. '@rollup/pluginutils': 5.4.0(rollup@4.62.2)
  1063. '@types/resolve': 1.20.2
  1064. deepmerge: 4.3.1
  1065. is-module: 1.0.0
  1066. resolve: 1.22.12
  1067. optionalDependencies:
  1068. rollup: 4.62.2
  1069. '@rollup/plugin-replace@6.0.3(rollup@4.62.2)':
  1070. dependencies:
  1071. '@rollup/pluginutils': 5.4.0(rollup@4.62.2)
  1072. magic-string: 0.30.21
  1073. optionalDependencies:
  1074. rollup: 4.62.2
  1075. '@rollup/pluginutils@5.4.0(rollup@4.62.2)':
  1076. dependencies:
  1077. '@types/estree': 1.0.9
  1078. estree-walker: 2.0.2
  1079. picomatch: 4.0.4
  1080. optionalDependencies:
  1081. rollup: 4.62.2
  1082. '@rollup/rollup-android-arm-eabi@4.62.2':
  1083. optional: true
  1084. '@rollup/rollup-android-arm64@4.62.2':
  1085. optional: true
  1086. '@rollup/rollup-darwin-arm64@4.62.2':
  1087. optional: true
  1088. '@rollup/rollup-darwin-x64@4.62.2':
  1089. optional: true
  1090. '@rollup/rollup-freebsd-arm64@4.62.2':
  1091. optional: true
  1092. '@rollup/rollup-freebsd-x64@4.62.2':
  1093. optional: true
  1094. '@rollup/rollup-linux-arm-gnueabihf@4.62.2':
  1095. optional: true
  1096. '@rollup/rollup-linux-arm-musleabihf@4.62.2':
  1097. optional: true
  1098. '@rollup/rollup-linux-arm64-gnu@4.62.2':
  1099. optional: true
  1100. '@rollup/rollup-linux-arm64-musl@4.62.2':
  1101. optional: true
  1102. '@rollup/rollup-linux-loong64-gnu@4.62.2':
  1103. optional: true
  1104. '@rollup/rollup-linux-loong64-musl@4.62.2':
  1105. optional: true
  1106. '@rollup/rollup-linux-ppc64-gnu@4.62.2':
  1107. optional: true
  1108. '@rollup/rollup-linux-ppc64-musl@4.62.2':
  1109. optional: true
  1110. '@rollup/rollup-linux-riscv64-gnu@4.62.2':
  1111. optional: true
  1112. '@rollup/rollup-linux-riscv64-musl@4.62.2':
  1113. optional: true
  1114. '@rollup/rollup-linux-s390x-gnu@4.62.2':
  1115. optional: true
  1116. '@rollup/rollup-linux-x64-gnu@4.62.2':
  1117. optional: true
  1118. '@rollup/rollup-linux-x64-musl@4.62.2':
  1119. optional: true
  1120. '@rollup/rollup-openbsd-x64@4.62.2':
  1121. optional: true
  1122. '@rollup/rollup-openharmony-arm64@4.62.2':
  1123. optional: true
  1124. '@rollup/rollup-win32-arm64-msvc@4.62.2':
  1125. optional: true
  1126. '@rollup/rollup-win32-ia32-msvc@4.62.2':
  1127. optional: true
  1128. '@rollup/rollup-win32-x64-gnu@4.62.2':
  1129. optional: true
  1130. '@rollup/rollup-win32-x64-msvc@4.62.2':
  1131. optional: true
  1132. '@sinclair/typebox@0.31.28': {}
  1133. '@sqlite.org/sqlite-wasm@3.48.0-build4': {}
  1134. '@standard-schema/spec@1.1.0': {}
  1135. '@sveltejs/acorn-typescript@1.0.10(acorn@8.17.0)':
  1136. dependencies:
  1137. acorn: 8.17.0
  1138. '@sveltejs/adapter-node@5.5.7(@sveltejs/kit@2.68.0(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0)))(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0)))':
  1139. dependencies:
  1140. '@rollup/plugin-commonjs': 29.0.3(rollup@4.62.2)
  1141. '@rollup/plugin-json': 6.1.0(rollup@4.62.2)
  1142. '@rollup/plugin-node-resolve': 16.0.3(rollup@4.62.2)
  1143. '@rollup/plugin-replace': 6.0.3(rollup@4.62.2)
  1144. '@sveltejs/kit': 2.68.0(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0)))(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0))
  1145. rollup: 4.62.2
  1146. '@sveltejs/kit@2.68.0(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0)))(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0))':
  1147. dependencies:
  1148. '@standard-schema/spec': 1.1.0
  1149. '@sveltejs/acorn-typescript': 1.0.10(acorn@8.17.0)
  1150. '@sveltejs/vite-plugin-svelte': 7.1.2(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0))
  1151. '@types/cookie': 0.6.0
  1152. acorn: 8.17.0
  1153. cookie: 0.6.0
  1154. devalue: 5.8.1
  1155. esm-env: 1.2.2
  1156. kleur: 4.1.5
  1157. magic-string: 0.30.21
  1158. mrmime: 2.0.1
  1159. set-cookie-parser: 3.1.1
  1160. sirv: 3.0.2
  1161. svelte: 5.56.4
  1162. vite: 8.1.0(jiti@2.7.0)
  1163. '@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.4)(vite@8.1.0(jiti@2.7.0))':
  1164. dependencies:
  1165. deepmerge: 4.3.1
  1166. magic-string: 0.30.21
  1167. obug: 2.1.3
  1168. svelte: 5.56.4
  1169. vite: 8.1.0(jiti@2.7.0)
  1170. vitefu: 1.1.3(vite@8.1.0(jiti@2.7.0))
  1171. '@tailwindcss/forms@0.5.11(tailwindcss@4.3.1)':
  1172. dependencies:
  1173. mini-svg-data-uri: 1.4.4
  1174. tailwindcss: 4.3.1
  1175. '@tailwindcss/node@4.3.1':
  1176. dependencies:
  1177. '@jridgewell/remapping': 2.3.5
  1178. enhanced-resolve: 5.21.6
  1179. jiti: 2.7.0
  1180. lightningcss: 1.32.0
  1181. magic-string: 0.30.21
  1182. source-map-js: 1.2.1
  1183. tailwindcss: 4.3.1
  1184. '@tailwindcss/oxide-android-arm64@4.3.1':
  1185. optional: true
  1186. '@tailwindcss/oxide-darwin-arm64@4.3.1':
  1187. optional: true
  1188. '@tailwindcss/oxide-darwin-x64@4.3.1':
  1189. optional: true
  1190. '@tailwindcss/oxide-freebsd-x64@4.3.1':
  1191. optional: true
  1192. '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.1':
  1193. optional: true
  1194. '@tailwindcss/oxide-linux-arm64-gnu@4.3.1':
  1195. optional: true
  1196. '@tailwindcss/oxide-linux-arm64-musl@4.3.1':
  1197. optional: true
  1198. '@tailwindcss/oxide-linux-x64-gnu@4.3.1':
  1199. optional: true
  1200. '@tailwindcss/oxide-linux-x64-musl@4.3.1':
  1201. optional: true
  1202. '@tailwindcss/oxide-wasm32-wasi@4.3.1':
  1203. optional: true
  1204. '@tailwindcss/oxide-win32-arm64-msvc@4.3.1':
  1205. optional: true
  1206. '@tailwindcss/oxide-win32-x64-msvc@4.3.1':
  1207. optional: true
  1208. '@tailwindcss/oxide@4.3.1':
  1209. optionalDependencies:
  1210. '@tailwindcss/oxide-android-arm64': 4.3.1
  1211. '@tailwindcss/oxide-darwin-arm64': 4.3.1
  1212. '@tailwindcss/oxide-darwin-x64': 4.3.1
  1213. '@tailwindcss/oxide-freebsd-x64': 4.3.1
  1214. '@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.1
  1215. '@tailwindcss/oxide-linux-arm64-gnu': 4.3.1
  1216. '@tailwindcss/oxide-linux-arm64-musl': 4.3.1
  1217. '@tailwindcss/oxide-linux-x64-gnu': 4.3.1
  1218. '@tailwindcss/oxide-linux-x64-musl': 4.3.1
  1219. '@tailwindcss/oxide-wasm32-wasi': 4.3.1
  1220. '@tailwindcss/oxide-win32-arm64-msvc': 4.3.1
  1221. '@tailwindcss/oxide-win32-x64-msvc': 4.3.1
  1222. '@tailwindcss/postcss@4.3.1':
  1223. dependencies:
  1224. '@alloc/quick-lru': 5.2.0
  1225. '@tailwindcss/node': 4.3.1
  1226. '@tailwindcss/oxide': 4.3.1
  1227. postcss: 8.5.15
  1228. tailwindcss: 4.3.1
  1229. '@tailwindcss/typography@0.5.20(tailwindcss@4.3.1)':
  1230. dependencies:
  1231. postcss-selector-parser: 6.0.10
  1232. tailwindcss: 4.3.1
  1233. '@tailwindcss/vite@4.3.1(vite@8.1.0(jiti@2.7.0))':
  1234. dependencies:
  1235. '@tailwindcss/node': 4.3.1
  1236. '@tailwindcss/oxide': 4.3.1
  1237. tailwindcss: 4.3.1
  1238. vite: 8.1.0(jiti@2.7.0)
  1239. '@tybys/wasm-util@0.10.3':
  1240. dependencies:
  1241. tslib: 2.8.1
  1242. optional: true
  1243. '@types/cookie@0.6.0': {}
  1244. '@types/estree@1.0.9': {}
  1245. '@types/resolve@1.20.2': {}
  1246. '@types/trusted-types@2.0.7': {}
  1247. acorn@8.17.0: {}
  1248. apexcharts@5.15.2: {}
  1249. aria-query@5.3.1: {}
  1250. array-timsort@1.0.3: {}
  1251. axobject-query@4.1.0: {}
  1252. base64-js@1.5.1: {}
  1253. better-sqlite3@12.11.1:
  1254. dependencies:
  1255. bindings: 1.5.0
  1256. prebuild-install: 7.1.3
  1257. bindings@1.5.0:
  1258. dependencies:
  1259. file-uri-to-path: 1.0.0
  1260. bl@4.1.0:
  1261. dependencies:
  1262. buffer: 5.7.1
  1263. inherits: 2.0.4
  1264. readable-stream: 3.6.2
  1265. buffer@5.7.1:
  1266. dependencies:
  1267. base64-js: 1.5.1
  1268. ieee754: 1.2.1
  1269. chownr@1.1.4: {}
  1270. clsx@2.1.1: {}
  1271. commander@11.1.0: {}
  1272. comment-json@4.6.2:
  1273. dependencies:
  1274. array-timsort: 1.0.3
  1275. esprima: 4.0.1
  1276. commondir@1.0.1: {}
  1277. consola@3.4.0: {}
  1278. cookie@0.6.0: {}
  1279. cssesc@3.0.0: {}
  1280. date-fns@4.4.0: {}
  1281. decompress-response@6.0.0:
  1282. dependencies:
  1283. mimic-response: 3.1.0
  1284. dedent@1.5.1: {}
  1285. deep-extend@0.6.0: {}
  1286. deepmerge@4.3.1: {}
  1287. detect-libc@2.1.2: {}
  1288. devalue@5.8.1: {}
  1289. end-of-stream@1.4.5:
  1290. dependencies:
  1291. once: 1.4.0
  1292. enhanced-resolve@5.21.6:
  1293. dependencies:
  1294. graceful-fs: 4.2.11
  1295. tapable: 2.3.3
  1296. es-errors@1.3.0: {}
  1297. esm-env@1.2.2: {}
  1298. esprima@4.0.1: {}
  1299. esrap@2.2.12:
  1300. dependencies:
  1301. '@jridgewell/sourcemap-codec': 1.5.5
  1302. estree-walker@2.0.2: {}
  1303. expand-template@2.0.3: {}
  1304. fdir@6.5.0(picomatch@4.0.4):
  1305. optionalDependencies:
  1306. picomatch: 4.0.4
  1307. file-uri-to-path@1.0.0: {}
  1308. flowbite-datepicker@1.3.2(rollup@4.62.2):
  1309. dependencies:
  1310. '@rollup/plugin-node-resolve': 15.3.1(rollup@4.62.2)
  1311. flowbite: 2.5.2(rollup@4.62.2)
  1312. transitivePeerDependencies:
  1313. - rollup
  1314. flowbite-datepicker@2.0.0(rollup@4.62.2):
  1315. dependencies:
  1316. '@rollup/plugin-node-resolve': 15.3.1(rollup@4.62.2)
  1317. '@tailwindcss/postcss': 4.3.1
  1318. transitivePeerDependencies:
  1319. - rollup
  1320. flowbite-svelte-icons@3.1.0(svelte@5.56.4):
  1321. dependencies:
  1322. clsx: 2.1.1
  1323. svelte: 5.56.4
  1324. tailwind-merge: 3.6.0
  1325. flowbite-svelte@1.33.1(rollup@4.62.2)(svelte@5.56.4)(tailwindcss@4.3.1):
  1326. dependencies:
  1327. '@floating-ui/dom': 1.7.6
  1328. '@floating-ui/utils': 0.2.11
  1329. apexcharts: 5.15.2
  1330. clsx: 2.1.1
  1331. date-fns: 4.4.0
  1332. esm-env: 1.2.2
  1333. flowbite: 3.1.2(rollup@4.62.2)
  1334. svelte: 5.56.4
  1335. tailwind-merge: 3.6.0
  1336. tailwind-variants: 3.2.2(tailwind-merge@3.6.0)(tailwindcss@4.3.1)
  1337. tailwindcss: 4.3.1
  1338. transitivePeerDependencies:
  1339. - rollup
  1340. flowbite@2.5.2(rollup@4.62.2):
  1341. dependencies:
  1342. '@popperjs/core': 2.11.8
  1343. flowbite-datepicker: 1.3.2(rollup@4.62.2)
  1344. mini-svg-data-uri: 1.4.4
  1345. transitivePeerDependencies:
  1346. - rollup
  1347. flowbite@3.1.2(rollup@4.62.2):
  1348. dependencies:
  1349. '@popperjs/core': 2.11.8
  1350. flowbite-datepicker: 1.3.2(rollup@4.62.2)
  1351. mini-svg-data-uri: 1.4.4
  1352. postcss: 8.5.15
  1353. transitivePeerDependencies:
  1354. - rollup
  1355. flowbite@4.0.2(rollup@4.62.2):
  1356. dependencies:
  1357. '@popperjs/core': 2.11.8
  1358. flowbite-datepicker: 2.0.0(rollup@4.62.2)
  1359. mini-svg-data-uri: 1.4.4
  1360. postcss: 8.5.15
  1361. tailwindcss: 4.3.1
  1362. transitivePeerDependencies:
  1363. - rollup
  1364. fs-constants@1.0.0: {}
  1365. fsevents@2.3.3:
  1366. optional: true
  1367. function-bind@1.1.2: {}
  1368. github-from-package@0.0.0: {}
  1369. graceful-fs@4.2.11: {}
  1370. hasown@2.0.4:
  1371. dependencies:
  1372. function-bind: 1.1.2
  1373. human-id@4.2.0: {}
  1374. ieee754@1.2.1: {}
  1375. inherits@2.0.4: {}
  1376. ini@1.3.8: {}
  1377. is-core-module@2.16.2:
  1378. dependencies:
  1379. hasown: 2.0.4
  1380. is-module@1.0.0: {}
  1381. is-reference@1.2.1:
  1382. dependencies:
  1383. '@types/estree': 1.0.9
  1384. is-reference@3.0.3:
  1385. dependencies:
  1386. '@types/estree': 1.0.9
  1387. jiti@2.7.0: {}
  1388. js-sha256@0.11.1: {}
  1389. json5@2.2.3: {}
  1390. kleur@4.1.5: {}
  1391. kysely@0.28.17: {}
  1392. lightningcss-android-arm64@1.32.0:
  1393. optional: true
  1394. lightningcss-darwin-arm64@1.32.0:
  1395. optional: true
  1396. lightningcss-darwin-x64@1.32.0:
  1397. optional: true
  1398. lightningcss-freebsd-x64@1.32.0:
  1399. optional: true
  1400. lightningcss-linux-arm-gnueabihf@1.32.0:
  1401. optional: true
  1402. lightningcss-linux-arm64-gnu@1.32.0:
  1403. optional: true
  1404. lightningcss-linux-arm64-musl@1.32.0:
  1405. optional: true
  1406. lightningcss-linux-x64-gnu@1.32.0:
  1407. optional: true
  1408. lightningcss-linux-x64-musl@1.32.0:
  1409. optional: true
  1410. lightningcss-win32-arm64-msvc@1.32.0:
  1411. optional: true
  1412. lightningcss-win32-x64-msvc@1.32.0:
  1413. optional: true
  1414. lightningcss@1.32.0:
  1415. dependencies:
  1416. detect-libc: 2.1.2
  1417. optionalDependencies:
  1418. lightningcss-android-arm64: 1.32.0
  1419. lightningcss-darwin-arm64: 1.32.0
  1420. lightningcss-darwin-x64: 1.32.0
  1421. lightningcss-freebsd-x64: 1.32.0
  1422. lightningcss-linux-arm-gnueabihf: 1.32.0
  1423. lightningcss-linux-arm64-gnu: 1.32.0
  1424. lightningcss-linux-arm64-musl: 1.32.0
  1425. lightningcss-linux-x64-gnu: 1.32.0
  1426. lightningcss-linux-x64-musl: 1.32.0
  1427. lightningcss-win32-arm64-msvc: 1.32.0
  1428. lightningcss-win32-x64-msvc: 1.32.0
  1429. locate-character@3.0.0: {}
  1430. magic-string@0.30.21:
  1431. dependencies:
  1432. '@jridgewell/sourcemap-codec': 1.5.5
  1433. mimic-response@3.1.0: {}
  1434. mini-svg-data-uri@1.4.4: {}
  1435. minimist@1.2.8: {}
  1436. mkdirp-classic@0.5.3: {}
  1437. mrmime@2.0.1: {}
  1438. nanoid@3.3.15: {}
  1439. napi-build-utils@2.0.0: {}
  1440. node-abi@3.92.0:
  1441. dependencies:
  1442. semver: 7.8.5
  1443. obug@2.1.3: {}
  1444. once@1.4.0:
  1445. dependencies:
  1446. wrappy: 1.0.2
  1447. path-parse@1.0.7: {}
  1448. picocolors@1.1.1: {}
  1449. picomatch@4.0.4: {}
  1450. postcss-selector-parser@6.0.10:
  1451. dependencies:
  1452. cssesc: 3.0.0
  1453. util-deprecate: 1.0.2
  1454. postcss@8.5.15:
  1455. dependencies:
  1456. nanoid: 3.3.15
  1457. picocolors: 1.1.1
  1458. source-map-js: 1.2.1
  1459. prebuild-install@7.1.3:
  1460. dependencies:
  1461. detect-libc: 2.1.2
  1462. expand-template: 2.0.3
  1463. github-from-package: 0.0.0
  1464. minimist: 1.2.8
  1465. mkdirp-classic: 0.5.3
  1466. napi-build-utils: 2.0.0
  1467. node-abi: 3.92.0
  1468. pump: 3.0.4
  1469. rc: 1.2.8
  1470. simple-get: 4.0.1
  1471. tar-fs: 2.1.5
  1472. tunnel-agent: 0.6.0
  1473. pump@3.0.4:
  1474. dependencies:
  1475. end-of-stream: 1.4.5
  1476. once: 1.4.0
  1477. rc@1.2.8:
  1478. dependencies:
  1479. deep-extend: 0.6.0
  1480. ini: 1.3.8
  1481. minimist: 1.2.8
  1482. strip-json-comments: 2.0.1
  1483. readable-stream@3.6.2:
  1484. dependencies:
  1485. inherits: 2.0.4
  1486. string_decoder: 1.3.0
  1487. util-deprecate: 1.0.2
  1488. resolve@1.22.12:
  1489. dependencies:
  1490. es-errors: 1.3.0
  1491. is-core-module: 2.16.2
  1492. path-parse: 1.0.7
  1493. supports-preserve-symlinks-flag: 1.0.0
  1494. rolldown@1.1.3:
  1495. dependencies:
  1496. '@oxc-project/types': 0.137.0
  1497. '@rolldown/pluginutils': 1.0.1
  1498. optionalDependencies:
  1499. '@rolldown/binding-android-arm64': 1.1.3
  1500. '@rolldown/binding-darwin-arm64': 1.1.3
  1501. '@rolldown/binding-darwin-x64': 1.1.3
  1502. '@rolldown/binding-freebsd-x64': 1.1.3
  1503. '@rolldown/binding-linux-arm-gnueabihf': 1.1.3
  1504. '@rolldown/binding-linux-arm64-gnu': 1.1.3
  1505. '@rolldown/binding-linux-arm64-musl': 1.1.3
  1506. '@rolldown/binding-linux-ppc64-gnu': 1.1.3
  1507. '@rolldown/binding-linux-s390x-gnu': 1.1.3
  1508. '@rolldown/binding-linux-x64-gnu': 1.1.3
  1509. '@rolldown/binding-linux-x64-musl': 1.1.3
  1510. '@rolldown/binding-openharmony-arm64': 1.1.3
  1511. '@rolldown/binding-wasm32-wasi': 1.1.3
  1512. '@rolldown/binding-win32-arm64-msvc': 1.1.3
  1513. '@rolldown/binding-win32-x64-msvc': 1.1.3
  1514. rollup@4.62.2:
  1515. dependencies:
  1516. '@types/estree': 1.0.9
  1517. optionalDependencies:
  1518. '@rollup/rollup-android-arm-eabi': 4.62.2
  1519. '@rollup/rollup-android-arm64': 4.62.2
  1520. '@rollup/rollup-darwin-arm64': 4.62.2
  1521. '@rollup/rollup-darwin-x64': 4.62.2
  1522. '@rollup/rollup-freebsd-arm64': 4.62.2
  1523. '@rollup/rollup-freebsd-x64': 4.62.2
  1524. '@rollup/rollup-linux-arm-gnueabihf': 4.62.2
  1525. '@rollup/rollup-linux-arm-musleabihf': 4.62.2
  1526. '@rollup/rollup-linux-arm64-gnu': 4.62.2
  1527. '@rollup/rollup-linux-arm64-musl': 4.62.2
  1528. '@rollup/rollup-linux-loong64-gnu': 4.62.2
  1529. '@rollup/rollup-linux-loong64-musl': 4.62.2
  1530. '@rollup/rollup-linux-ppc64-gnu': 4.62.2
  1531. '@rollup/rollup-linux-ppc64-musl': 4.62.2
  1532. '@rollup/rollup-linux-riscv64-gnu': 4.62.2
  1533. '@rollup/rollup-linux-riscv64-musl': 4.62.2
  1534. '@rollup/rollup-linux-s390x-gnu': 4.62.2
  1535. '@rollup/rollup-linux-x64-gnu': 4.62.2
  1536. '@rollup/rollup-linux-x64-musl': 4.62.2
  1537. '@rollup/rollup-openbsd-x64': 4.62.2
  1538. '@rollup/rollup-openharmony-arm64': 4.62.2
  1539. '@rollup/rollup-win32-arm64-msvc': 4.62.2
  1540. '@rollup/rollup-win32-ia32-msvc': 4.62.2
  1541. '@rollup/rollup-win32-x64-gnu': 4.62.2
  1542. '@rollup/rollup-win32-x64-msvc': 4.62.2
  1543. fsevents: 2.3.3
  1544. safe-buffer@5.2.1: {}
  1545. semver@7.8.5: {}
  1546. set-cookie-parser@3.1.1: {}
  1547. simple-concat@1.0.1: {}
  1548. simple-get@4.0.1:
  1549. dependencies:
  1550. decompress-response: 6.0.0
  1551. once: 1.4.0
  1552. simple-concat: 1.0.1
  1553. sirv@3.0.2:
  1554. dependencies:
  1555. '@polka/url': 1.0.0-next.29
  1556. mrmime: 2.0.1
  1557. totalist: 3.0.1
  1558. source-map-js@1.2.1: {}
  1559. sqlite-wasm-kysely@0.3.0(kysely@0.28.17):
  1560. dependencies:
  1561. '@sqlite.org/sqlite-wasm': 3.48.0-build4
  1562. kysely: 0.28.17
  1563. string_decoder@1.3.0:
  1564. dependencies:
  1565. safe-buffer: 5.2.1
  1566. strip-json-comments@2.0.1: {}
  1567. supports-preserve-symlinks-flag@1.0.0: {}
  1568. svelte@5.56.4:
  1569. dependencies:
  1570. '@jridgewell/remapping': 2.3.5
  1571. '@jridgewell/sourcemap-codec': 1.5.5
  1572. '@sveltejs/acorn-typescript': 1.0.10(acorn@8.17.0)
  1573. '@types/estree': 1.0.9
  1574. '@types/trusted-types': 2.0.7
  1575. acorn: 8.17.0
  1576. aria-query: 5.3.1
  1577. axobject-query: 4.1.0
  1578. clsx: 2.1.1
  1579. devalue: 5.8.1
  1580. esm-env: 1.2.2
  1581. esrap: 2.2.12
  1582. is-reference: 3.0.3
  1583. locate-character: 3.0.0
  1584. magic-string: 0.30.21
  1585. zimmerframe: 1.1.4
  1586. transitivePeerDependencies:
  1587. - '@typescript-eslint/types'
  1588. tailwind-merge@3.6.0: {}
  1589. tailwind-variants@3.2.2(tailwind-merge@3.6.0)(tailwindcss@4.3.1):
  1590. dependencies:
  1591. tailwindcss: 4.3.1
  1592. optionalDependencies:
  1593. tailwind-merge: 3.6.0
  1594. tailwindcss@4.3.1: {}
  1595. tapable@2.3.3: {}
  1596. tar-fs@2.1.5:
  1597. dependencies:
  1598. chownr: 1.1.4
  1599. mkdirp-classic: 0.5.3
  1600. pump: 3.0.4
  1601. tar-stream: 2.2.0
  1602. tar-stream@2.2.0:
  1603. dependencies:
  1604. bl: 4.1.0
  1605. end-of-stream: 1.4.5
  1606. fs-constants: 1.0.0
  1607. inherits: 2.0.4
  1608. readable-stream: 3.6.2
  1609. tinyglobby@0.2.17:
  1610. dependencies:
  1611. fdir: 6.5.0(picomatch@4.0.4)
  1612. picomatch: 4.0.4
  1613. totalist@3.0.1: {}
  1614. tslib@2.8.1:
  1615. optional: true
  1616. tunnel-agent@0.6.0:
  1617. dependencies:
  1618. safe-buffer: 5.2.1
  1619. unplugin@2.3.11:
  1620. dependencies:
  1621. '@jridgewell/remapping': 2.3.5
  1622. acorn: 8.17.0
  1623. picomatch: 4.0.4
  1624. webpack-virtual-modules: 0.6.2
  1625. urlpattern-polyfill@10.1.0: {}
  1626. util-deprecate@1.0.2: {}
  1627. uuid@14.0.1: {}
  1628. vite@8.1.0(jiti@2.7.0):
  1629. dependencies:
  1630. lightningcss: 1.32.0
  1631. picomatch: 4.0.4
  1632. postcss: 8.5.15
  1633. rolldown: 1.1.3
  1634. tinyglobby: 0.2.17
  1635. optionalDependencies:
  1636. fsevents: 2.3.3
  1637. jiti: 2.7.0
  1638. vitefu@1.1.3(vite@8.1.0(jiti@2.7.0)):
  1639. optionalDependencies:
  1640. vite: 8.1.0(jiti@2.7.0)
  1641. webpack-virtual-modules@0.6.2: {}
  1642. wrappy@1.0.2: {}
  1643. zimmerframe@1.1.4: {}