n8n-nodes-dex
Version:
n8n node module for dYdX v4 trading and account access
64 lines (63 loc) • 1.68 kB
JSON
{
"name": "n8n-nodes-dex",
"version": "0.2.6",
"description": "n8n node module for dYdX v4 trading and account access",
"keywords": [
"n8n-community-node-package",
"n8n",
"dydx",
"trading",
"defi"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "matteo",
"email": "matteo.assinnata@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dogewithit/n8n-node-dydx.git"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint ./nodes/**/*.ts ./credentials/**/*.ts",
"lint:strict": "eslint ./nodes/**/*.ts ./credentials/**/*.ts --max-warnings=0",
"lintfix": "eslint ./nodes/**/*.ts ./credentials/**/*.ts --fix",
"test": "./check-unused.sh",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/DydxApi.credentials.js"
],
"nodes": [
"dist/nodes/Dydx/Dydx.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/request-promise-native": "~1.0.18",
"@typescript-eslint/eslint-plugin": "5.45",
"@typescript-eslint/parser": "~5.45",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^5.0.0",
"n8n-core": "^1.92.0",
"n8n-workflow": "^1.82.0",
"prettier": "^2.7.1",
"typescript": "~4.8.4"
},
"dependencies": {
"@dydxprotocol/v4-client-js": "^1.1.31",
"bignumber.js": "^9.3.0",
"node-fetch": "^2.6.7"
}
}