{
  "name": "wasp-protocol",
  "version": "0.5.0",
  "description": "WhatsApp Session Protocol for Node.js — built-in reconnection, rate limiting, secure credential storage, and multi-tenant isolation. Baileys session management layer. Production-ready.",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.mjs",
      "types": "./dist/index.d.ts"
    }
  },
  "bin": {
    "wasp": "./dist/cli.js"
  },
  "scripts": {
    "postinstall": "[ -f scripts/patch-baileys.sh ] && bash scripts/patch-baileys.sh || true",
    "build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --clean",
    "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src --ext .ts",
    "typecheck": "tsc --noEmit"
  },
  "keywords": [
    "whatsapp",
    "baileys",
    "whatsmeow",
    "session",
    "session-management",
    "multi-tenant",
    "protocol",
    "messaging",
    "queue",
    "anti-ban",
    "bot",
    "api",
    "chatbot",
    "automation",
    "cloud-api",
    "saas",
    "baileys-alternative",
    "whatsapp-session",
    "whatsapp-bot",
    "reconnection",
    "rate-limiting",
    "credential-store",
    "whatsapp-automation",
    "whatsapp-multi-tenant",
    "session-protocol",
    "whatsapp-web",
    "nodejs-whatsapp",
    "typescript-whatsapp"
  ],
  "author": "Kobus Wentzel <kobie3717@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kobie3717/wasp.git"
  },
  "bugs": {
    "url": "https://github.com/kobie3717/wasp/issues"
  },
  "homepage": "https://github.com/kobie3717/wasp#readme",
  "devDependencies": {
    "@types/ioredis": "^4.28.10",
    "@types/node": "^20.19.37",
    "@types/pg": "^8.20.0",
    "@types/qrcode-terminal": "^0.12.2",
    "@typescript-eslint/eslint-plugin": "^7.18.0",
    "@typescript-eslint/parser": "^7.18.0",
    "@vitest/coverage-v8": "^1.6.1",
    "@whiskeysockets/baileys": "^7.0.0-rc.9",
    "eslint": "^8.57.1",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^1.6.1"
  },
  "dependencies": {
    "chalk": "^4.1.2",
    "commander": "^14.0.3",
    "pino": "^9.5.0",
    "qrcode-terminal": "^0.12.0"
  },
  "peerDependencies": {
    "@whiskeysockets/baileys": "^7.0.0-rc.9",
    "ioredis": "^5.0.0",
    "pg": "^8.0.0"
  },
  "peerDependenciesMeta": {
    "@whiskeysockets/baileys": {
      "optional": true
    },
    "ioredis": {
      "optional": true
    },
    "pg": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "examples",
    "Dockerfile",
    "docker-compose.yml",
    "docker-compose.dev.yml"
  ]
}
