package.json•1.89 kB
{
"name": "wapulse-whatsapp-mcp-server",
"version": "1.0.3",
"description": "MCP server for WaPulse WhatsApp Web API - send messages, manage groups, handle files through WhatsApp Web",
"main": "dist/smithery-index.js",
"module": "./src/smithery-index.ts",
"type": "module",
"exports": {
".": "./dist/smithery-index.js",
"./stdio": "./dist/stdio-index.js"
},
"bin": {
"wapulse-whatsapp-mcp-server": "dist/stdio-index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"whatsapp",
"wapulse",
"model-context-protocol",
"ai",
"chatbot",
"messaging"
],
"author": "Gal Havkin <galhavkin1997@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Quegenx/wapulse-mcp.git"
},
"homepage": "https://github.com/Quegenx/wapulse-mcp#readme",
"bugs": {
"url": "https://github.com/Quegenx/wapulse-mcp/issues"
},
"scripts": {
"build": "tsup && echo '#!/usr/bin/env node' | cat - dist/stdio-index.js > temp && mv temp dist/stdio-index.js && chmod +x dist/stdio-index.js",
"start": "node dist/smithery-index.js",
"dev": "tsx src/smithery-index.ts",
"dev:stdio": "tsx src/stdio-index.ts",
"dev:http": "NODE_ENV=production tsx src/smithery-index.ts",
"format": "prettier --write ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"node-fetch": "^3.3.2",
"zod": "^3.24.4"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.1",
"@types/node": "^22.15.17",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.19.4",
"typescript": "^5.3.3"
},
"tsup": {
"entry": [
"src/stdio-index.ts",
"src/smithery-index.ts"
],
"format": [
"esm"
],
"dts": true,
"splitting": false,
"sourcemap": true,
"clean": true
}
}