-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 897 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 897 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
{
"name": "@copypastefail/postforge",
"version": "1.1.5",
"type": "module",
"private": false,
"description": "MCP server for LinkedIn post pipeline browser automation",
"bin": {
"linkedin-post-agent": "dist/server.js"
},
"files": [
"dist/",
"prompts/",
"skills/",
"agents/",
"CLAUDE.md",
"AGENTS.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc --noEmit -p tsconfig.json",
"test": "npm run build && node --test",
"ci:checks": "npm run check && npm run build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"cheerio": "1.1.2",
"dotenv": "17.2.3",
"playwright": "1.59.1",
"sharp": "0.34.4",
"zod": "3.25.76"
},
"devDependencies": {
"@types/node": "22.15.0",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20"
}
}