-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.19 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
{
"name": "n8n-nodes-pulseagent",
"version": "0.1.0",
"description": "n8n community node for PulseAgent - AI-powered digital workforce platform",
"keywords": [
"n8n-community-node-package",
"n8n",
"pulseagent",
"ai-agent",
"crm"
],
"license": "MIT",
"homepage": "https://pulseagent.io",
"author": {
"name": "PulseAgent",
"url": "https://pulseagent.io"
},
"repository": {
"type": "git",
"url": "https://github.com/iPythoning/n8n-nodes-pulseagent.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/PulseAgentApi.credentials.js"
],
"nodes": [
"dist/nodes/PulseAgent/PulseAgentAgent.node.js",
"dist/nodes/PulseAgent/PulseAgentCrm.node.js",
"dist/nodes/PulseAgent/PulseAgentTrial.node.js"
]
},
"devDependencies": {
"@types/node": "^20.11.0",
"gulp": "^4.0.2",
"n8n-workflow": "^1.30.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}