n8n-nodes-typebot 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.
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="60" height="60" rx="12" fill="#0042DA"/>
4
+ <path d="M15 20h30v5H15z" fill="white"/>
5
+ <path d="M15 30h20v5H15z" fill="white" opacity="0.8"/>
6
+ <path d="M15 40h25v5H15z" fill="white" opacity="0.6"/>
7
+ <circle cx="42" cy="42" r="6" fill="#FFA500"/>
8
+ <path d="M40 42h4M42 40v4" stroke="white" stroke-width="2" stroke-linecap="round"/>
9
+ </svg>
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // This file is just a placeholder to satisfy package.json's "main" field
2
+ // The actual nodes are loaded from the dist folder as specified in package.json's "n8n" field
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "n8n-nodes-typebot",
3
+ "version": "1.0.0",
4
+ "description": "n8n community node for Typebot - A powerful chatbot builder integration",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "n8n",
8
+ "typebot",
9
+ "chatbot",
10
+ "conversational-ai"
11
+ ],
12
+ "license": "MIT",
13
+ "author": {
14
+ "name": "אחיה אוטומציה",
15
+ "email": "a.c0504197060@gmail.com"
16
+ },
17
+ "main": "index.js",
18
+ "scripts": {
19
+ "build": "tsc && gulp build:icons",
20
+ "dev": "tsc --watch",
21
+ "format": "prettier nodes credentials --write",
22
+ "lint": "eslint nodes credentials package.json",
23
+ "lintfix": "eslint nodes credentials package.json --fix",
24
+ "prepublishOnly": "npm run build"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "n8n": {
30
+ "n8nNodesApiVersion": 1,
31
+ "credentials": [
32
+ "dist/credentials/TypebotApi.credentials.js"
33
+ ],
34
+ "nodes": [
35
+ "dist/nodes/Typebot/Typebot.node.js"
36
+ ]
37
+ },
38
+ "devDependencies": {
39
+ "@typescript-eslint/parser": "^5.0.0",
40
+ "eslint": "^8.0.0",
41
+ "eslint-plugin-n8n-nodes-base": "^1.11.0",
42
+ "gulp": "^4.0.2",
43
+ "n8n-workflow": "^1.0.0",
44
+ "prettier": "^2.7.1",
45
+ "typescript": "^4.8.4"
46
+ },
47
+ "peerDependencies": {
48
+ "n8n-workflow": "*"
49
+ },
50
+ "dependencies": {}
51
+ }