n8n-nodes-nero-crm 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +105 -0
- package/dist/credentials/NeroCrmApi.credentials.d.ts +9 -0
- package/dist/credentials/NeroCrmApi.credentials.js +56 -0
- package/dist/credentials/NeroCrmApi.credentials.js.map +1 -0
- package/dist/credentials/NexoCrmApi.credentials.d.ts +9 -0
- package/dist/credentials/NexoCrmApi.credentials.js +56 -0
- package/dist/credentials/NexoCrmApi.credentials.js.map +1 -0
- package/dist/nodes/NeroCrm/NeroCrm.node.d.ts +5 -0
- package/dist/nodes/NeroCrm/NeroCrm.node.js +635 -0
- package/dist/nodes/NeroCrm/NeroCrm.node.js.map +1 -0
- package/dist/nodes/NeroCrm/nerocrm.svg +10 -0
- package/dist/nodes/NexoCrm/NexoCrm.node.d.ts +5 -0
- package/dist/nodes/NexoCrm/NexoCrm.node.js +635 -0
- package/dist/nodes/NexoCrm/NexoCrm.node.js.map +1 -0
- package/dist/nodes/NexoCrm/nexocrm.svg +4 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-nero-crm",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "n8n Community Nodes para o Nero CRM - Gerencie leads e colunas do Kanban",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"n8n",
|
|
8
|
+
"nero",
|
|
9
|
+
"crm",
|
|
10
|
+
"leads",
|
|
11
|
+
"kanban"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"homepage": "https://github.com/alan-silva01/n8n-nodes-nero-crm",
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "Alan Silva",
|
|
17
|
+
"email": "alan@gmail.com"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/alan-silva01/n8n-nodes-nero-crm.git"
|
|
22
|
+
},
|
|
23
|
+
"main": "index.js",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc && gulp build:icons",
|
|
26
|
+
"dev": "tsc --watch",
|
|
27
|
+
"format": "prettier nodes credentials --write",
|
|
28
|
+
"lint": "eslint nodes credentials package.json",
|
|
29
|
+
"lintfix": "eslint nodes credentials package.json --fix",
|
|
30
|
+
"prepublishOnly": "npm run build"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"n8n": {
|
|
36
|
+
"n8nNodesApiVersion": 1,
|
|
37
|
+
"credentials": [
|
|
38
|
+
"dist/credentials/NeroCrmApi.credentials.js"
|
|
39
|
+
],
|
|
40
|
+
"nodes": [
|
|
41
|
+
"dist/nodes/NeroCrm/NeroCrm.node.js"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/node": "^20.10.0",
|
|
46
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
47
|
+
"eslint": "^8.56.0",
|
|
48
|
+
"gulp": "^4.0.2",
|
|
49
|
+
"n8n-workflow": "*",
|
|
50
|
+
"prettier": "^3.1.0",
|
|
51
|
+
"typescript": "~5.3.0"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"n8n-workflow": "*"
|
|
55
|
+
}
|
|
56
|
+
}
|