-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 935 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 935 Bytes
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
{
"name": "substack-tool",
"version": "1.0.0",
"description": "Substack Automation Tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"substack-tool": "./dist/cli.js",
"substack-mcp": "./dist/mcp.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"axios": "^1.6.7",
"axios-cookiejar-support": "^5.0.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^16.4.1",
"tough-cookie": "^4.1.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^20.11.19",
"@types/tough-cookie": "^4.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"keywords": [
"substack",
"api",
"cli",
"mcp",
"automation",
"ai-agent",
"notes",
"publishing",
"newsletter",
"model-context-protocol"
],
"author": "",
"license": "MIT"
}