This repository has been archived by the owner on Apr 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "n8n-nodes-discord",
"version": "0.5.0",
"description": "nodes to trigger workflows from Discord or send interactive messages. Uses the components API which allows to create dialogs (e.g. attach buttons and wait for the user to click on them)",
"keywords": [
"n8n",
"node",
"discord",
"trigger",
"n8n-node",
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "https://github.com/hckdotng/n8n-nodes-discord",
"author": {
"name": "hckdotng",
"url": "https://hck.ng"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hckdotng/n8n-nodes-discord.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "tslint -p tsconfig.json -c tslint.json && eslint nodes credentials package.json",
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && eslint nodes credentials package.json --fix"
},
"files": [
"dist"
],
"n8n": {
"credentials": [
"dist/credentials/DiscordApi.credentials.js"
],
"nodes": [
"dist/nodes/Discord/Discord.node.js",
"dist/nodes/Discord/DiscordTrigger.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/request-promise-native": "~1.0.15",
"@typescript-eslint/parser": "^5.29.0",
"gulp": "^4.0.2",
"n8n-core": "^0.125.0",
"n8n-workflow": "^0.107.0",
"prettier": "^2.7.1",
"tslint": "^6.1.2",
"typescript": "~4.6.0"
},
"dependencies": {
"@types/node-ipc": "^9.2.0",
"axios": "^0.27.2",
"discord.js": "^14.5.0",
"node-ipc": "^11.1.0",
"uid": "^2.0.1"
}
}