UNPKG

n8n-nodes-zakit

Version:
89 lines (88 loc) 2.67 kB
{ "name": "n8n-nodes-zakit", "version": "0.0.5", "description": "Zalo API node for n8n", "keywords": [ "n8n-community-node-package", "Zalo", "Zalo API", "Zalo Chatbot", "Zalo n8n" ], "license": "MIT", "homepage": "https://trolyai.me", "author": { "name": "Quan Nguyen", "email": "me@quanna.dev" }, "repository": { "type": "git", "url": "https://github.com/quannadev/n8n-nodes-zakit.git" }, "main": "index.js", "scripts": { "build": "rm -rf dist && tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier nodes credentials --write", "lint": "eslint nodes credentials package.json", "lintfix": "eslint nodes credentials package.json --fix", "prepublishOnly": "npm run prepublishObfuscateOnly && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json", "build:dev": "npm run build && npm link", "obfuscate": "javascript-obfuscator ./dist --output ./dist-obf --config obfuscator.options.json", "uglify": "find ./dist-obf -type f -name '*.js' -exec uglifyjs {} -o {} --compress --mangle \\;", "prepublishObfuscateOnly": "npm run build && npm run obfuscate && npm run uglify && rm -rf dist && mv dist-obf dist && cp -R nodes/zalo/icons/ ./dist/nodes/zalo/icons" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/ZaloApi.credentials.js" ], "nodes": [ "dist/nodes/zalo/Zalo.node.js", "dist/nodes/zalo/ZaloTrigger.node.js", "dist/nodes/zalo/ZaloQrCode.node.js", "dist/nodes/zalo/ZaloOauth.node.js" ] }, "devDependencies": { "@rollup/plugin-typescript": "^12.1.2", "@types/bun": "^1.2.5", "@types/crypto-js": "^4.2.2", "@types/node": "^22.13.10", "@types/node-fetch": "2.x", "@types/pako": "^2.0.3", "@types/semver": "^7.5.8", "@types/spark-md5": "^3.0.5", "@types/tough-cookie": "^4.0.5", "@types/ws": "^8.18.0", "@typescript-eslint/parser": "^7.18.0", "eslint": "^8.57.1", "eslint-plugin-n8n-nodes-base": "^1.16.3", "gulp": "^4.0.2", "javascript-obfuscator": "^4.1.1", "prettier": "^3.5.3", "rimraf": "^6.0.1", "rollup": "^4.36.0", "typescript": "^5.8.2", "uglify-js": "^3.19.3" }, "peerDependencies": { "n8n-workflow": "1.88.0" }, "dependencies": { "axios": "^1.8.3", "crypto-js": "^4.2.0", "form-data": "^4.0.2", "https-proxy-agent": "^7.0.6", "node-fetch": "^2.7.0", "pako": "^2.1.0", "semver": "^7.7.1", "sharp": "^0.33.5", "spark-md5": "^3.0.2", "tough-cookie": "^5.1.2", "ws": "^8.18.1" } }