@pagecrawl/n8n-nodes-pagecrawl 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.
@@ -0,0 +1,22 @@
1
+ {
2
+ "node": "n8n-nodes-pagecrawl.PageCrawlTrigger",
3
+ "nodeVersion": "1.0",
4
+ "codexVersion": "1.0",
5
+ "categories": ["Marketing & Content"],
6
+ "resources": {
7
+ "credentialDocumentation": [
8
+ {
9
+ "url": "https://pagecrawl.io/docs/api"
10
+ }
11
+ ],
12
+ "primaryDocumentation": [
13
+ {
14
+ "url": "https://pagecrawl.io/docs"
15
+ }
16
+ ]
17
+ },
18
+ "alias": ["Webhook", "Change Detection", "Monitor", "Website Trigger"],
19
+ "subcategories": {
20
+ "Marketing & Content": ["Automation"]
21
+ }
22
+ }
@@ -0,0 +1,18 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
2
+ <!-- Background circle with outline -->
3
+ <circle cx="32" cy="32" r="28" fill="#2955c3" stroke="#1e3d8f" stroke-width="2"/>
4
+
5
+ <!-- PageCrawl logo paths (centered with more padding) -->
6
+ <g transform="translate(32, 32) scale(0.015, -0.015) translate(-1400, -1400)" fill="white" stroke="none">
7
+ <path d="M1290 2574 c-553 -67 -1049 -128 -1102 -134 -54 -7 -99 -17 -101 -24
8
+ -3 -6 8 -115 24 -241 16 -127 29 -236 29 -242 0 -14 28 -17 47 -5 9 5 5 59
9
+ -14 220 -15 117 -23 215 -19 219 6 6 2049 262 2096 263 13 0 20 -35 39 -192
10
+ 31 -257 29 -248 57 -248 20 0 24 5 24 30 0 69 -53 456 -63 466 -9 8 -278 -21
11
+ -1017 -112z"/>
12
+ <path d="M2568 943 c-12 -3 -15 -12 -12 -36 25 -163 49 -409 40 -412 -29 -10
13
+ -2087 -257 -2099 -252 -9 3 -20 66 -36 203 -12 110 -25 207 -27 217 -3 10 -15
14
+ 17 -30 17 -18 0 -24 -5 -24 -22 -1 -59 54 -464 64 -475 9 -9 257 18 1105 122
15
+ 601 74 1097 135 1101 135 4 0 10 7 14 15 6 16 -49 469 -59 485 -6 10 -9 11
16
+ -37 3z"/>
17
+ </g>
18
+ </svg>
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@pagecrawl/n8n-nodes-pagecrawl",
3
+ "version": "0.1.0",
4
+ "description": "n8n node for PageCrawl.io - Website monitoring and change detection",
5
+ "keywords": [
6
+ "n8n",
7
+ "n8n-community-node-package",
8
+ "website-monitoring",
9
+ "change-detection",
10
+ "web-scraping",
11
+ "pagecrawl",
12
+ "automation"
13
+ ],
14
+ "license": "MIT",
15
+ "homepage": "https://pagecrawl.io",
16
+ "author": {
17
+ "name": "PageCrawl.io",
18
+ "email": "support@pagecrawl.io"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/pagecrawl/n8n-nodes-pagecrawl.git"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/pagecrawl/n8n-nodes-pagecrawl/issues"
26
+ },
27
+ "main": "index.js",
28
+ "scripts": {
29
+ "build": "tsc && cp nodes/PageCrawl/pagecrawl.svg dist/nodes/PageCrawl/ && cp nodes/PageCrawlTrigger/pagecrawl.svg dist/nodes/PageCrawlTrigger/",
30
+ "dev": "npm run build && npx n8n start",
31
+ "dev:build": "npm run build",
32
+ "n8n:start": "npx n8n start",
33
+ "lint": "eslint nodes credentials --ext .ts",
34
+ "lint:fix": "eslint nodes credentials --ext .ts --fix",
35
+ "link": "npm run build && npm link",
36
+ "test": "jest"
37
+ },
38
+ "files": [
39
+ "dist"
40
+ ],
41
+ "n8n": {
42
+ "n8nNodesApiVersion": 1,
43
+ "credentials": [
44
+ "dist/credentials/PageCrawlApi.credentials.js"
45
+ ],
46
+ "nodes": [
47
+ "dist/nodes/PageCrawl/PageCrawl.node.js",
48
+ "dist/nodes/PageCrawlTrigger/PageCrawlTrigger.node.js"
49
+ ]
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "^20.0.0",
53
+ "@typescript-eslint/eslint-plugin": "^7.0.0",
54
+ "@typescript-eslint/parser": "^7.0.0",
55
+ "eslint": "^8.56.0",
56
+ "eslint-plugin-n8n-nodes-base": "^1.16.0",
57
+ "n8n": "^1.115.3",
58
+ "n8n-workflow": "~1.113.0",
59
+ "typescript": "^5.0.0"
60
+ },
61
+ "peerDependencies": {
62
+ "n8n-workflow": "~1.113.0"
63
+ }
64
+ }