{
  "name": "whatsapp-api-ts",
  "version": "1.0.1",
  "author": "Secreto31126",
  "description": "A TypeScript server agnostic Whatsapp's Official API framework",
  "license": "MIT",
  "type": "module",
  "main": "lib/common/index.js",
  "module": "lib/module/index.js",
  "types": "lib/types/index.d.ts",
  "files": [
    "lib/**/*"
  ],
  "exports": {
    ".": {
      "types": "./lib/types/index.d.ts",
      "import": "./lib/module/index.js",
      "require": "./lib/common/index.js"
    },
    "./messages": {
      "types": "./lib/types/messages/index.d.ts",
      "import": "./lib/module/messages/index.js",
      "require": "./lib/common/messages/index.js"
    }
  },
  "scripts": {
    "build": "npm run build:module && npm run build:common && npm run build:types",
    "build:module": "tsc",
    "build:module:watch": "tsc --watch",
    "build:module:types": "tsc -d",
    "build:common": "tsc -p tsconfig.common.json",
    "build:common:watch": "tsc -p tsconfig.common.json --watch",
    "build:common:types": "tsc -p tsconfig.common.json -d",
    "build:types": "tsc -p tsconfig.types.json",
    "build:standalone": "tsc -p tsconfig.standalone.json",
    "test": "mocha",
    "test:watch": "mocha --reporter min --watch",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "prettier": "prettier --check src test",
    "prettier:write": "prettier --write src test",
    "coverage": "nyc --reporter=text mocha --reporter min",
    "document": "typedoc && cp -r docs_statics/* docs/",
    "clear": "rm -rf docs/ docs_temp/ lib/ coverage/ .nyc_output/"
  },
  "keywords": [
    "whatsapp",
    "cloud",
    "api",
    "framework",
    "whatsapp-cloud",
    "cloud-api",
    "whatsapp-cloud-api",
    "whatsapp-business",
    "whatsapp-business-api",
    "bot",
    "whatsapp-bot",
    "chatbot",
    "bot-framework",
    "nodejs",
    "deno",
    "bun",
    "bot-api",
    "whatsapp-api",
    "business-api"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/Secreto31126/whatsapp-api-js.git"
  },
  "devDependencies": {
    "@types/node": "^18.13.0",
    "@typescript-eslint/eslint-plugin": "^5.51.0",
    "@typescript-eslint/parser": "^5.51.0",
    "eslint": "^8.26.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-tsdoc": "^0.2.17",
    "mocha": "^10.0.0",
    "nyc": "^15.1.0",
    "prettier": "2.8.4",
    "sinon": "^15.0.1",
    "typedoc": "^0.23.25",
    "typescript": "^4.8.4",
    "undici": "^5.18.0"
  }
}
