UNPKG

n8n-walichat

Version:

n8n plugin for WaliChat

59 lines (58 loc) 1.4 kB
{ "name": "n8n-walichat", "version": "1.0.0", "description": "n8n plugin for WaliChat", "main": "dist/index.js", "license": "MIT", "homepage": "https://wali.chat", "author": { "name": "WaliChat", "email": "code@wali.chat" }, "keywords": [ "walichat", "whatsapp", "automation", "whatsapp api", "whatsapp bot", "whatsapp automation", "whatsapp agents", "webhooks", "n8n plugin", "n8n whatsapp", "n8n-community-node-package" ], "scripts": { "clean": "rm -rf dist", "build": "npm run clean && tsc", "watch": "tsc --watch", "lint": "eslint . --ext .ts", "prepublishOnly": "npm run build", "dev": "npm run build && n8n start" }, "dependencies": { "axios": "^0.21.1", "n8n-core": "^1.79.1", "n8n-workflow": "^1.70.0" }, "devDependencies": { "@types/node": "^14.14.31", "eslint": "^7.20.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-plugin-import": "^2.22.1", "typescript": "^4.1.3" }, "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/WaliChatApiKey.credentials.js" ], "nodes": [ "dist/nodes/Messages/SendMessages.node.js", "dist/nodes/Files/UploadFile.node.js", "dist/nodes/Validator/ValidateNumbers.node.js", "dist/nodes/Validator/VerifyNumberExists.node.js", "dist/index.js" ] } }