UNPKG

n8n-nodes-wechat-publish

Version:

N8N nodes for WeChat Official Account publishing - Create drafts and publish articles to WeChat Official Account platform

73 lines 1.88 kB
{ "name": "n8n-nodes-wechat-publish", "version": "1.2.4", "description": "N8N nodes for WeChat Official Account publishing - Create drafts and publish articles to WeChat Official Account platform", "keywords": [ "n8n-nodes-base", "n8n", "wechat", "weixin", "publish", "article", "draft", "china", "social-media" ], "license": "MIT", "homepage": "https://github.com/yourusername/n8n-nodes-wechat-publish", "author": { "name": "Your Name", "email": "your.email@example.com" }, "repository": { "type": "git", "url": "git+https://github.com/yourusername/n8n-nodes-wechat-publish.git" }, "main": "dist/index.js", "scripts": { "build": "tsc && mkdir -p dist/nodes/WeChat && cp nodes/WeChat/wechat.svg dist/nodes/WeChat/", "dev": "tsc --watch", "format": "prettier --write .", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "prepublishOnly": "npm run build && npm run lint && npm run test" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/WeChatApi.credentials.js" ], "nodes": [ "dist/nodes/WeChat/WeChat.node.js" ] }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^18.15.0", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "eslint": "^8.37.0", "eslint-plugin-n8n-nodes-base": "^1.11.0", "jest": "^29.5.0", "n8n-workflow": "^1.0.0", "prettier": "^2.8.0", "ts-jest": "^29.1.0", "typescript": "^5.0.0" }, "dependencies": { "axios": "^1.3.0", "form-data": "^4.0.0" }, "peerDependencies": { "n8n-workflow": "*" }, "engines": { "node": ">=16.0.0" } }