package-lock.json 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211
  1. {
  2. "name": "audio_codebuddy",
  3. "lockfileVersion": 3,
  4. "requires": true,
  5. "packages": {
  6. "": {
  7. "dependencies": {
  8. "claude-mem": "^12.3.8"
  9. },
  10. "devDependencies": {
  11. "playwright": "^1.59.1"
  12. }
  13. },
  14. "node_modules/@anthropic-ai/claude-agent-sdk": {
  15. "version": "0.1.77",
  16. "resolved": "https://registry.npmmirror.com/@anthropic-ai/claude-agent-sdk/-/claude-agent-sdk-0.1.77.tgz",
  17. "integrity": "sha512-ZEjWQtkoB2MEY6K16DWMmF+8OhywAynH0m08V265cerbZ8xPD/2Ng2jPzbbO40mPeFSsMDJboShL+a3aObP0Jg==",
  18. "license": "SEE LICENSE IN README.md",
  19. "engines": {
  20. "node": ">=18.0.0"
  21. },
  22. "optionalDependencies": {
  23. "@img/sharp-darwin-arm64": "^0.33.5",
  24. "@img/sharp-darwin-x64": "^0.33.5",
  25. "@img/sharp-linux-arm": "^0.33.5",
  26. "@img/sharp-linux-arm64": "^0.33.5",
  27. "@img/sharp-linux-x64": "^0.33.5",
  28. "@img/sharp-linuxmusl-arm64": "^0.33.5",
  29. "@img/sharp-linuxmusl-x64": "^0.33.5",
  30. "@img/sharp-win32-x64": "^0.33.5"
  31. },
  32. "peerDependencies": {
  33. "zod": "^3.25.0 || ^4.0.0"
  34. }
  35. },
  36. "node_modules/@clack/core": {
  37. "version": "0.4.1",
  38. "resolved": "https://registry.npmmirror.com/@clack/core/-/core-0.4.1.tgz",
  39. "integrity": "sha512-Pxhij4UXg8KSr7rPek6Zowm+5M22rbd2g1nfojHJkxp5YkFqiZ2+YLEM/XGVIzvGOcM0nqjIFxrpDwWRZYWYjA==",
  40. "license": "MIT",
  41. "dependencies": {
  42. "picocolors": "^1.0.0",
  43. "sisteransi": "^1.0.5"
  44. }
  45. },
  46. "node_modules/@clack/prompts": {
  47. "version": "0.9.1",
  48. "resolved": "https://registry.npmmirror.com/@clack/prompts/-/prompts-0.9.1.tgz",
  49. "integrity": "sha512-JIpyaboYZeWYlyP0H+OoPPxd6nqueG/CmN6ixBiNFsIDHREevjIf0n0Ohh5gr5C8pEDknzgvz+pIJ8dMhzWIeg==",
  50. "license": "MIT",
  51. "dependencies": {
  52. "@clack/core": "0.4.1",
  53. "picocolors": "^1.0.0",
  54. "sisteransi": "^1.0.5"
  55. }
  56. },
  57. "node_modules/@hono/node-server": {
  58. "version": "1.19.14",
  59. "resolved": "https://registry.npmmirror.com/@hono/node-server/-/node-server-1.19.14.tgz",
  60. "integrity": "sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==",
  61. "license": "MIT",
  62. "engines": {
  63. "node": ">=18.14.1"
  64. },
  65. "peerDependencies": {
  66. "hono": "^4"
  67. }
  68. },
  69. "node_modules/@img/sharp-darwin-arm64": {
  70. "version": "0.33.5",
  71. "resolved": "https://registry.npmmirror.com/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz",
  72. "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
  73. "cpu": [
  74. "arm64"
  75. ],
  76. "license": "Apache-2.0",
  77. "optional": true,
  78. "os": [
  79. "darwin"
  80. ],
  81. "engines": {
  82. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  83. },
  84. "funding": {
  85. "url": "https://opencollective.com/libvips"
  86. },
  87. "optionalDependencies": {
  88. "@img/sharp-libvips-darwin-arm64": "1.0.4"
  89. }
  90. },
  91. "node_modules/@img/sharp-darwin-x64": {
  92. "version": "0.33.5",
  93. "resolved": "https://registry.npmmirror.com/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz",
  94. "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
  95. "cpu": [
  96. "x64"
  97. ],
  98. "license": "Apache-2.0",
  99. "optional": true,
  100. "os": [
  101. "darwin"
  102. ],
  103. "engines": {
  104. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  105. },
  106. "funding": {
  107. "url": "https://opencollective.com/libvips"
  108. },
  109. "optionalDependencies": {
  110. "@img/sharp-libvips-darwin-x64": "1.0.4"
  111. }
  112. },
  113. "node_modules/@img/sharp-libvips-darwin-arm64": {
  114. "version": "1.0.4",
  115. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz",
  116. "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==",
  117. "cpu": [
  118. "arm64"
  119. ],
  120. "license": "LGPL-3.0-or-later",
  121. "optional": true,
  122. "os": [
  123. "darwin"
  124. ],
  125. "funding": {
  126. "url": "https://opencollective.com/libvips"
  127. }
  128. },
  129. "node_modules/@img/sharp-libvips-darwin-x64": {
  130. "version": "1.0.4",
  131. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz",
  132. "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==",
  133. "cpu": [
  134. "x64"
  135. ],
  136. "license": "LGPL-3.0-or-later",
  137. "optional": true,
  138. "os": [
  139. "darwin"
  140. ],
  141. "funding": {
  142. "url": "https://opencollective.com/libvips"
  143. }
  144. },
  145. "node_modules/@img/sharp-libvips-linux-arm": {
  146. "version": "1.0.5",
  147. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz",
  148. "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==",
  149. "cpu": [
  150. "arm"
  151. ],
  152. "license": "LGPL-3.0-or-later",
  153. "optional": true,
  154. "os": [
  155. "linux"
  156. ],
  157. "funding": {
  158. "url": "https://opencollective.com/libvips"
  159. }
  160. },
  161. "node_modules/@img/sharp-libvips-linux-arm64": {
  162. "version": "1.0.4",
  163. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz",
  164. "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==",
  165. "cpu": [
  166. "arm64"
  167. ],
  168. "license": "LGPL-3.0-or-later",
  169. "optional": true,
  170. "os": [
  171. "linux"
  172. ],
  173. "funding": {
  174. "url": "https://opencollective.com/libvips"
  175. }
  176. },
  177. "node_modules/@img/sharp-libvips-linux-x64": {
  178. "version": "1.0.4",
  179. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz",
  180. "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==",
  181. "cpu": [
  182. "x64"
  183. ],
  184. "license": "LGPL-3.0-or-later",
  185. "optional": true,
  186. "os": [
  187. "linux"
  188. ],
  189. "funding": {
  190. "url": "https://opencollective.com/libvips"
  191. }
  192. },
  193. "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
  194. "version": "1.0.4",
  195. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz",
  196. "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==",
  197. "cpu": [
  198. "arm64"
  199. ],
  200. "license": "LGPL-3.0-or-later",
  201. "optional": true,
  202. "os": [
  203. "linux"
  204. ],
  205. "funding": {
  206. "url": "https://opencollective.com/libvips"
  207. }
  208. },
  209. "node_modules/@img/sharp-libvips-linuxmusl-x64": {
  210. "version": "1.0.4",
  211. "resolved": "https://registry.npmmirror.com/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz",
  212. "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==",
  213. "cpu": [
  214. "x64"
  215. ],
  216. "license": "LGPL-3.0-or-later",
  217. "optional": true,
  218. "os": [
  219. "linux"
  220. ],
  221. "funding": {
  222. "url": "https://opencollective.com/libvips"
  223. }
  224. },
  225. "node_modules/@img/sharp-linux-arm": {
  226. "version": "0.33.5",
  227. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz",
  228. "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
  229. "cpu": [
  230. "arm"
  231. ],
  232. "license": "Apache-2.0",
  233. "optional": true,
  234. "os": [
  235. "linux"
  236. ],
  237. "engines": {
  238. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  239. },
  240. "funding": {
  241. "url": "https://opencollective.com/libvips"
  242. },
  243. "optionalDependencies": {
  244. "@img/sharp-libvips-linux-arm": "1.0.5"
  245. }
  246. },
  247. "node_modules/@img/sharp-linux-arm64": {
  248. "version": "0.33.5",
  249. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz",
  250. "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
  251. "cpu": [
  252. "arm64"
  253. ],
  254. "license": "Apache-2.0",
  255. "optional": true,
  256. "os": [
  257. "linux"
  258. ],
  259. "engines": {
  260. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  261. },
  262. "funding": {
  263. "url": "https://opencollective.com/libvips"
  264. },
  265. "optionalDependencies": {
  266. "@img/sharp-libvips-linux-arm64": "1.0.4"
  267. }
  268. },
  269. "node_modules/@img/sharp-linux-x64": {
  270. "version": "0.33.5",
  271. "resolved": "https://registry.npmmirror.com/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz",
  272. "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
  273. "cpu": [
  274. "x64"
  275. ],
  276. "license": "Apache-2.0",
  277. "optional": true,
  278. "os": [
  279. "linux"
  280. ],
  281. "engines": {
  282. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  283. },
  284. "funding": {
  285. "url": "https://opencollective.com/libvips"
  286. },
  287. "optionalDependencies": {
  288. "@img/sharp-libvips-linux-x64": "1.0.4"
  289. }
  290. },
  291. "node_modules/@img/sharp-linuxmusl-arm64": {
  292. "version": "0.33.5",
  293. "resolved": "https://registry.npmmirror.com/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz",
  294. "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
  295. "cpu": [
  296. "arm64"
  297. ],
  298. "license": "Apache-2.0",
  299. "optional": true,
  300. "os": [
  301. "linux"
  302. ],
  303. "engines": {
  304. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  305. },
  306. "funding": {
  307. "url": "https://opencollective.com/libvips"
  308. },
  309. "optionalDependencies": {
  310. "@img/sharp-libvips-linuxmusl-arm64": "1.0.4"
  311. }
  312. },
  313. "node_modules/@img/sharp-linuxmusl-x64": {
  314. "version": "0.33.5",
  315. "resolved": "https://registry.npmmirror.com/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz",
  316. "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
  317. "cpu": [
  318. "x64"
  319. ],
  320. "license": "Apache-2.0",
  321. "optional": true,
  322. "os": [
  323. "linux"
  324. ],
  325. "engines": {
  326. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  327. },
  328. "funding": {
  329. "url": "https://opencollective.com/libvips"
  330. },
  331. "optionalDependencies": {
  332. "@img/sharp-libvips-linuxmusl-x64": "1.0.4"
  333. }
  334. },
  335. "node_modules/@img/sharp-win32-x64": {
  336. "version": "0.33.5",
  337. "resolved": "https://registry.npmmirror.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz",
  338. "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==",
  339. "cpu": [
  340. "x64"
  341. ],
  342. "license": "Apache-2.0 AND LGPL-3.0-or-later",
  343. "optional": true,
  344. "os": [
  345. "win32"
  346. ],
  347. "engines": {
  348. "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
  349. },
  350. "funding": {
  351. "url": "https://opencollective.com/libvips"
  352. }
  353. },
  354. "node_modules/@modelcontextprotocol/sdk": {
  355. "version": "1.29.0",
  356. "resolved": "https://registry.npmmirror.com/@modelcontextprotocol/sdk/-/sdk-1.29.0.tgz",
  357. "integrity": "sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==",
  358. "license": "MIT",
  359. "dependencies": {
  360. "@hono/node-server": "^1.19.9",
  361. "ajv": "^8.17.1",
  362. "ajv-formats": "^3.0.1",
  363. "content-type": "^1.0.5",
  364. "cors": "^2.8.5",
  365. "cross-spawn": "^7.0.5",
  366. "eventsource": "^3.0.2",
  367. "eventsource-parser": "^3.0.0",
  368. "express": "^5.2.1",
  369. "express-rate-limit": "^8.2.1",
  370. "hono": "^4.11.4",
  371. "jose": "^6.1.3",
  372. "json-schema-typed": "^8.0.2",
  373. "pkce-challenge": "^5.0.0",
  374. "raw-body": "^3.0.0",
  375. "zod": "^3.25 || ^4.0",
  376. "zod-to-json-schema": "^3.25.1"
  377. },
  378. "engines": {
  379. "node": ">=18"
  380. },
  381. "peerDependencies": {
  382. "@cfworker/json-schema": "^4.1.1",
  383. "zod": "^3.25 || ^4.0"
  384. },
  385. "peerDependenciesMeta": {
  386. "@cfworker/json-schema": {
  387. "optional": true
  388. },
  389. "zod": {
  390. "optional": false
  391. }
  392. }
  393. },
  394. "node_modules/@modelcontextprotocol/sdk/node_modules/accepts": {
  395. "version": "2.0.0",
  396. "resolved": "https://registry.npmmirror.com/accepts/-/accepts-2.0.0.tgz",
  397. "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
  398. "license": "MIT",
  399. "dependencies": {
  400. "mime-types": "^3.0.0",
  401. "negotiator": "^1.0.0"
  402. },
  403. "engines": {
  404. "node": ">= 0.6"
  405. }
  406. },
  407. "node_modules/@modelcontextprotocol/sdk/node_modules/body-parser": {
  408. "version": "2.2.2",
  409. "resolved": "https://registry.npmmirror.com/body-parser/-/body-parser-2.2.2.tgz",
  410. "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
  411. "license": "MIT",
  412. "dependencies": {
  413. "bytes": "^3.1.2",
  414. "content-type": "^1.0.5",
  415. "debug": "^4.4.3",
  416. "http-errors": "^2.0.0",
  417. "iconv-lite": "^0.7.0",
  418. "on-finished": "^2.4.1",
  419. "qs": "^6.14.1",
  420. "raw-body": "^3.0.1",
  421. "type-is": "^2.0.1"
  422. },
  423. "engines": {
  424. "node": ">=18"
  425. },
  426. "funding": {
  427. "type": "opencollective",
  428. "url": "https://opencollective.com/express"
  429. }
  430. },
  431. "node_modules/@modelcontextprotocol/sdk/node_modules/content-disposition": {
  432. "version": "1.1.0",
  433. "resolved": "https://registry.npmmirror.com/content-disposition/-/content-disposition-1.1.0.tgz",
  434. "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==",
  435. "license": "MIT",
  436. "engines": {
  437. "node": ">=18"
  438. },
  439. "funding": {
  440. "type": "opencollective",
  441. "url": "https://opencollective.com/express"
  442. }
  443. },
  444. "node_modules/@modelcontextprotocol/sdk/node_modules/cookie-signature": {
  445. "version": "1.2.2",
  446. "resolved": "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.2.2.tgz",
  447. "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
  448. "license": "MIT",
  449. "engines": {
  450. "node": ">=6.6.0"
  451. }
  452. },
  453. "node_modules/@modelcontextprotocol/sdk/node_modules/debug": {
  454. "version": "4.4.3",
  455. "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
  456. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  457. "license": "MIT",
  458. "dependencies": {
  459. "ms": "^2.1.3"
  460. },
  461. "engines": {
  462. "node": ">=6.0"
  463. },
  464. "peerDependenciesMeta": {
  465. "supports-color": {
  466. "optional": true
  467. }
  468. }
  469. },
  470. "node_modules/@modelcontextprotocol/sdk/node_modules/express": {
  471. "version": "5.2.1",
  472. "resolved": "https://registry.npmmirror.com/express/-/express-5.2.1.tgz",
  473. "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
  474. "license": "MIT",
  475. "dependencies": {
  476. "accepts": "^2.0.0",
  477. "body-parser": "^2.2.1",
  478. "content-disposition": "^1.0.0",
  479. "content-type": "^1.0.5",
  480. "cookie": "^0.7.1",
  481. "cookie-signature": "^1.2.1",
  482. "debug": "^4.4.0",
  483. "depd": "^2.0.0",
  484. "encodeurl": "^2.0.0",
  485. "escape-html": "^1.0.3",
  486. "etag": "^1.8.1",
  487. "finalhandler": "^2.1.0",
  488. "fresh": "^2.0.0",
  489. "http-errors": "^2.0.0",
  490. "merge-descriptors": "^2.0.0",
  491. "mime-types": "^3.0.0",
  492. "on-finished": "^2.4.1",
  493. "once": "^1.4.0",
  494. "parseurl": "^1.3.3",
  495. "proxy-addr": "^2.0.7",
  496. "qs": "^6.14.0",
  497. "range-parser": "^1.2.1",
  498. "router": "^2.2.0",
  499. "send": "^1.1.0",
  500. "serve-static": "^2.2.0",
  501. "statuses": "^2.0.1",
  502. "type-is": "^2.0.1",
  503. "vary": "^1.1.2"
  504. },
  505. "engines": {
  506. "node": ">= 18"
  507. },
  508. "funding": {
  509. "type": "opencollective",
  510. "url": "https://opencollective.com/express"
  511. }
  512. },
  513. "node_modules/@modelcontextprotocol/sdk/node_modules/finalhandler": {
  514. "version": "2.1.1",
  515. "resolved": "https://registry.npmmirror.com/finalhandler/-/finalhandler-2.1.1.tgz",
  516. "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
  517. "license": "MIT",
  518. "dependencies": {
  519. "debug": "^4.4.0",
  520. "encodeurl": "^2.0.0",
  521. "escape-html": "^1.0.3",
  522. "on-finished": "^2.4.1",
  523. "parseurl": "^1.3.3",
  524. "statuses": "^2.0.1"
  525. },
  526. "engines": {
  527. "node": ">= 18.0.0"
  528. },
  529. "funding": {
  530. "type": "opencollective",
  531. "url": "https://opencollective.com/express"
  532. }
  533. },
  534. "node_modules/@modelcontextprotocol/sdk/node_modules/fresh": {
  535. "version": "2.0.0",
  536. "resolved": "https://registry.npmmirror.com/fresh/-/fresh-2.0.0.tgz",
  537. "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
  538. "license": "MIT",
  539. "engines": {
  540. "node": ">= 0.8"
  541. }
  542. },
  543. "node_modules/@modelcontextprotocol/sdk/node_modules/iconv-lite": {
  544. "version": "0.7.2",
  545. "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.7.2.tgz",
  546. "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
  547. "license": "MIT",
  548. "dependencies": {
  549. "safer-buffer": ">= 2.1.2 < 3.0.0"
  550. },
  551. "engines": {
  552. "node": ">=0.10.0"
  553. },
  554. "funding": {
  555. "type": "opencollective",
  556. "url": "https://opencollective.com/express"
  557. }
  558. },
  559. "node_modules/@modelcontextprotocol/sdk/node_modules/media-typer": {
  560. "version": "1.1.0",
  561. "resolved": "https://registry.npmmirror.com/media-typer/-/media-typer-1.1.0.tgz",
  562. "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
  563. "license": "MIT",
  564. "engines": {
  565. "node": ">= 0.8"
  566. }
  567. },
  568. "node_modules/@modelcontextprotocol/sdk/node_modules/merge-descriptors": {
  569. "version": "2.0.0",
  570. "resolved": "https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
  571. "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
  572. "license": "MIT",
  573. "engines": {
  574. "node": ">=18"
  575. },
  576. "funding": {
  577. "url": "https://github.com/sponsors/sindresorhus"
  578. }
  579. },
  580. "node_modules/@modelcontextprotocol/sdk/node_modules/mime-db": {
  581. "version": "1.54.0",
  582. "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.54.0.tgz",
  583. "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
  584. "license": "MIT",
  585. "engines": {
  586. "node": ">= 0.6"
  587. }
  588. },
  589. "node_modules/@modelcontextprotocol/sdk/node_modules/mime-types": {
  590. "version": "3.0.2",
  591. "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-3.0.2.tgz",
  592. "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
  593. "license": "MIT",
  594. "dependencies": {
  595. "mime-db": "^1.54.0"
  596. },
  597. "engines": {
  598. "node": ">=18"
  599. },
  600. "funding": {
  601. "type": "opencollective",
  602. "url": "https://opencollective.com/express"
  603. }
  604. },
  605. "node_modules/@modelcontextprotocol/sdk/node_modules/ms": {
  606. "version": "2.1.3",
  607. "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
  608. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  609. "license": "MIT"
  610. },
  611. "node_modules/@modelcontextprotocol/sdk/node_modules/negotiator": {
  612. "version": "1.0.0",
  613. "resolved": "https://registry.npmmirror.com/negotiator/-/negotiator-1.0.0.tgz",
  614. "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
  615. "license": "MIT",
  616. "engines": {
  617. "node": ">= 0.6"
  618. }
  619. },
  620. "node_modules/@modelcontextprotocol/sdk/node_modules/send": {
  621. "version": "1.2.1",
  622. "resolved": "https://registry.npmmirror.com/send/-/send-1.2.1.tgz",
  623. "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
  624. "license": "MIT",
  625. "dependencies": {
  626. "debug": "^4.4.3",
  627. "encodeurl": "^2.0.0",
  628. "escape-html": "^1.0.3",
  629. "etag": "^1.8.1",
  630. "fresh": "^2.0.0",
  631. "http-errors": "^2.0.1",
  632. "mime-types": "^3.0.2",
  633. "ms": "^2.1.3",
  634. "on-finished": "^2.4.1",
  635. "range-parser": "^1.2.1",
  636. "statuses": "^2.0.2"
  637. },
  638. "engines": {
  639. "node": ">= 18"
  640. },
  641. "funding": {
  642. "type": "opencollective",
  643. "url": "https://opencollective.com/express"
  644. }
  645. },
  646. "node_modules/@modelcontextprotocol/sdk/node_modules/serve-static": {
  647. "version": "2.2.1",
  648. "resolved": "https://registry.npmmirror.com/serve-static/-/serve-static-2.2.1.tgz",
  649. "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
  650. "license": "MIT",
  651. "dependencies": {
  652. "encodeurl": "^2.0.0",
  653. "escape-html": "^1.0.3",
  654. "parseurl": "^1.3.3",
  655. "send": "^1.2.0"
  656. },
  657. "engines": {
  658. "node": ">= 18"
  659. },
  660. "funding": {
  661. "type": "opencollective",
  662. "url": "https://opencollective.com/express"
  663. }
  664. },
  665. "node_modules/@modelcontextprotocol/sdk/node_modules/type-is": {
  666. "version": "2.0.1",
  667. "resolved": "https://registry.npmmirror.com/type-is/-/type-is-2.0.1.tgz",
  668. "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
  669. "license": "MIT",
  670. "dependencies": {
  671. "content-type": "^1.0.5",
  672. "media-typer": "^1.1.0",
  673. "mime-types": "^3.0.0"
  674. },
  675. "engines": {
  676. "node": ">= 0.6"
  677. }
  678. },
  679. "node_modules/@types/trusted-types": {
  680. "version": "2.0.7",
  681. "resolved": "https://registry.npmmirror.com/@types/trusted-types/-/trusted-types-2.0.7.tgz",
  682. "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
  683. "license": "MIT",
  684. "optional": true
  685. },
  686. "node_modules/accepts": {
  687. "version": "1.3.8",
  688. "resolved": "https://registry.npmmirror.com/accepts/-/accepts-1.3.8.tgz",
  689. "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
  690. "license": "MIT",
  691. "dependencies": {
  692. "mime-types": "~2.1.34",
  693. "negotiator": "0.6.3"
  694. },
  695. "engines": {
  696. "node": ">= 0.6"
  697. }
  698. },
  699. "node_modules/ajv": {
  700. "version": "8.18.0",
  701. "resolved": "https://registry.npmmirror.com/ajv/-/ajv-8.18.0.tgz",
  702. "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==",
  703. "license": "MIT",
  704. "dependencies": {
  705. "fast-deep-equal": "^3.1.3",
  706. "fast-uri": "^3.0.1",
  707. "json-schema-traverse": "^1.0.0",
  708. "require-from-string": "^2.0.2"
  709. },
  710. "funding": {
  711. "type": "github",
  712. "url": "https://github.com/sponsors/epoberezkin"
  713. }
  714. },
  715. "node_modules/ajv-formats": {
  716. "version": "3.0.1",
  717. "resolved": "https://registry.npmmirror.com/ajv-formats/-/ajv-formats-3.0.1.tgz",
  718. "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
  719. "license": "MIT",
  720. "dependencies": {
  721. "ajv": "^8.0.0"
  722. },
  723. "peerDependencies": {
  724. "ajv": "^8.0.0"
  725. },
  726. "peerDependenciesMeta": {
  727. "ajv": {
  728. "optional": true
  729. }
  730. }
  731. },
  732. "node_modules/ansi-to-html": {
  733. "version": "0.7.2",
  734. "resolved": "https://registry.npmmirror.com/ansi-to-html/-/ansi-to-html-0.7.2.tgz",
  735. "integrity": "sha512-v6MqmEpNlxF+POuyhKkidusCHWWkaLcGRURzivcU3I9tv7k4JVhFcnukrM5Rlk2rUywdZuzYAZ+kbZqWCnfN3g==",
  736. "license": "MIT",
  737. "dependencies": {
  738. "entities": "^2.2.0"
  739. },
  740. "bin": {
  741. "ansi-to-html": "bin/ansi-to-html"
  742. },
  743. "engines": {
  744. "node": ">=8.0.0"
  745. }
  746. },
  747. "node_modules/array-flatten": {
  748. "version": "1.1.1",
  749. "resolved": "https://registry.npmmirror.com/array-flatten/-/array-flatten-1.1.1.tgz",
  750. "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
  751. "license": "MIT"
  752. },
  753. "node_modules/balanced-match": {
  754. "version": "4.0.4",
  755. "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-4.0.4.tgz",
  756. "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
  757. "license": "MIT",
  758. "engines": {
  759. "node": "18 || 20 || >=22"
  760. }
  761. },
  762. "node_modules/body-parser": {
  763. "version": "1.20.4",
  764. "resolved": "https://registry.npmmirror.com/body-parser/-/body-parser-1.20.4.tgz",
  765. "integrity": "sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==",
  766. "license": "MIT",
  767. "dependencies": {
  768. "bytes": "~3.1.2",
  769. "content-type": "~1.0.5",
  770. "debug": "2.6.9",
  771. "depd": "2.0.0",
  772. "destroy": "~1.2.0",
  773. "http-errors": "~2.0.1",
  774. "iconv-lite": "~0.4.24",
  775. "on-finished": "~2.4.1",
  776. "qs": "~6.14.0",
  777. "raw-body": "~2.5.3",
  778. "type-is": "~1.6.18",
  779. "unpipe": "~1.0.0"
  780. },
  781. "engines": {
  782. "node": ">= 0.8",
  783. "npm": "1.2.8000 || >= 1.4.16"
  784. }
  785. },
  786. "node_modules/body-parser/node_modules/raw-body": {
  787. "version": "2.5.3",
  788. "resolved": "https://registry.npmmirror.com/raw-body/-/raw-body-2.5.3.tgz",
  789. "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
  790. "license": "MIT",
  791. "dependencies": {
  792. "bytes": "~3.1.2",
  793. "http-errors": "~2.0.1",
  794. "iconv-lite": "~0.4.24",
  795. "unpipe": "~1.0.0"
  796. },
  797. "engines": {
  798. "node": ">= 0.8"
  799. }
  800. },
  801. "node_modules/brace-expansion": {
  802. "version": "5.0.5",
  803. "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-5.0.5.tgz",
  804. "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
  805. "license": "MIT",
  806. "dependencies": {
  807. "balanced-match": "^4.0.2"
  808. },
  809. "engines": {
  810. "node": "18 || 20 || >=22"
  811. }
  812. },
  813. "node_modules/bytes": {
  814. "version": "3.1.2",
  815. "resolved": "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz",
  816. "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
  817. "license": "MIT",
  818. "engines": {
  819. "node": ">= 0.8"
  820. }
  821. },
  822. "node_modules/call-bind-apply-helpers": {
  823. "version": "1.0.2",
  824. "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
  825. "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
  826. "license": "MIT",
  827. "dependencies": {
  828. "es-errors": "^1.3.0",
  829. "function-bind": "^1.1.2"
  830. },
  831. "engines": {
  832. "node": ">= 0.4"
  833. }
  834. },
  835. "node_modules/call-bound": {
  836. "version": "1.0.4",
  837. "resolved": "https://registry.npmmirror.com/call-bound/-/call-bound-1.0.4.tgz",
  838. "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
  839. "license": "MIT",
  840. "dependencies": {
  841. "call-bind-apply-helpers": "^1.0.2",
  842. "get-intrinsic": "^1.3.0"
  843. },
  844. "engines": {
  845. "node": ">= 0.4"
  846. },
  847. "funding": {
  848. "url": "https://github.com/sponsors/ljharb"
  849. }
  850. },
  851. "node_modules/claude-mem": {
  852. "version": "12.3.8",
  853. "resolved": "https://registry.npmmirror.com/claude-mem/-/claude-mem-12.3.8.tgz",
  854. "integrity": "sha512-s4ceLd0rWKlLrLzI+iS17apf8u1m2oveiZON7WPVFM3fGzGac7sXKdfDI/yygd/Yp7xFEPTWpix8ysJZACrpzw==",
  855. "license": "AGPL-3.0",
  856. "dependencies": {
  857. "@anthropic-ai/claude-agent-sdk": "^0.1.76",
  858. "@clack/prompts": "^0.9.1",
  859. "@modelcontextprotocol/sdk": "^1.25.1",
  860. "ansi-to-html": "^0.7.2",
  861. "dompurify": "^3.3.1",
  862. "express": "^4.18.2",
  863. "glob": "^13.0.0",
  864. "handlebars": "^4.7.8",
  865. "picocolors": "^1.1.1",
  866. "react": "^18.3.1",
  867. "react-dom": "^18.3.1",
  868. "yaml": "^2.8.2",
  869. "zod-to-json-schema": "^3.24.6"
  870. },
  871. "bin": {
  872. "claude-mem": "dist/npx-cli/index.js"
  873. },
  874. "engines": {
  875. "bun": ">=1.0.0",
  876. "node": ">=18.0.0"
  877. },
  878. "optionalDependencies": {
  879. "tree-kill": "^1.2.2"
  880. }
  881. },
  882. "node_modules/content-disposition": {
  883. "version": "0.5.4",
  884. "resolved": "https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz",
  885. "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
  886. "license": "MIT",
  887. "dependencies": {
  888. "safe-buffer": "5.2.1"
  889. },
  890. "engines": {
  891. "node": ">= 0.6"
  892. }
  893. },
  894. "node_modules/content-type": {
  895. "version": "1.0.5",
  896. "resolved": "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz",
  897. "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
  898. "license": "MIT",
  899. "engines": {
  900. "node": ">= 0.6"
  901. }
  902. },
  903. "node_modules/cookie": {
  904. "version": "0.7.2",
  905. "resolved": "https://registry.npmmirror.com/cookie/-/cookie-0.7.2.tgz",
  906. "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
  907. "license": "MIT",
  908. "engines": {
  909. "node": ">= 0.6"
  910. }
  911. },
  912. "node_modules/cookie-signature": {
  913. "version": "1.0.7",
  914. "resolved": "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.7.tgz",
  915. "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==",
  916. "license": "MIT"
  917. },
  918. "node_modules/cors": {
  919. "version": "2.8.6",
  920. "resolved": "https://registry.npmmirror.com/cors/-/cors-2.8.6.tgz",
  921. "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
  922. "license": "MIT",
  923. "dependencies": {
  924. "object-assign": "^4",
  925. "vary": "^1"
  926. },
  927. "engines": {
  928. "node": ">= 0.10"
  929. },
  930. "funding": {
  931. "type": "opencollective",
  932. "url": "https://opencollective.com/express"
  933. }
  934. },
  935. "node_modules/cross-spawn": {
  936. "version": "7.0.6",
  937. "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz",
  938. "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
  939. "license": "MIT",
  940. "dependencies": {
  941. "path-key": "^3.1.0",
  942. "shebang-command": "^2.0.0",
  943. "which": "^2.0.1"
  944. },
  945. "engines": {
  946. "node": ">= 8"
  947. }
  948. },
  949. "node_modules/debug": {
  950. "version": "2.6.9",
  951. "resolved": "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz",
  952. "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
  953. "license": "MIT",
  954. "dependencies": {
  955. "ms": "2.0.0"
  956. }
  957. },
  958. "node_modules/depd": {
  959. "version": "2.0.0",
  960. "resolved": "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz",
  961. "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
  962. "license": "MIT",
  963. "engines": {
  964. "node": ">= 0.8"
  965. }
  966. },
  967. "node_modules/destroy": {
  968. "version": "1.2.0",
  969. "resolved": "https://registry.npmmirror.com/destroy/-/destroy-1.2.0.tgz",
  970. "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
  971. "license": "MIT",
  972. "engines": {
  973. "node": ">= 0.8",
  974. "npm": "1.2.8000 || >= 1.4.16"
  975. }
  976. },
  977. "node_modules/dompurify": {
  978. "version": "3.4.1",
  979. "resolved": "https://registry.npmmirror.com/dompurify/-/dompurify-3.4.1.tgz",
  980. "integrity": "sha512-JahakDAIg1gyOm7dlgWSDjV4n7Ip2PKR55NIT6jrMfIgLFgWo81vdr1/QGqWtFNRqXP9UV71oVePtjqS2ebnPw==",
  981. "license": "(MPL-2.0 OR Apache-2.0)",
  982. "optionalDependencies": {
  983. "@types/trusted-types": "^2.0.7"
  984. }
  985. },
  986. "node_modules/dunder-proto": {
  987. "version": "1.0.1",
  988. "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
  989. "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
  990. "license": "MIT",
  991. "dependencies": {
  992. "call-bind-apply-helpers": "^1.0.1",
  993. "es-errors": "^1.3.0",
  994. "gopd": "^1.2.0"
  995. },
  996. "engines": {
  997. "node": ">= 0.4"
  998. }
  999. },
  1000. "node_modules/ee-first": {
  1001. "version": "1.1.1",
  1002. "resolved": "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz",
  1003. "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
  1004. "license": "MIT"
  1005. },
  1006. "node_modules/encodeurl": {
  1007. "version": "2.0.0",
  1008. "resolved": "https://registry.npmmirror.com/encodeurl/-/encodeurl-2.0.0.tgz",
  1009. "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
  1010. "license": "MIT",
  1011. "engines": {
  1012. "node": ">= 0.8"
  1013. }
  1014. },
  1015. "node_modules/entities": {
  1016. "version": "2.2.0",
  1017. "resolved": "https://registry.npmmirror.com/entities/-/entities-2.2.0.tgz",
  1018. "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
  1019. "license": "BSD-2-Clause",
  1020. "funding": {
  1021. "url": "https://github.com/fb55/entities?sponsor=1"
  1022. }
  1023. },
  1024. "node_modules/es-define-property": {
  1025. "version": "1.0.1",
  1026. "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz",
  1027. "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
  1028. "license": "MIT",
  1029. "engines": {
  1030. "node": ">= 0.4"
  1031. }
  1032. },
  1033. "node_modules/es-errors": {
  1034. "version": "1.3.0",
  1035. "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz",
  1036. "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
  1037. "license": "MIT",
  1038. "engines": {
  1039. "node": ">= 0.4"
  1040. }
  1041. },
  1042. "node_modules/es-object-atoms": {
  1043. "version": "1.1.1",
  1044. "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
  1045. "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
  1046. "license": "MIT",
  1047. "dependencies": {
  1048. "es-errors": "^1.3.0"
  1049. },
  1050. "engines": {
  1051. "node": ">= 0.4"
  1052. }
  1053. },
  1054. "node_modules/escape-html": {
  1055. "version": "1.0.3",
  1056. "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz",
  1057. "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
  1058. "license": "MIT"
  1059. },
  1060. "node_modules/etag": {
  1061. "version": "1.8.1",
  1062. "resolved": "https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz",
  1063. "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
  1064. "license": "MIT",
  1065. "engines": {
  1066. "node": ">= 0.6"
  1067. }
  1068. },
  1069. "node_modules/eventsource": {
  1070. "version": "3.0.7",
  1071. "resolved": "https://registry.npmmirror.com/eventsource/-/eventsource-3.0.7.tgz",
  1072. "integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==",
  1073. "license": "MIT",
  1074. "dependencies": {
  1075. "eventsource-parser": "^3.0.1"
  1076. },
  1077. "engines": {
  1078. "node": ">=18.0.0"
  1079. }
  1080. },
  1081. "node_modules/eventsource-parser": {
  1082. "version": "3.0.8",
  1083. "resolved": "https://registry.npmmirror.com/eventsource-parser/-/eventsource-parser-3.0.8.tgz",
  1084. "integrity": "sha512-70QWGkr4snxr0OXLRWsFLeRBIRPuQOvt4s8QYjmUlmlkyTZkRqS7EDVRZtzU3TiyDbXSzaOeF0XUKy8PchzukQ==",
  1085. "license": "MIT",
  1086. "engines": {
  1087. "node": ">=18.0.0"
  1088. }
  1089. },
  1090. "node_modules/express": {
  1091. "version": "4.22.1",
  1092. "resolved": "https://registry.npmmirror.com/express/-/express-4.22.1.tgz",
  1093. "integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==",
  1094. "license": "MIT",
  1095. "dependencies": {
  1096. "accepts": "~1.3.8",
  1097. "array-flatten": "1.1.1",
  1098. "body-parser": "~1.20.3",
  1099. "content-disposition": "~0.5.4",
  1100. "content-type": "~1.0.4",
  1101. "cookie": "~0.7.1",
  1102. "cookie-signature": "~1.0.6",
  1103. "debug": "2.6.9",
  1104. "depd": "2.0.0",
  1105. "encodeurl": "~2.0.0",
  1106. "escape-html": "~1.0.3",
  1107. "etag": "~1.8.1",
  1108. "finalhandler": "~1.3.1",
  1109. "fresh": "~0.5.2",
  1110. "http-errors": "~2.0.0",
  1111. "merge-descriptors": "1.0.3",
  1112. "methods": "~1.1.2",
  1113. "on-finished": "~2.4.1",
  1114. "parseurl": "~1.3.3",
  1115. "path-to-regexp": "~0.1.12",
  1116. "proxy-addr": "~2.0.7",
  1117. "qs": "~6.14.0",
  1118. "range-parser": "~1.2.1",
  1119. "safe-buffer": "5.2.1",
  1120. "send": "~0.19.0",
  1121. "serve-static": "~1.16.2",
  1122. "setprototypeof": "1.2.0",
  1123. "statuses": "~2.0.1",
  1124. "type-is": "~1.6.18",
  1125. "utils-merge": "1.0.1",
  1126. "vary": "~1.1.2"
  1127. },
  1128. "engines": {
  1129. "node": ">= 0.10.0"
  1130. },
  1131. "funding": {
  1132. "type": "opencollective",
  1133. "url": "https://opencollective.com/express"
  1134. }
  1135. },
  1136. "node_modules/express-rate-limit": {
  1137. "version": "8.3.2",
  1138. "resolved": "https://registry.npmmirror.com/express-rate-limit/-/express-rate-limit-8.3.2.tgz",
  1139. "integrity": "sha512-77VmFeJkO0/rvimEDuUC5H30oqUC4EyOhyGccfqoLebB0oiEYfM7nwPrsDsBL1gsTpwfzX8SFy2MT3TDyRq+bg==",
  1140. "license": "MIT",
  1141. "dependencies": {
  1142. "ip-address": "10.1.0"
  1143. },
  1144. "engines": {
  1145. "node": ">= 16"
  1146. },
  1147. "funding": {
  1148. "url": "https://github.com/sponsors/express-rate-limit"
  1149. },
  1150. "peerDependencies": {
  1151. "express": ">= 4.11"
  1152. }
  1153. },
  1154. "node_modules/fast-deep-equal": {
  1155. "version": "3.1.3",
  1156. "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
  1157. "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
  1158. "license": "MIT"
  1159. },
  1160. "node_modules/fast-uri": {
  1161. "version": "3.1.0",
  1162. "resolved": "https://registry.npmmirror.com/fast-uri/-/fast-uri-3.1.0.tgz",
  1163. "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
  1164. "funding": [
  1165. {
  1166. "type": "github",
  1167. "url": "https://github.com/sponsors/fastify"
  1168. },
  1169. {
  1170. "type": "opencollective",
  1171. "url": "https://opencollective.com/fastify"
  1172. }
  1173. ],
  1174. "license": "BSD-3-Clause"
  1175. },
  1176. "node_modules/finalhandler": {
  1177. "version": "1.3.2",
  1178. "resolved": "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.3.2.tgz",
  1179. "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==",
  1180. "license": "MIT",
  1181. "dependencies": {
  1182. "debug": "2.6.9",
  1183. "encodeurl": "~2.0.0",
  1184. "escape-html": "~1.0.3",
  1185. "on-finished": "~2.4.1",
  1186. "parseurl": "~1.3.3",
  1187. "statuses": "~2.0.2",
  1188. "unpipe": "~1.0.0"
  1189. },
  1190. "engines": {
  1191. "node": ">= 0.8"
  1192. }
  1193. },
  1194. "node_modules/forwarded": {
  1195. "version": "0.2.0",
  1196. "resolved": "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz",
  1197. "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
  1198. "license": "MIT",
  1199. "engines": {
  1200. "node": ">= 0.6"
  1201. }
  1202. },
  1203. "node_modules/fresh": {
  1204. "version": "0.5.2",
  1205. "resolved": "https://registry.npmmirror.com/fresh/-/fresh-0.5.2.tgz",
  1206. "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
  1207. "license": "MIT",
  1208. "engines": {
  1209. "node": ">= 0.6"
  1210. }
  1211. },
  1212. "node_modules/fsevents": {
  1213. "version": "2.3.2",
  1214. "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz",
  1215. "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
  1216. "dev": true,
  1217. "hasInstallScript": true,
  1218. "license": "MIT",
  1219. "optional": true,
  1220. "os": [
  1221. "darwin"
  1222. ],
  1223. "engines": {
  1224. "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
  1225. }
  1226. },
  1227. "node_modules/function-bind": {
  1228. "version": "1.1.2",
  1229. "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz",
  1230. "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
  1231. "license": "MIT",
  1232. "funding": {
  1233. "url": "https://github.com/sponsors/ljharb"
  1234. }
  1235. },
  1236. "node_modules/get-intrinsic": {
  1237. "version": "1.3.0",
  1238. "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
  1239. "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
  1240. "license": "MIT",
  1241. "dependencies": {
  1242. "call-bind-apply-helpers": "^1.0.2",
  1243. "es-define-property": "^1.0.1",
  1244. "es-errors": "^1.3.0",
  1245. "es-object-atoms": "^1.1.1",
  1246. "function-bind": "^1.1.2",
  1247. "get-proto": "^1.0.1",
  1248. "gopd": "^1.2.0",
  1249. "has-symbols": "^1.1.0",
  1250. "hasown": "^2.0.2",
  1251. "math-intrinsics": "^1.1.0"
  1252. },
  1253. "engines": {
  1254. "node": ">= 0.4"
  1255. },
  1256. "funding": {
  1257. "url": "https://github.com/sponsors/ljharb"
  1258. }
  1259. },
  1260. "node_modules/get-proto": {
  1261. "version": "1.0.1",
  1262. "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz",
  1263. "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
  1264. "license": "MIT",
  1265. "dependencies": {
  1266. "dunder-proto": "^1.0.1",
  1267. "es-object-atoms": "^1.0.0"
  1268. },
  1269. "engines": {
  1270. "node": ">= 0.4"
  1271. }
  1272. },
  1273. "node_modules/glob": {
  1274. "version": "13.0.6",
  1275. "resolved": "https://registry.npmmirror.com/glob/-/glob-13.0.6.tgz",
  1276. "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
  1277. "license": "BlueOak-1.0.0",
  1278. "dependencies": {
  1279. "minimatch": "^10.2.2",
  1280. "minipass": "^7.1.3",
  1281. "path-scurry": "^2.0.2"
  1282. },
  1283. "engines": {
  1284. "node": "18 || 20 || >=22"
  1285. },
  1286. "funding": {
  1287. "url": "https://github.com/sponsors/isaacs"
  1288. }
  1289. },
  1290. "node_modules/gopd": {
  1291. "version": "1.2.0",
  1292. "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
  1293. "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
  1294. "license": "MIT",
  1295. "engines": {
  1296. "node": ">= 0.4"
  1297. },
  1298. "funding": {
  1299. "url": "https://github.com/sponsors/ljharb"
  1300. }
  1301. },
  1302. "node_modules/handlebars": {
  1303. "version": "4.7.9",
  1304. "resolved": "https://registry.npmmirror.com/handlebars/-/handlebars-4.7.9.tgz",
  1305. "integrity": "sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ==",
  1306. "license": "MIT",
  1307. "dependencies": {
  1308. "minimist": "^1.2.5",
  1309. "neo-async": "^2.6.2",
  1310. "source-map": "^0.6.1",
  1311. "wordwrap": "^1.0.0"
  1312. },
  1313. "bin": {
  1314. "handlebars": "bin/handlebars"
  1315. },
  1316. "engines": {
  1317. "node": ">=0.4.7"
  1318. },
  1319. "optionalDependencies": {
  1320. "uglify-js": "^3.1.4"
  1321. }
  1322. },
  1323. "node_modules/has-symbols": {
  1324. "version": "1.1.0",
  1325. "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz",
  1326. "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
  1327. "license": "MIT",
  1328. "engines": {
  1329. "node": ">= 0.4"
  1330. },
  1331. "funding": {
  1332. "url": "https://github.com/sponsors/ljharb"
  1333. }
  1334. },
  1335. "node_modules/hasown": {
  1336. "version": "2.0.3",
  1337. "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.3.tgz",
  1338. "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
  1339. "license": "MIT",
  1340. "dependencies": {
  1341. "function-bind": "^1.1.2"
  1342. },
  1343. "engines": {
  1344. "node": ">= 0.4"
  1345. }
  1346. },
  1347. "node_modules/hono": {
  1348. "version": "4.12.14",
  1349. "resolved": "https://registry.npmmirror.com/hono/-/hono-4.12.14.tgz",
  1350. "integrity": "sha512-am5zfg3yu6sqn5yjKBNqhnTX7Cv+m00ox+7jbaKkrLMRJ4rAdldd1xPd/JzbBWspqaQv6RSTrgFN95EsfhC+7w==",
  1351. "license": "MIT",
  1352. "engines": {
  1353. "node": ">=16.9.0"
  1354. }
  1355. },
  1356. "node_modules/http-errors": {
  1357. "version": "2.0.1",
  1358. "resolved": "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.1.tgz",
  1359. "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
  1360. "license": "MIT",
  1361. "dependencies": {
  1362. "depd": "~2.0.0",
  1363. "inherits": "~2.0.4",
  1364. "setprototypeof": "~1.2.0",
  1365. "statuses": "~2.0.2",
  1366. "toidentifier": "~1.0.1"
  1367. },
  1368. "engines": {
  1369. "node": ">= 0.8"
  1370. },
  1371. "funding": {
  1372. "type": "opencollective",
  1373. "url": "https://opencollective.com/express"
  1374. }
  1375. },
  1376. "node_modules/iconv-lite": {
  1377. "version": "0.4.24",
  1378. "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz",
  1379. "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
  1380. "license": "MIT",
  1381. "dependencies": {
  1382. "safer-buffer": ">= 2.1.2 < 3"
  1383. },
  1384. "engines": {
  1385. "node": ">=0.10.0"
  1386. }
  1387. },
  1388. "node_modules/inherits": {
  1389. "version": "2.0.4",
  1390. "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz",
  1391. "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
  1392. "license": "ISC"
  1393. },
  1394. "node_modules/ip-address": {
  1395. "version": "10.1.0",
  1396. "resolved": "https://registry.npmmirror.com/ip-address/-/ip-address-10.1.0.tgz",
  1397. "integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==",
  1398. "license": "MIT",
  1399. "engines": {
  1400. "node": ">= 12"
  1401. }
  1402. },
  1403. "node_modules/ipaddr.js": {
  1404. "version": "1.9.1",
  1405. "resolved": "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
  1406. "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
  1407. "license": "MIT",
  1408. "engines": {
  1409. "node": ">= 0.10"
  1410. }
  1411. },
  1412. "node_modules/is-promise": {
  1413. "version": "4.0.0",
  1414. "resolved": "https://registry.npmmirror.com/is-promise/-/is-promise-4.0.0.tgz",
  1415. "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
  1416. "license": "MIT"
  1417. },
  1418. "node_modules/isexe": {
  1419. "version": "2.0.0",
  1420. "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz",
  1421. "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
  1422. "license": "ISC"
  1423. },
  1424. "node_modules/jose": {
  1425. "version": "6.2.2",
  1426. "resolved": "https://registry.npmmirror.com/jose/-/jose-6.2.2.tgz",
  1427. "integrity": "sha512-d7kPDd34KO/YnzaDOlikGpOurfF0ByC2sEV4cANCtdqLlTfBlw2p14O/5d/zv40gJPbIQxfES3nSx1/oYNyuZQ==",
  1428. "license": "MIT",
  1429. "funding": {
  1430. "url": "https://github.com/sponsors/panva"
  1431. }
  1432. },
  1433. "node_modules/js-tokens": {
  1434. "version": "4.0.0",
  1435. "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz",
  1436. "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
  1437. "license": "MIT"
  1438. },
  1439. "node_modules/json-schema-traverse": {
  1440. "version": "1.0.0",
  1441. "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
  1442. "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
  1443. "license": "MIT"
  1444. },
  1445. "node_modules/json-schema-typed": {
  1446. "version": "8.0.2",
  1447. "resolved": "https://registry.npmmirror.com/json-schema-typed/-/json-schema-typed-8.0.2.tgz",
  1448. "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==",
  1449. "license": "BSD-2-Clause"
  1450. },
  1451. "node_modules/loose-envify": {
  1452. "version": "1.4.0",
  1453. "resolved": "https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz",
  1454. "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
  1455. "license": "MIT",
  1456. "dependencies": {
  1457. "js-tokens": "^3.0.0 || ^4.0.0"
  1458. },
  1459. "bin": {
  1460. "loose-envify": "cli.js"
  1461. }
  1462. },
  1463. "node_modules/lru-cache": {
  1464. "version": "11.3.5",
  1465. "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-11.3.5.tgz",
  1466. "integrity": "sha512-NxVFwLAnrd9i7KUBxC4DrUhmgjzOs+1Qm50D3oF1/oL+r1NpZ4gA7xvG0/zJ8evR7zIKn4vLf7qTNduWFtCrRw==",
  1467. "license": "BlueOak-1.0.0",
  1468. "engines": {
  1469. "node": "20 || >=22"
  1470. }
  1471. },
  1472. "node_modules/math-intrinsics": {
  1473. "version": "1.1.0",
  1474. "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
  1475. "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
  1476. "license": "MIT",
  1477. "engines": {
  1478. "node": ">= 0.4"
  1479. }
  1480. },
  1481. "node_modules/media-typer": {
  1482. "version": "0.3.0",
  1483. "resolved": "https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz",
  1484. "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
  1485. "license": "MIT",
  1486. "engines": {
  1487. "node": ">= 0.6"
  1488. }
  1489. },
  1490. "node_modules/merge-descriptors": {
  1491. "version": "1.0.3",
  1492. "resolved": "https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
  1493. "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
  1494. "license": "MIT",
  1495. "funding": {
  1496. "url": "https://github.com/sponsors/sindresorhus"
  1497. }
  1498. },
  1499. "node_modules/methods": {
  1500. "version": "1.1.2",
  1501. "resolved": "https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz",
  1502. "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
  1503. "license": "MIT",
  1504. "engines": {
  1505. "node": ">= 0.6"
  1506. }
  1507. },
  1508. "node_modules/mime": {
  1509. "version": "1.6.0",
  1510. "resolved": "https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz",
  1511. "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
  1512. "license": "MIT",
  1513. "bin": {
  1514. "mime": "cli.js"
  1515. },
  1516. "engines": {
  1517. "node": ">=4"
  1518. }
  1519. },
  1520. "node_modules/mime-db": {
  1521. "version": "1.52.0",
  1522. "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
  1523. "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
  1524. "license": "MIT",
  1525. "engines": {
  1526. "node": ">= 0.6"
  1527. }
  1528. },
  1529. "node_modules/mime-types": {
  1530. "version": "2.1.35",
  1531. "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz",
  1532. "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
  1533. "license": "MIT",
  1534. "dependencies": {
  1535. "mime-db": "1.52.0"
  1536. },
  1537. "engines": {
  1538. "node": ">= 0.6"
  1539. }
  1540. },
  1541. "node_modules/minimatch": {
  1542. "version": "10.2.5",
  1543. "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-10.2.5.tgz",
  1544. "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
  1545. "license": "BlueOak-1.0.0",
  1546. "dependencies": {
  1547. "brace-expansion": "^5.0.5"
  1548. },
  1549. "engines": {
  1550. "node": "18 || 20 || >=22"
  1551. },
  1552. "funding": {
  1553. "url": "https://github.com/sponsors/isaacs"
  1554. }
  1555. },
  1556. "node_modules/minimist": {
  1557. "version": "1.2.8",
  1558. "resolved": "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz",
  1559. "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
  1560. "license": "MIT",
  1561. "funding": {
  1562. "url": "https://github.com/sponsors/ljharb"
  1563. }
  1564. },
  1565. "node_modules/minipass": {
  1566. "version": "7.1.3",
  1567. "resolved": "https://registry.npmmirror.com/minipass/-/minipass-7.1.3.tgz",
  1568. "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
  1569. "license": "BlueOak-1.0.0",
  1570. "engines": {
  1571. "node": ">=16 || 14 >=14.17"
  1572. }
  1573. },
  1574. "node_modules/ms": {
  1575. "version": "2.0.0",
  1576. "resolved": "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz",
  1577. "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
  1578. "license": "MIT"
  1579. },
  1580. "node_modules/negotiator": {
  1581. "version": "0.6.3",
  1582. "resolved": "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz",
  1583. "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
  1584. "license": "MIT",
  1585. "engines": {
  1586. "node": ">= 0.6"
  1587. }
  1588. },
  1589. "node_modules/neo-async": {
  1590. "version": "2.6.2",
  1591. "resolved": "https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz",
  1592. "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
  1593. "license": "MIT"
  1594. },
  1595. "node_modules/object-assign": {
  1596. "version": "4.1.1",
  1597. "resolved": "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz",
  1598. "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
  1599. "license": "MIT",
  1600. "engines": {
  1601. "node": ">=0.10.0"
  1602. }
  1603. },
  1604. "node_modules/object-inspect": {
  1605. "version": "1.13.4",
  1606. "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.4.tgz",
  1607. "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
  1608. "license": "MIT",
  1609. "engines": {
  1610. "node": ">= 0.4"
  1611. },
  1612. "funding": {
  1613. "url": "https://github.com/sponsors/ljharb"
  1614. }
  1615. },
  1616. "node_modules/on-finished": {
  1617. "version": "2.4.1",
  1618. "resolved": "https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz",
  1619. "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
  1620. "license": "MIT",
  1621. "dependencies": {
  1622. "ee-first": "1.1.1"
  1623. },
  1624. "engines": {
  1625. "node": ">= 0.8"
  1626. }
  1627. },
  1628. "node_modules/once": {
  1629. "version": "1.4.0",
  1630. "resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz",
  1631. "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
  1632. "license": "ISC",
  1633. "dependencies": {
  1634. "wrappy": "1"
  1635. }
  1636. },
  1637. "node_modules/parseurl": {
  1638. "version": "1.3.3",
  1639. "resolved": "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz",
  1640. "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
  1641. "license": "MIT",
  1642. "engines": {
  1643. "node": ">= 0.8"
  1644. }
  1645. },
  1646. "node_modules/path-key": {
  1647. "version": "3.1.1",
  1648. "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz",
  1649. "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
  1650. "license": "MIT",
  1651. "engines": {
  1652. "node": ">=8"
  1653. }
  1654. },
  1655. "node_modules/path-scurry": {
  1656. "version": "2.0.2",
  1657. "resolved": "https://registry.npmmirror.com/path-scurry/-/path-scurry-2.0.2.tgz",
  1658. "integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==",
  1659. "license": "BlueOak-1.0.0",
  1660. "dependencies": {
  1661. "lru-cache": "^11.0.0",
  1662. "minipass": "^7.1.2"
  1663. },
  1664. "engines": {
  1665. "node": "18 || 20 || >=22"
  1666. },
  1667. "funding": {
  1668. "url": "https://github.com/sponsors/isaacs"
  1669. }
  1670. },
  1671. "node_modules/path-to-regexp": {
  1672. "version": "0.1.13",
  1673. "resolved": "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-0.1.13.tgz",
  1674. "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==",
  1675. "license": "MIT"
  1676. },
  1677. "node_modules/picocolors": {
  1678. "version": "1.1.1",
  1679. "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz",
  1680. "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
  1681. "license": "ISC"
  1682. },
  1683. "node_modules/pkce-challenge": {
  1684. "version": "5.0.1",
  1685. "resolved": "https://registry.npmmirror.com/pkce-challenge/-/pkce-challenge-5.0.1.tgz",
  1686. "integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==",
  1687. "license": "MIT",
  1688. "engines": {
  1689. "node": ">=16.20.0"
  1690. }
  1691. },
  1692. "node_modules/playwright": {
  1693. "version": "1.59.1",
  1694. "resolved": "https://registry.npmmirror.com/playwright/-/playwright-1.59.1.tgz",
  1695. "integrity": "sha512-C8oWjPR3F81yljW9o5OxcWzfh6avkVwDD2VYdwIGqTkl+OGFISgypqzfu7dOe4QNLL2aqcWBmI3PMtLIK233lw==",
  1696. "dev": true,
  1697. "license": "Apache-2.0",
  1698. "dependencies": {
  1699. "playwright-core": "1.59.1"
  1700. },
  1701. "bin": {
  1702. "playwright": "cli.js"
  1703. },
  1704. "engines": {
  1705. "node": ">=18"
  1706. },
  1707. "optionalDependencies": {
  1708. "fsevents": "2.3.2"
  1709. }
  1710. },
  1711. "node_modules/playwright-core": {
  1712. "version": "1.59.1",
  1713. "resolved": "https://registry.npmmirror.com/playwright-core/-/playwright-core-1.59.1.tgz",
  1714. "integrity": "sha512-HBV/RJg81z5BiiZ9yPzIiClYV/QMsDCKUyogwH9p3MCP6IYjUFu/MActgYAvK0oWyV9NlwM3GLBjADyWgydVyg==",
  1715. "dev": true,
  1716. "license": "Apache-2.0",
  1717. "bin": {
  1718. "playwright-core": "cli.js"
  1719. },
  1720. "engines": {
  1721. "node": ">=18"
  1722. }
  1723. },
  1724. "node_modules/proxy-addr": {
  1725. "version": "2.0.7",
  1726. "resolved": "https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz",
  1727. "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
  1728. "license": "MIT",
  1729. "dependencies": {
  1730. "forwarded": "0.2.0",
  1731. "ipaddr.js": "1.9.1"
  1732. },
  1733. "engines": {
  1734. "node": ">= 0.10"
  1735. }
  1736. },
  1737. "node_modules/qs": {
  1738. "version": "6.14.2",
  1739. "resolved": "https://registry.npmmirror.com/qs/-/qs-6.14.2.tgz",
  1740. "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
  1741. "license": "BSD-3-Clause",
  1742. "dependencies": {
  1743. "side-channel": "^1.1.0"
  1744. },
  1745. "engines": {
  1746. "node": ">=0.6"
  1747. },
  1748. "funding": {
  1749. "url": "https://github.com/sponsors/ljharb"
  1750. }
  1751. },
  1752. "node_modules/range-parser": {
  1753. "version": "1.2.1",
  1754. "resolved": "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz",
  1755. "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
  1756. "license": "MIT",
  1757. "engines": {
  1758. "node": ">= 0.6"
  1759. }
  1760. },
  1761. "node_modules/raw-body": {
  1762. "version": "3.0.2",
  1763. "resolved": "https://registry.npmmirror.com/raw-body/-/raw-body-3.0.2.tgz",
  1764. "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
  1765. "license": "MIT",
  1766. "dependencies": {
  1767. "bytes": "~3.1.2",
  1768. "http-errors": "~2.0.1",
  1769. "iconv-lite": "~0.7.0",
  1770. "unpipe": "~1.0.0"
  1771. },
  1772. "engines": {
  1773. "node": ">= 0.10"
  1774. }
  1775. },
  1776. "node_modules/raw-body/node_modules/iconv-lite": {
  1777. "version": "0.7.2",
  1778. "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.7.2.tgz",
  1779. "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
  1780. "license": "MIT",
  1781. "dependencies": {
  1782. "safer-buffer": ">= 2.1.2 < 3.0.0"
  1783. },
  1784. "engines": {
  1785. "node": ">=0.10.0"
  1786. },
  1787. "funding": {
  1788. "type": "opencollective",
  1789. "url": "https://opencollective.com/express"
  1790. }
  1791. },
  1792. "node_modules/react": {
  1793. "version": "18.3.1",
  1794. "resolved": "https://registry.npmmirror.com/react/-/react-18.3.1.tgz",
  1795. "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
  1796. "license": "MIT",
  1797. "dependencies": {
  1798. "loose-envify": "^1.1.0"
  1799. },
  1800. "engines": {
  1801. "node": ">=0.10.0"
  1802. }
  1803. },
  1804. "node_modules/react-dom": {
  1805. "version": "18.3.1",
  1806. "resolved": "https://registry.npmmirror.com/react-dom/-/react-dom-18.3.1.tgz",
  1807. "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
  1808. "license": "MIT",
  1809. "dependencies": {
  1810. "loose-envify": "^1.1.0",
  1811. "scheduler": "^0.23.2"
  1812. },
  1813. "peerDependencies": {
  1814. "react": "^18.3.1"
  1815. }
  1816. },
  1817. "node_modules/require-from-string": {
  1818. "version": "2.0.2",
  1819. "resolved": "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz",
  1820. "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
  1821. "license": "MIT",
  1822. "engines": {
  1823. "node": ">=0.10.0"
  1824. }
  1825. },
  1826. "node_modules/router": {
  1827. "version": "2.2.0",
  1828. "resolved": "https://registry.npmmirror.com/router/-/router-2.2.0.tgz",
  1829. "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
  1830. "license": "MIT",
  1831. "dependencies": {
  1832. "debug": "^4.4.0",
  1833. "depd": "^2.0.0",
  1834. "is-promise": "^4.0.0",
  1835. "parseurl": "^1.3.3",
  1836. "path-to-regexp": "^8.0.0"
  1837. },
  1838. "engines": {
  1839. "node": ">= 18"
  1840. }
  1841. },
  1842. "node_modules/router/node_modules/debug": {
  1843. "version": "4.4.3",
  1844. "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
  1845. "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
  1846. "license": "MIT",
  1847. "dependencies": {
  1848. "ms": "^2.1.3"
  1849. },
  1850. "engines": {
  1851. "node": ">=6.0"
  1852. },
  1853. "peerDependenciesMeta": {
  1854. "supports-color": {
  1855. "optional": true
  1856. }
  1857. }
  1858. },
  1859. "node_modules/router/node_modules/ms": {
  1860. "version": "2.1.3",
  1861. "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
  1862. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  1863. "license": "MIT"
  1864. },
  1865. "node_modules/router/node_modules/path-to-regexp": {
  1866. "version": "8.4.2",
  1867. "resolved": "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-8.4.2.tgz",
  1868. "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==",
  1869. "license": "MIT",
  1870. "funding": {
  1871. "type": "opencollective",
  1872. "url": "https://opencollective.com/express"
  1873. }
  1874. },
  1875. "node_modules/safe-buffer": {
  1876. "version": "5.2.1",
  1877. "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz",
  1878. "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
  1879. "funding": [
  1880. {
  1881. "type": "github",
  1882. "url": "https://github.com/sponsors/feross"
  1883. },
  1884. {
  1885. "type": "patreon",
  1886. "url": "https://www.patreon.com/feross"
  1887. },
  1888. {
  1889. "type": "consulting",
  1890. "url": "https://feross.org/support"
  1891. }
  1892. ],
  1893. "license": "MIT"
  1894. },
  1895. "node_modules/safer-buffer": {
  1896. "version": "2.1.2",
  1897. "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz",
  1898. "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
  1899. "license": "MIT"
  1900. },
  1901. "node_modules/scheduler": {
  1902. "version": "0.23.2",
  1903. "resolved": "https://registry.npmmirror.com/scheduler/-/scheduler-0.23.2.tgz",
  1904. "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
  1905. "license": "MIT",
  1906. "dependencies": {
  1907. "loose-envify": "^1.1.0"
  1908. }
  1909. },
  1910. "node_modules/send": {
  1911. "version": "0.19.2",
  1912. "resolved": "https://registry.npmmirror.com/send/-/send-0.19.2.tgz",
  1913. "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
  1914. "license": "MIT",
  1915. "dependencies": {
  1916. "debug": "2.6.9",
  1917. "depd": "2.0.0",
  1918. "destroy": "1.2.0",
  1919. "encodeurl": "~2.0.0",
  1920. "escape-html": "~1.0.3",
  1921. "etag": "~1.8.1",
  1922. "fresh": "~0.5.2",
  1923. "http-errors": "~2.0.1",
  1924. "mime": "1.6.0",
  1925. "ms": "2.1.3",
  1926. "on-finished": "~2.4.1",
  1927. "range-parser": "~1.2.1",
  1928. "statuses": "~2.0.2"
  1929. },
  1930. "engines": {
  1931. "node": ">= 0.8.0"
  1932. }
  1933. },
  1934. "node_modules/send/node_modules/ms": {
  1935. "version": "2.1.3",
  1936. "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
  1937. "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
  1938. "license": "MIT"
  1939. },
  1940. "node_modules/serve-static": {
  1941. "version": "1.16.3",
  1942. "resolved": "https://registry.npmmirror.com/serve-static/-/serve-static-1.16.3.tgz",
  1943. "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
  1944. "license": "MIT",
  1945. "dependencies": {
  1946. "encodeurl": "~2.0.0",
  1947. "escape-html": "~1.0.3",
  1948. "parseurl": "~1.3.3",
  1949. "send": "~0.19.1"
  1950. },
  1951. "engines": {
  1952. "node": ">= 0.8.0"
  1953. }
  1954. },
  1955. "node_modules/setprototypeof": {
  1956. "version": "1.2.0",
  1957. "resolved": "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz",
  1958. "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
  1959. "license": "ISC"
  1960. },
  1961. "node_modules/shebang-command": {
  1962. "version": "2.0.0",
  1963. "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz",
  1964. "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
  1965. "license": "MIT",
  1966. "dependencies": {
  1967. "shebang-regex": "^3.0.0"
  1968. },
  1969. "engines": {
  1970. "node": ">=8"
  1971. }
  1972. },
  1973. "node_modules/shebang-regex": {
  1974. "version": "3.0.0",
  1975. "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz",
  1976. "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
  1977. "license": "MIT",
  1978. "engines": {
  1979. "node": ">=8"
  1980. }
  1981. },
  1982. "node_modules/side-channel": {
  1983. "version": "1.1.0",
  1984. "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.1.0.tgz",
  1985. "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
  1986. "license": "MIT",
  1987. "dependencies": {
  1988. "es-errors": "^1.3.0",
  1989. "object-inspect": "^1.13.3",
  1990. "side-channel-list": "^1.0.0",
  1991. "side-channel-map": "^1.0.1",
  1992. "side-channel-weakmap": "^1.0.2"
  1993. },
  1994. "engines": {
  1995. "node": ">= 0.4"
  1996. },
  1997. "funding": {
  1998. "url": "https://github.com/sponsors/ljharb"
  1999. }
  2000. },
  2001. "node_modules/side-channel-list": {
  2002. "version": "1.0.1",
  2003. "resolved": "https://registry.npmmirror.com/side-channel-list/-/side-channel-list-1.0.1.tgz",
  2004. "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
  2005. "license": "MIT",
  2006. "dependencies": {
  2007. "es-errors": "^1.3.0",
  2008. "object-inspect": "^1.13.4"
  2009. },
  2010. "engines": {
  2011. "node": ">= 0.4"
  2012. },
  2013. "funding": {
  2014. "url": "https://github.com/sponsors/ljharb"
  2015. }
  2016. },
  2017. "node_modules/side-channel-map": {
  2018. "version": "1.0.1",
  2019. "resolved": "https://registry.npmmirror.com/side-channel-map/-/side-channel-map-1.0.1.tgz",
  2020. "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
  2021. "license": "MIT",
  2022. "dependencies": {
  2023. "call-bound": "^1.0.2",
  2024. "es-errors": "^1.3.0",
  2025. "get-intrinsic": "^1.2.5",
  2026. "object-inspect": "^1.13.3"
  2027. },
  2028. "engines": {
  2029. "node": ">= 0.4"
  2030. },
  2031. "funding": {
  2032. "url": "https://github.com/sponsors/ljharb"
  2033. }
  2034. },
  2035. "node_modules/side-channel-weakmap": {
  2036. "version": "1.0.2",
  2037. "resolved": "https://registry.npmmirror.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
  2038. "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
  2039. "license": "MIT",
  2040. "dependencies": {
  2041. "call-bound": "^1.0.2",
  2042. "es-errors": "^1.3.0",
  2043. "get-intrinsic": "^1.2.5",
  2044. "object-inspect": "^1.13.3",
  2045. "side-channel-map": "^1.0.1"
  2046. },
  2047. "engines": {
  2048. "node": ">= 0.4"
  2049. },
  2050. "funding": {
  2051. "url": "https://github.com/sponsors/ljharb"
  2052. }
  2053. },
  2054. "node_modules/sisteransi": {
  2055. "version": "1.0.5",
  2056. "resolved": "https://registry.npmmirror.com/sisteransi/-/sisteransi-1.0.5.tgz",
  2057. "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
  2058. "license": "MIT"
  2059. },
  2060. "node_modules/source-map": {
  2061. "version": "0.6.1",
  2062. "resolved": "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz",
  2063. "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
  2064. "license": "BSD-3-Clause",
  2065. "engines": {
  2066. "node": ">=0.10.0"
  2067. }
  2068. },
  2069. "node_modules/statuses": {
  2070. "version": "2.0.2",
  2071. "resolved": "https://registry.npmmirror.com/statuses/-/statuses-2.0.2.tgz",
  2072. "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
  2073. "license": "MIT",
  2074. "engines": {
  2075. "node": ">= 0.8"
  2076. }
  2077. },
  2078. "node_modules/toidentifier": {
  2079. "version": "1.0.1",
  2080. "resolved": "https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz",
  2081. "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
  2082. "license": "MIT",
  2083. "engines": {
  2084. "node": ">=0.6"
  2085. }
  2086. },
  2087. "node_modules/tree-kill": {
  2088. "version": "1.2.2",
  2089. "resolved": "https://registry.npmmirror.com/tree-kill/-/tree-kill-1.2.2.tgz",
  2090. "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==",
  2091. "license": "MIT",
  2092. "optional": true,
  2093. "bin": {
  2094. "tree-kill": "cli.js"
  2095. }
  2096. },
  2097. "node_modules/type-is": {
  2098. "version": "1.6.18",
  2099. "resolved": "https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz",
  2100. "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
  2101. "license": "MIT",
  2102. "dependencies": {
  2103. "media-typer": "0.3.0",
  2104. "mime-types": "~2.1.24"
  2105. },
  2106. "engines": {
  2107. "node": ">= 0.6"
  2108. }
  2109. },
  2110. "node_modules/uglify-js": {
  2111. "version": "3.19.3",
  2112. "resolved": "https://registry.npmmirror.com/uglify-js/-/uglify-js-3.19.3.tgz",
  2113. "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==",
  2114. "license": "BSD-2-Clause",
  2115. "optional": true,
  2116. "bin": {
  2117. "uglifyjs": "bin/uglifyjs"
  2118. },
  2119. "engines": {
  2120. "node": ">=0.8.0"
  2121. }
  2122. },
  2123. "node_modules/unpipe": {
  2124. "version": "1.0.0",
  2125. "resolved": "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz",
  2126. "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
  2127. "license": "MIT",
  2128. "engines": {
  2129. "node": ">= 0.8"
  2130. }
  2131. },
  2132. "node_modules/utils-merge": {
  2133. "version": "1.0.1",
  2134. "resolved": "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz",
  2135. "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
  2136. "license": "MIT",
  2137. "engines": {
  2138. "node": ">= 0.4.0"
  2139. }
  2140. },
  2141. "node_modules/vary": {
  2142. "version": "1.1.2",
  2143. "resolved": "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz",
  2144. "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
  2145. "license": "MIT",
  2146. "engines": {
  2147. "node": ">= 0.8"
  2148. }
  2149. },
  2150. "node_modules/which": {
  2151. "version": "2.0.2",
  2152. "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz",
  2153. "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
  2154. "license": "ISC",
  2155. "dependencies": {
  2156. "isexe": "^2.0.0"
  2157. },
  2158. "bin": {
  2159. "node-which": "bin/node-which"
  2160. },
  2161. "engines": {
  2162. "node": ">= 8"
  2163. }
  2164. },
  2165. "node_modules/wordwrap": {
  2166. "version": "1.0.0",
  2167. "resolved": "https://registry.npmmirror.com/wordwrap/-/wordwrap-1.0.0.tgz",
  2168. "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==",
  2169. "license": "MIT"
  2170. },
  2171. "node_modules/wrappy": {
  2172. "version": "1.0.2",
  2173. "resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz",
  2174. "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
  2175. "license": "ISC"
  2176. },
  2177. "node_modules/yaml": {
  2178. "version": "2.8.3",
  2179. "resolved": "https://registry.npmmirror.com/yaml/-/yaml-2.8.3.tgz",
  2180. "integrity": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==",
  2181. "license": "ISC",
  2182. "bin": {
  2183. "yaml": "bin.mjs"
  2184. },
  2185. "engines": {
  2186. "node": ">= 14.6"
  2187. },
  2188. "funding": {
  2189. "url": "https://github.com/sponsors/eemeli"
  2190. }
  2191. },
  2192. "node_modules/zod": {
  2193. "version": "4.3.6",
  2194. "resolved": "https://registry.npmmirror.com/zod/-/zod-4.3.6.tgz",
  2195. "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
  2196. "license": "MIT",
  2197. "funding": {
  2198. "url": "https://github.com/sponsors/colinhacks"
  2199. }
  2200. },
  2201. "node_modules/zod-to-json-schema": {
  2202. "version": "3.25.2",
  2203. "resolved": "https://registry.npmmirror.com/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz",
  2204. "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==",
  2205. "license": "ISC",
  2206. "peerDependencies": {
  2207. "zod": "^3.25.28 || ^4"
  2208. }
  2209. }
  2210. }
  2211. }