-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "@pulsetic/n8n-nodes-pulsetic",
"version": "1.0.11",
"description": "Pulsetic API integration for n8n",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "https://github.com/designmodo/pulsetic-n8n#readme",
"author": "Pulsetic <info@pulsetic.com> (https://pulsetic.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/designmodo/pulsetic-n8n.git"
},
"bugs": {
"url": "https://github.com/designmodo/pulsetic-n8n/issues"
},
"main": "index.js",
"scripts": {
"build": "tsc && cp nodes/Pulsetic/Pulsetic.node.json dist/nodes/Pulsetic/ && cp pulsetic.svg dist/nodes/Pulsetic/",
"prepublishOnly": "npm run build"
},
"n8n": {
"credentials": [
"dist/credentials/PulseticApi.credentials.js"
],
"nodes": [
"dist/nodes/Pulsetic/Pulsetic.node.js"
]
},
"engines": {
"node": ">=18.10",
"npm": ">=8.11.0"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"devDependencies": {
"@types/node": "^18.19.130",
"n8n-workflow": "^1.120.9",
"typescript": "^5.9.3"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}