n8n-nodes-discord-dnd
Version:
n8n node to create triggers for Discord events
61 lines (60 loc) • 1.64 kB
JSON
{
"name": "n8n-nodes-discord-dnd",
"version": "1.0.0",
"description": "n8n node to create triggers for Discord events",
"keywords": [
"n8n",
"n8n-node",
"n8n-node-discord",
"discord",
"trigger",
"webhook"
], "author": {
"name": "NguyenDanhDa"
},
"license": "MIT",
"main": "index.js", "repository": {
"type": "git",
"url": "git+https://github.com/nguyendanhda98/n8n-nodes-discord-dnd.git"
},
"homepage": "https://github.com/nguyendanhda98/n8n-nodes-discord-dnd#readme",
"bugs": {
"url": "https://github.com/nguyendanhda98/n8n-nodes-discord-dnd/issues"
},
"scripts": {
"dev": "npm run watch",
"build": "tsc && gulp build:icons",
"lint": "tslint -p tsconfig.json -c tslint.json",
"watch": "tsc --watch",
"test": "jest",
"start:publish": " rm -rf dist && npm run build && npm publish --access public",
"build:global": "npm run build && node ./scripts/local-deploy.js"
},
"files": [
"dist"
], "n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/DiscordApi.credentials.js"
],
"nodes": [
"dist/nodes/DiscordTrigger.node.js",
"dist/nodes/DiscordActions.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.16.0",
"gulp": "^4.0.2",
"jest": "^29.5.0",
"n8n-workflow": "~1.5.0",
"ts-jest": "^29.1.0",
"tslint": "^6.1.3",
"typescript": "~5.0.4"
},
"dependencies": {
"discord.js": "^14.9.0",
"n8n-core": "~1.5.0"
}
}