n8n-nodes-wax
Version:
n8n Community Node Package for the WAX Blockchain
95 lines (94 loc) • 2.87 kB
JSON
{
"name": "n8n-nodes-wax",
"version": "0.1.17",
"description": "n8n Community Node Package for the WAX Blockchain",
"keywords": [
"n8n",
"n8n-community-node-package",
"wax",
"eosio",
"blockchain",
"nft"
],
"license": "MIT",
"homepage": "https://github.com/mongus/n8n-nodes-wax",
"author": {
"name": "Aaron Porter",
"email": "aaron@mongus.com"
},
"repository": {
"type": "git",
"url": "https://github.com/mongus/n8n-nodes-wax"
},
"engines": {
"node": ">=20.15"
},
"main": "index.js",
"scripts": {
"build": "npx rimraf dist && tsc && gulp build:icons",
"dev": "nodemon --watch nodes --ext js,ts,json --exec \"dotenv -- npm run build && n8n start\"",
"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/WaxBlockchainApi.credentials.js"
],
"nodes": [
"dist/nodes/Wax/Wax.node.js",
"dist/nodes/WaxGetAccountInfo/WaxGetAccountInfo.node.js",
"dist/nodes/WaxGetAssets/WaxGetAssets.node.js",
"dist/nodes/WaxGetBalance/WaxGetBalance.node.js",
"dist/nodes/WaxTransferNft/WaxTransferNft.node.js",
"dist/nodes/WaxTransferToken/WaxTransferToken.node.js",
"dist/nodes/WaxVerifyAddress/WaxVerifyAddress.node.js"
]
},
"devDependencies": {
"@types/node": "^24.0.13",
"@typescript-eslint/parser": "~8.32.0",
"dotenv-cli": "^9.0.0",
"eslint": "^8.57.0",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^5.0.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"dependencies": {
"@waxio/waxjs": "^0.0.15",
"atomicassets": "^1.5.1",
"axios": "^1.15.0",
"eosjs": "^22.1.0"
},
"bundleDependencies": [
"@waxio/waxjs",
"atomicassets",
"axios",
"eosjs"
],
"overrides": {
"elliptic": "^6.6.1",
"bn.js": "^5.2.2",
"axios": "^1.15.0",
"follow-redirects": "^1.15.11",
"form-data": "^4.0.4",
"lodash": "^4.17.24",
"minimatch": "^3.1.3",
"brace-expansion": "^1.1.13",
"ajv": "^6.14.0",
"js-yaml": "^4.1.1",
"flatted": "^3.4.2",
"picomatch": "^2.3.2",
"@babel/runtime": "^7.26.10"
}
}