n8n-nodes-customssh
Version:
n8n community node for advanced SSH connections with configurable ciphers and network device support
69 lines • 1.7 kB
JSON
{
"name": "n8n-nodes-customssh",
"version": "1.0.1",
"description": "n8n community node for advanced SSH connections with configurable ciphers and network device support",
"keywords": [
"n8n-community-node-package",
"n8n",
"ssh",
"network",
"devices",
"terminal",
"remote",
"cisco",
"juniper",
"arista"
],
"license": "MIT",
"homepage": "TBD",
"author": {
"name": "Cybernetic Node Composer",
"email": "cybernetic-node-composer@emailinbox.info"
},
"repository": {
"type": "git",
"url": "TBD"
},
"engines": {
"node": ">=20.10"
},
"packageManager": "npm@10.2.3",
"main": "index.js",
"scripts": {
"build": "node scripts/simple-build.js",
"build:ts": "tsc --skipLibCheck",
"build:fallback": "node scripts/build.js",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"verify": "node scripts/verify.js",
"prepublishOnly": "npm run build && npm run verify",
"test": "npm run verify"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/SshPasswordCredential.credentials.js"
],
"nodes": [
"dist/nodes/CustomSsh/CustomSsh.node.js"
]
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.56.0",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"gulp": "^4.0.2",
"n8n-workflow": "*",
"prettier": "^3.3.2",
"typescript": "^5.5.3"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}