UNPKG

n8n-nodes-walichat

Version:

n8n plugin for WaliChat

63 lines (62 loc) 1.61 kB
{ "name": "n8n-nodes-walichat", "version": "1.2.0", "description": "n8n plugin for WaliChat", "main": "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" ], "n8n": { "n8nNodesApiVersion": 1, "nodes": [ "dist/nodes/WaliChat.node.js", "dist/nodes/WaliChatTrigger.node.js" ], "credentials": [ "dist/credentials/ApiKey.credentials.js" ] }, "scripts": { "clean": "rm -rf dist", "build": "npm run clean && tsc && cp icon.png dist/nodes/icon.png", "watch": "tsc --watch", "lint": "eslint . --ext .ts", "prepublishOnly": "npm run build", "dev": "npm run build && n8n start", "dev:copy": "npm run build && cp -r dist/ $HOME/.n8n/nodes/node_modules/n8n-nodes-walichat/dist && cp package.json $HOME/.n8n/nodes/node_modules/n8n-nodes-walichat/", "test": "jest", "test:watch": "jest --watch" }, "dependencies": { "axios": "^1.8.4", "n8n-core": "^1.89.0", "n8n-workflow": "^1.89.0" }, "devDependencies": { "@types/jest": "^29.5.1", "@types/node": "^14.14.31", "eslint": "^7.20.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-plugin-import": "^2.22.1", "jest": "^29.5.0", "nock": "^13.3.1", "ts-jest": "^29.1.0", "typescript": "^4.1.3" } }