diff --git a/README.md b/README.md index a90b7cb..f224009 100644 --- a/README.md +++ b/README.md @@ -304,6 +304,15 @@ See all releases: [GitHub Releases](https://github.com/letta-ai/lettabot/release ### WhatsApp +**Cannot find package 'keyv'** +``` +Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'keyv' +``` +Clean reinstall fixes this: +```bash +rm -rf node_modules package-lock.json && npm install +``` + **Session errors / "Bad MAC" messages** These are normal Signal Protocol renegotiation messages. They're noisy but harmless. diff --git a/package.json b/package.json index 792c714..9f70b65 100644 --- a/package.json +++ b/package.json @@ -71,5 +71,8 @@ "devDependencies": { "@types/update-notifier": "^6.0.8", "vitest": "^4.0.18" + }, + "overrides": { + "keyv": "$keyv" } }