n8n-nodes-richpanel 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,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="60" height="60" rx="8" fill="#4F46E5"/>
4
+ <text x="30" y="40" font-family="Arial, sans-serif" font-size="32" font-weight="bold" fill="white" text-anchor="middle">R</text>
5
+ </svg>
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "n8n-nodes-richpanel",
3
+ "version": "1.0.0",
4
+ "description": "n8n community node for Richpanel customer support platform - manage conversations, customers, orders, and subscriptions",
5
+ "keywords": [
6
+ "n8n",
7
+ "n8n-node",
8
+ "n8n-community-node-package",
9
+ "richpanel",
10
+ "customer-support",
11
+ "helpdesk",
12
+ "customer-service",
13
+ "ecommerce",
14
+ "support-tickets",
15
+ "api-integration"
16
+ ],
17
+ "license": "MIT",
18
+ "homepage": "https://github.com/TristanJones02/richpanel-n8n#readme",
19
+ "author": {
20
+ "name": "Tristan Jones",
21
+ "email": "tristan@petfresh.com.au"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/TristanJones02/richpanel-n8n.git"
26
+ },
27
+ "bugs": {
28
+ "url": "https://github.com/TristanJones02/richpanel-n8n/issues"
29
+ },
30
+ "main": "index.js",
31
+ "engines": {
32
+ "node": ">=18.0.0"
33
+ },
34
+ "scripts": {
35
+ "build": "tsc && gulp build:icons",
36
+ "dev": "tsc --watch",
37
+ "format": "prettier nodes credentials --write",
38
+ "lint": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" package.json",
39
+ "lintfix": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" package.json --fix",
40
+ "prepublishOnly": "npm run build"
41
+ },
42
+ "files": [
43
+ "dist"
44
+ ],
45
+ "n8n": {
46
+ "n8nNodesApiVersion": 1,
47
+ "credentials": [
48
+ "dist/credentials/RichpanelApi.credentials.js"
49
+ ],
50
+ "nodes": [
51
+ "dist/nodes/Richpanel/Richpanel.node.js"
52
+ ]
53
+ },
54
+ "devDependencies": {
55
+ "@typescript-eslint/parser": "^5.59.0",
56
+ "eslint": "^8.40.0",
57
+ "eslint-plugin-n8n-nodes-base": "^1.12.0",
58
+ "gulp": "^4.0.2",
59
+ "n8n-workflow": "^1.0.0",
60
+ "prettier": "^2.8.8",
61
+ "typescript": "^5.0.4"
62
+ },
63
+ "peerDependencies": {
64
+ "n8n-workflow": "*"
65
+ }
66
+ }