n8n-nodes-underchat 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/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "n8n-nodes-underchat",
3
+ "version": "0.1.0",
4
+ "description": "Community Node do n8n para automações com a UnderChat",
5
+ "author": {
6
+ "name": "UnderChat",
7
+ "email": "contato@underchat.com.br"
8
+ },
9
+ "license": "MIT",
10
+ "keywords": [
11
+ "n8n-community-node-package",
12
+ "n8n",
13
+ "underchat",
14
+ "whatsapp",
15
+ "automation"
16
+ ],
17
+ "homepage": "https://underchat.com.br",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/sistemasunder/n8n-nodes-underchat.git"
21
+ },
22
+ "scripts": {
23
+ "build": "n8n-node build",
24
+ "dev": "n8n-node dev",
25
+ "lint": "n8n-node lint",
26
+ "lint:fix": "n8n-node lint --fix",
27
+ "prepublishOnly": "n8n-node prerelease",
28
+ "release": "n8n-node release"
29
+ },
30
+ "files": ["dist"],
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "n8n": {
35
+ "n8nNodesApiVersion": 1,
36
+ "strict": true,
37
+ "credentials": ["dist/credentials/UnderChatApi.credentials.js"],
38
+ "nodes": ["dist/nodes/UnderChat/UnderChat.node.js"]
39
+ },
40
+ "devDependencies": {
41
+ "@n8n/node-cli": "*",
42
+ "eslint": "9.39.4",
43
+ "prettier": "3.8.3",
44
+ "typescript": "5.9.3"
45
+ },
46
+ "peerDependencies": {
47
+ "n8n-workflow": "*"
48
+ },
49
+ "engines": {
50
+ "node": ">=22.0.0"
51
+ }
52
+ }