n8n-nodes-starter/package.json
Cursor Agent c56f70b43d Update ZapSign domain from .com to .co in URLs and contact info
Co-authored-by: andre <andre@zapsign.com.br>
2025-07-31 12:19:03 +00:00

55 lines
1.4 KiB
JSON

{
"name": "n8n-nodes-zapsign",
"version": "1.0.0",
"description": "N8N node for ZapSign digital signature API integration",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "ZapSign",
"email": "support@zapsign.co"
},
"repository": {
"type": "git",
"url": "https://github.com/zapsign/n8n-nodes-zapsign.git"
},
"engines": {
"node": ">=20.15"
},
"main": "index.js",
"scripts": {
"build": "npx rimraf 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 build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/ZapSignApi.credentials.js"
],
"nodes": [
"dist/nodes/ZapSign/ZapSign.node.js",
"dist/nodes/ZapSignTrigger/ZapSignTrigger.node.js"
]
},
"devDependencies": {
"@types/node": "^24.1.0",
"@typescript-eslint/parser": "~8.32.0",
"eslint": "^8.57.0",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^5.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}