n8n-nodes-aluvia
Version:
n8n community node for making HTTP requests through Aluvia's mobile connectivity network
73 lines • 1.79 kB
JSON
{
"name": "n8n-nodes-aluvia",
"version": "1.0.0",
"description": "n8n community node for making HTTP requests through Aluvia's mobile connectivity network",
"keywords": [
"n8n-community-node-package",
"n8n",
"aluvia",
"connectivity",
"mobile-connectivity",
"http"
],
"license": "MIT",
"homepage": "https://github.com/aluvia-connect/n8n-nodes-aluvia",
"author": {
"name": "Aluvia",
"email": "support@aluvia.io"
},
"repository": {
"type": "git",
"url": "https://github.com/aluvia-connect/n8n-nodes-aluvia.git"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"lintfix": "eslint . --ext .ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build && npm run lint -s && npm test"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/AluviaToken.credentials.js"
],
"nodes": [
"dist/Aluvia.node.js"
]
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/jest": "^29.5.12",
"@types/node": "^24.10.1",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"eslint-plugin-n8n-nodes-base": "^1.12.1",
"gulp": "^5.0.1",
"jest": "^29.7.0",
"n8n-workflow": "*",
"prettier": "^3.6.2",
"ts-jest": "^29.1.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"dependencies": {
"aluvia-ts-sdk": "^1.0.0",
"got": "^14.6.5",
"proxy-agent": "^6.5.0"
},
"engines": {
"node": ">=20.0.0"
}
}