-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.15 KB
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
{
"name": "@dnet5/n8n-nodes-resend",
"version": "0.1.3",
"description": "n8n community node for the Resend email API",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "https://github.com/dnet5/resend-n8n-node",
"author": {
"name": "dnet5"
},
"repository": {
"type": "git",
"url": "https://github.com/dnet5/resend-n8n-node.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier --write \"nodes/**/*.ts\" \"credentials/**/*.ts\"",
"lint": "eslint nodes/ credentials/",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/ResendApi.credentials.js"
],
"nodes": [
"dist/nodes/Resend/Resend.node.js"
]
},
"devDependencies": {
"@types/node": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"gulp": "^4.0.2",
"n8n-workflow": "^1.0.0",
"prettier": "^3.2.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}