n8n-nodes-socialfetch 0.1.0 → 0.13.2
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 +15 -4
- package/package.json +59 -59
package/README.md
CHANGED
|
@@ -30,14 +30,25 @@ Every request consumes credits from your SocialFetch balance (most endpoints cos
|
|
|
30
30
|
|
|
31
31
|
## Development
|
|
32
32
|
|
|
33
|
+
The node descriptions are generated from the SocialFetch OpenAPI spec.
|
|
34
|
+
|
|
33
35
|
```bash
|
|
34
|
-
|
|
35
|
-
pnpm
|
|
36
|
+
# from the repo root (codegen + eslint fix on generated descriptions)
|
|
37
|
+
pnpm generate:n8n
|
|
38
|
+
|
|
39
|
+
# full derived check before a PR (openapi, sdk, zapier, n8n, …)
|
|
40
|
+
pnpm check:derived
|
|
41
|
+
|
|
42
|
+
# local dev (standalone pnpm project — not part of the root pnpm workspace)
|
|
43
|
+
cd integrations/n8n
|
|
44
|
+
pnpm install --ignore-workspace
|
|
36
45
|
pnpm run build
|
|
37
|
-
pnpm run dev #
|
|
46
|
+
pnpm run dev # http://localhost:5678
|
|
38
47
|
```
|
|
39
48
|
|
|
40
|
-
|
|
49
|
+
`generate:n8n` syncs the package **version** from `@socialfetch/sdk`, regenerates descriptions, and runs `lint:fix`. `check:derived` also runs `check:n8n` (install, lint, build).
|
|
50
|
+
|
|
51
|
+
Releases and syncing to [n8n-nodes-socialfetch](https://github.com/social-freak-ltd/n8n-nodes-socialfetch) are automated from the monorepo — see [PUBLISHING.md](PUBLISHING.md).
|
|
41
52
|
|
|
42
53
|
## License
|
|
43
54
|
|
package/package.json
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
2
|
+
"name": "n8n-nodes-socialfetch",
|
|
3
|
+
"version": "0.13.2",
|
|
4
|
+
"description": "Fetch social media and web data with the SocialFetch API.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"socialfetch",
|
|
8
|
+
"social-media",
|
|
9
|
+
"tiktok",
|
|
10
|
+
"instagram",
|
|
11
|
+
"youtube",
|
|
12
|
+
"twitter"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"homepage": "https://www.socialfetch.dev",
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Social Fetch"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/social-freak-ltd/n8n-nodes-socialfetch.git"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"packageManager": "pnpm@10.33.0",
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=22"
|
|
29
|
+
},
|
|
30
|
+
"main": "dist/index.js",
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "n8n-node build",
|
|
33
|
+
"dev": "n8n-node dev",
|
|
34
|
+
"lint": "n8n-node lint",
|
|
35
|
+
"lint:fix": "n8n-node lint --fix",
|
|
36
|
+
"release": "n8n-node release",
|
|
37
|
+
"prepublishOnly": "n8n-node prerelease"
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist"
|
|
41
|
+
],
|
|
42
|
+
"n8n": {
|
|
43
|
+
"n8nNodesApiVersion": 1,
|
|
44
|
+
"credentials": [
|
|
45
|
+
"dist/credentials/SocialFetchApi.credentials.js"
|
|
46
|
+
],
|
|
47
|
+
"nodes": [
|
|
48
|
+
"dist/nodes/SocialFetch/SocialFetch.node.js"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@n8n/node-cli": "0.32.1",
|
|
53
|
+
"eslint": "9.39.4",
|
|
54
|
+
"n8n-workflow": "2.16.0",
|
|
55
|
+
"prettier": "3.8.3",
|
|
56
|
+
"typescript": "5.9.3"
|
|
57
|
+
},
|
|
58
|
+
"peerDependencies": {
|
|
59
|
+
"n8n-workflow": "*"
|
|
60
|
+
}
|
|
61
61
|
}
|