@great-detail/whatsapp
Version:
SDK for interfacing with WhatsApp Business Platform in Typescript or Node.js using the Cloud API, hosted by Meta.
90 lines • 2.4 kB
JSON
{
"name": "@great-detail/whatsapp",
"version": "8.4.0",
"type": "module",
"description": "SDK for interfacing with WhatsApp Business Platform in Typescript or Node.js using the Cloud API, hosted by Meta.",
"repository": {
"type": "git",
"url": "git+https://github.com/great-detail/WhatsApp-JS-SDK.git"
},
"homepage": "https://github.com/great-detail/WhatsApp-JS-SDK",
"bugs": {
"url": "https://github.com/great-detail/WhatsApp-JS-SDK/issues"
},
"author": "Great Detail Ltd <info@greatdetail.com>",
"contributors": [
"Rashed Talukder",
"Dom Webber <dom.webber@hotmail.com>",
"Great Detail Ltd <info@greatdetail.com>"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"keywords": [
"WhatsApp",
"SDK",
"Business",
"Platform",
"secure",
"messaging",
"NodeJS",
"Cloud API"
],
"dependencies": {
"ky": "^1.8.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.33.0",
"@types/node": "^24.2.1",
"eslint": "^9.33.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"publint": "^0.3.12",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"overrides": {
"tmp": "0.2.5"
},
"scripts": {
"build": "tsup src/index.ts --format esm --minify --dts",
"changeset": "changeset",
"fix": "pnpm run /^fix:.*/",
"fix:eslint": "eslint . --fix",
"fix:prettier": "prettier --write .",
"lint": "pnpm run /^lint:.*/",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:publint": "publint",
"lint:typecheck": "npm run typecheck",
"prerelease": "pnpm run build",
"release": "changeset publish",
"test": "pnpm run /^test:.*/",
"test:unit": "node --import tsx --test ./src/**/*.test.ts ./src/*.test.ts",
"test:integration": "pnpm run /^test:integration:.*/",
"test:integration:deno": "cd tests/deno && deno test && cd -",
"test:integration:bun": "cd tests/bun && bun test && cd -",
"typecheck": "tsc --noEmit"
}
}