{
  "name": "@awadoc/whatsapp-cloud-api",
  "version": "3.2.0",
  "description": "Node.js library for creating bots and sending/receiving messages using the Whatsapp Cloud API",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "default": "./dist/src/index.js"
    },
    "./express": {
      "types": "./dist/src/express.d.ts",
      "default": "./dist/src/express.js"
    },
    "./next": {
      "types": "./dist/src/next.d.ts",
      "default": "./dist/src/next.js"
    },
    "./flows": {
      "types": "./dist/src/flows/index.d.ts",
      "default": "./dist/src/flows/index.js"
    },
    "./flows/endpoint/express": {
      "types": "./dist/src/flows/endpoint/express.d.ts",
      "default": "./dist/src/flows/endpoint/express.js"
    },
    "./flows/endpoint/next": {
      "types": "./dist/src/flows/endpoint/next.d.ts",
      "default": "./dist/src/flows/endpoint/next.js"
    }
  },
  "typesVersions": {
    "*": {
      "express": [
        "dist/src/express.d.ts"
      ],
      "next": [
        "dist/src/next.d.ts"
      ],
      "flows": [
        "dist/src/flows/index.d.ts"
      ],
      "flows/endpoint/express": [
        "dist/src/flows/endpoint/express.d.ts"
      ],
      "flows/endpoint/next": [
        "dist/src/flows/endpoint/next.d.ts"
      ]
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "start": "nodemon",
    "start:demo": "ts-node server_demo.ts",
    "build": "rm -rf dist && tsc",
    "lint": "eslint --ext .ts ./",
    "ts-check": "tsc --noEmit -p  .",
    "test": "jest",
    "pre-commit-message": "echo 'Please wait, running pre-commit checks...' && exit 0",
    "pre-commit": "npm-run-all lint ts-check test",
    "prepare": "[ -d './.husky' ] && husky install"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md",
    "CHANGELOG.md"
  ],
  "dependencies": {
    "axios": "^1.3.5",
    "dotenv": "^16.0.3",
    "form-data": "^4.0.4",
    "mime-types": "^3.0.1",
    "pubsub-js": "^1.9.4",
    "type-fest": "^3.8.0",
    "validator": "^13.9.0"
  },
  "devDependencies": {
    "@tsconfig/node12": "^1.0.11",
    "@types/express": "^4.17.17",
    "@types/jest": "^29.5.0",
    "@types/mime-types": "^3.0.1",
    "@types/node": "^18.15.11",
    "@types/pubsub-js": "^1.8.3",
    "@types/react": "^19.2.7",
    "@types/react-dom": "^19.2.3",
    "@types/supertest": "^2.0.12",
    "@types/uuid": "^9.0.1",
    "@types/validator": "^13.7.14",
    "@typescript-eslint/eslint-plugin": "^5.58.0",
    "@typescript-eslint/parser": "^5.58.0",
    "eslint": "^8.38.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-airbnb-typescript": "^17.0.0",
    "eslint-plugin-import": "^2.27.5",
    "express": "^5.2.1",
    "husky": "^8.0.3",
    "jest": "^29.5.0",
    "next": "^16.3.5",
    "nodemon": "^2.0.22",
    "npm-run-all": "^4.1.5",
    "supertest": "^6.3.3",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.4"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Awadoc/whatsapp-cloud-api.git"
  },
  "keywords": [
    "whatsapp",
    "cloud",
    "api",
    "whatsapp-cloud",
    "cloud-api",
    "whatsapp-cloud-api",
    "whatsapp-business",
    "whatsapp-business-api",
    "whatsapp-flows",
    "flows",
    "bot",
    "whatsapp-bot",
    "chatbot",
    "bot-framework",
    "nodejs",
    "bot-api",
    "whatsapp-api",
    "business-api"
  ],
  "author": "Chibueze <chibueze@awadoc.com>",
  "license": "GPL-3.0",
  "bugs": {
    "url": "https://github.com/Awadoc/whatsapp-cloud-api/issues"
  },
  "homepage": "https://github.com/Awadoc/whatsapp-cloud-api#readme",
  "engines": {
    "node": ">=12"
  },
  "peerDependencies": {
    "express": ">=4.0.0",
    "next": ">=13.0.10"
  },
  "peerDependenciesMeta": {
    "express": {
      "optional": true
    },
    "next": {
      "optional": true
    }
  }
}
