@vornrun/connector-substack 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.
- package/CHANGELOG.md +37 -0
- package/README.md +110 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +2070 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vornrun/connector-substack",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Trigger workflows from new posts on a Substack publication, and read, search and comment on posts or save a draft from a step.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Javier Canizalez <javier-canizalez@outlook.com>",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/vorn-run/connectors.git",
|
|
11
|
+
"directory": "packages/substack"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"vorn",
|
|
15
|
+
"connector",
|
|
16
|
+
"substack",
|
|
17
|
+
"newsletter",
|
|
18
|
+
"mcp"
|
|
19
|
+
],
|
|
20
|
+
"bin": {
|
|
21
|
+
"vorn-connector-substack": "dist/index.js"
|
|
22
|
+
},
|
|
23
|
+
"main": "./dist/index.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"default": "./dist/index.js"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"README.md",
|
|
34
|
+
"CHANGELOG.md"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsup",
|
|
38
|
+
"typecheck": "tsc --noEmit",
|
|
39
|
+
"test": "vitest run"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@vornrun/connector-sdk": "^0.7.0-beta.18"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/node": "^22.10.2",
|
|
46
|
+
"@vitest/coverage-v8": "^4.1.10",
|
|
47
|
+
"marked": "^18.0.11",
|
|
48
|
+
"tsup": "^8.5.1",
|
|
49
|
+
"typescript": "^6.0.3",
|
|
50
|
+
"vitest": "^4.1.10"
|
|
51
|
+
},
|
|
52
|
+
"vorn": {
|
|
53
|
+
"category": "Social",
|
|
54
|
+
"keywords": [
|
|
55
|
+
"substack",
|
|
56
|
+
"newsletter",
|
|
57
|
+
"posts",
|
|
58
|
+
"comments",
|
|
59
|
+
"drafts",
|
|
60
|
+
"writing"
|
|
61
|
+
],
|
|
62
|
+
"auth": "Sign in to Substack in the window Vorn opens; reading a publication's feed and searching posts need no sign-in.",
|
|
63
|
+
"packs": true
|
|
64
|
+
}
|
|
65
|
+
}
|