n8n-nodes-zid-beta
Version:
BETA; n8n custom nodes for integrating with the Zid API (orders, products, customers, etc.)
52 lines (51 loc) • 1.13 kB
JSON
{
"name": "n8n-nodes-zid-beta",
"version": "0.1.3",
"description": "BETA; n8n custom nodes for integrating with the Zid API (orders, products, customers, etc.)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/ZidOAuth2Api.credentials.js"
],
"nodes": [
"dist/ZidOrderTrigger.node.js",
"dist/ZidCustomerTrigger.node.js",
"dist/Zid.node.js"
]
},
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest",
"prepare": "npm run build"
},
"keywords": [
"n8n",
"zid",
"automation",
"integration",
"workflow"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.8"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.11.30",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.4.5"
},
"peerDependencies": {
"n8n-core": ">=1.0.0",
"n8n-workflow": ">=1.0.0"
}
}