n8n-nodes-notiflo 0.1.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/LICENSE.md +19 -0
- package/README.md +247 -0
- package/dist/credentials/NotifloApi.credentials.d.ts +10 -0
- package/dist/credentials/NotifloApi.credentials.js +50 -0
- package/dist/credentials/NotifloApi.credentials.js.map +1 -0
- package/dist/credentials/notiflo.svg +18 -0
- package/dist/icons/notiflo.svg +18 -0
- package/dist/nodes/Notiflo/Notiflo.node.d.ts +5 -0
- package/dist/nodes/Notiflo/Notiflo.node.js +347 -0
- package/dist/nodes/Notiflo/Notiflo.node.js.map +1 -0
- package/dist/nodes/Notiflo/notiflo.svg +18 -0
- package/dist/package.json +56 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-notiflo",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Notiflo WhatsApp Business API Community Node for n8n",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/gn-jr/n8n-nodes-notiflo#readme",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"n8n-community-node-package",
|
|
9
|
+
"n8n",
|
|
10
|
+
"whatsapp",
|
|
11
|
+
"notiflo",
|
|
12
|
+
"whatsapp-business-api"
|
|
13
|
+
],
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Ganjar Nugraha",
|
|
16
|
+
"email": "gnjr@notiflo.id"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/gn-jr/n8n-nodes-notiflo.git"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/gn-jr/n8n-nodes-notiflo/issues"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "n8n-node build",
|
|
30
|
+
"build:watch": "tsc --watch",
|
|
31
|
+
"dev": "n8n-node dev",
|
|
32
|
+
"lint": "n8n-node lint",
|
|
33
|
+
"lint:fix": "n8n-node lint --fix",
|
|
34
|
+
"release": "n8n-node release"
|
|
35
|
+
},
|
|
36
|
+
"n8n": {
|
|
37
|
+
"n8nNodesApiVersion": 1,
|
|
38
|
+
"strict": true,
|
|
39
|
+
"credentials": [
|
|
40
|
+
"dist/credentials/NotifloApi.credentials.js"
|
|
41
|
+
],
|
|
42
|
+
"nodes": [
|
|
43
|
+
"dist/nodes/Notiflo/Notiflo.node.js"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@n8n/node-cli": "*",
|
|
48
|
+
"eslint": "9.32.0",
|
|
49
|
+
"prettier": "3.6.2",
|
|
50
|
+
"release-it": "^19.0.4",
|
|
51
|
+
"typescript": "5.9.2"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"n8n-workflow": "*"
|
|
55
|
+
}
|
|
56
|
+
}
|