@posty5/n8n-nodes-posty5 3.0.1 → 4.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 +356 -356
- package/dist/nodes/Posty5SocialPublisherPost/Posty5SocialPublisherPost.node.d.ts.map +1 -1
- package/dist/nodes/Posty5SocialPublisherPost/Posty5SocialPublisherPost.node.js +292 -52
- package/dist/nodes/Posty5SocialPublisherPost/Posty5SocialPublisherPost.node.js.map +1 -1
- package/package.json +74 -74
package/package.json
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@posty5/n8n-nodes-posty5",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "N8N community nodes for Posty5 - URL shortening, QR codes, HTML hosting, and social media publishing",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"n8n-community-node-package",
|
|
7
|
-
"n8n-community-node",
|
|
8
|
-
"n8n",
|
|
9
|
-
"posty5",
|
|
10
|
-
"url-shortener",
|
|
11
|
-
"qr-code",
|
|
12
|
-
"social-media",
|
|
13
|
-
"automation"
|
|
14
|
-
],
|
|
15
|
-
"license": "MIT",
|
|
16
|
-
"homepage": "https://posty5.com",
|
|
17
|
-
"author": {
|
|
18
|
-
"name": "Posty5",
|
|
19
|
-
"email": "support@posty5.com"
|
|
20
|
-
},
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "https://github.com/
|
|
24
|
-
},
|
|
25
|
-
"publishConfig": {
|
|
26
|
-
"access": "public"
|
|
27
|
-
},
|
|
28
|
-
"main": "dist/index.js",
|
|
29
|
-
"types": "dist/index.d.ts",
|
|
30
|
-
"scripts": {
|
|
31
|
-
"prebuild": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
32
|
-
"build": "tsc",
|
|
33
|
-
"dev": "tsc --watch",
|
|
34
|
-
"format": "prettier --write \"**/*.ts\"",
|
|
35
|
-
"lint": "eslint . --ext .ts",
|
|
36
|
-
"test": "jest",
|
|
37
|
-
"test:watch": "jest --watch",
|
|
38
|
-
"test:coverage": "jest --coverage",
|
|
39
|
-
"prepare": "npm run build"
|
|
40
|
-
},
|
|
41
|
-
"files": [
|
|
42
|
-
"dist"
|
|
43
|
-
],
|
|
44
|
-
"n8n": {
|
|
45
|
-
"n8nNodesApiVersion": 1,
|
|
46
|
-
"credentials": [
|
|
47
|
-
"dist/credentials/Posty5Api.credentials.js"
|
|
48
|
-
],
|
|
49
|
-
"nodes": [
|
|
50
|
-
"dist/nodes/Posty5ShortLink/Posty5ShortLink.node.js",
|
|
51
|
-
"dist/nodes/Posty5QrCode/Posty5QrCode.node.js",
|
|
52
|
-
"dist/nodes/Posty5HtmlHosting/Posty5HtmlHosting.node.js",
|
|
53
|
-
"dist/nodes/Posty5FormSubmission/Posty5FormSubmission.node.js",
|
|
54
|
-
"dist/nodes/Posty5SocialPublisherWorkspace/Posty5SocialPublisherWorkspace.node.js",
|
|
55
|
-
"dist/nodes/Posty5SocialPublisherPost/Posty5SocialPublisherPost.node.js"
|
|
56
|
-
]
|
|
57
|
-
},
|
|
58
|
-
"devDependencies": {
|
|
59
|
-
"@types/jest": "^29.5.14",
|
|
60
|
-
"@types/node": "^20.11.0",
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
62
|
-
"@typescript-eslint/parser": "^6.19.0",
|
|
63
|
-
"eslint": "^8.56.0",
|
|
64
|
-
"eslint-plugin-n8n-nodes-base": "^1.16.1",
|
|
65
|
-
"jest": "^29.7.0",
|
|
66
|
-
"n8n-workflow": "^1.25.0",
|
|
67
|
-
"prettier": "^3.2.4",
|
|
68
|
-
"ts-jest": "^29.1.1",
|
|
69
|
-
"typescript": "^5.3.3"
|
|
70
|
-
},
|
|
71
|
-
"peerDependencies": {
|
|
72
|
-
"n8n-workflow": ">=1.0.0"
|
|
73
|
-
}
|
|
74
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@posty5/n8n-nodes-posty5",
|
|
3
|
+
"version": "4.0.0",
|
|
4
|
+
"description": "N8N community nodes for Posty5 - URL shortening, QR codes, HTML hosting, and social media publishing",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"n8n-community-node",
|
|
8
|
+
"n8n",
|
|
9
|
+
"posty5",
|
|
10
|
+
"url-shortener",
|
|
11
|
+
"qr-code",
|
|
12
|
+
"social-media",
|
|
13
|
+
"automation"
|
|
14
|
+
],
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"homepage": "https://posty5.com",
|
|
17
|
+
"author": {
|
|
18
|
+
"name": "Posty5",
|
|
19
|
+
"email": "support@posty5.com"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/Posty5/n8n-nodes.git"
|
|
24
|
+
},
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
28
|
+
"main": "dist/index.js",
|
|
29
|
+
"types": "dist/index.d.ts",
|
|
30
|
+
"scripts": {
|
|
31
|
+
"prebuild": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
32
|
+
"build": "tsc",
|
|
33
|
+
"dev": "tsc --watch",
|
|
34
|
+
"format": "prettier --write \"**/*.ts\"",
|
|
35
|
+
"lint": "eslint . --ext .ts",
|
|
36
|
+
"test": "jest",
|
|
37
|
+
"test:watch": "jest --watch",
|
|
38
|
+
"test:coverage": "jest --coverage",
|
|
39
|
+
"prepare": "npm run build"
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist"
|
|
43
|
+
],
|
|
44
|
+
"n8n": {
|
|
45
|
+
"n8nNodesApiVersion": 1,
|
|
46
|
+
"credentials": [
|
|
47
|
+
"dist/credentials/Posty5Api.credentials.js"
|
|
48
|
+
],
|
|
49
|
+
"nodes": [
|
|
50
|
+
"dist/nodes/Posty5ShortLink/Posty5ShortLink.node.js",
|
|
51
|
+
"dist/nodes/Posty5QrCode/Posty5QrCode.node.js",
|
|
52
|
+
"dist/nodes/Posty5HtmlHosting/Posty5HtmlHosting.node.js",
|
|
53
|
+
"dist/nodes/Posty5FormSubmission/Posty5FormSubmission.node.js",
|
|
54
|
+
"dist/nodes/Posty5SocialPublisherWorkspace/Posty5SocialPublisherWorkspace.node.js",
|
|
55
|
+
"dist/nodes/Posty5SocialPublisherPost/Posty5SocialPublisherPost.node.js"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/jest": "^29.5.14",
|
|
60
|
+
"@types/node": "^20.11.0",
|
|
61
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
62
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
63
|
+
"eslint": "^8.56.0",
|
|
64
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.1",
|
|
65
|
+
"jest": "^29.7.0",
|
|
66
|
+
"n8n-workflow": "^1.25.0",
|
|
67
|
+
"prettier": "^3.2.4",
|
|
68
|
+
"ts-jest": "^29.1.1",
|
|
69
|
+
"typescript": "^5.3.3"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"n8n-workflow": ">=1.0.0"
|
|
73
|
+
}
|
|
74
|
+
}
|