-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.51 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.51 KB
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
61
62
63
64
65
66
67
68
{
"name": "@bcharleson/linkedincli",
"version": "0.1.5",
"description": "CLI and MCP server for LinkedIn — 43 commands for profiles, posts, messaging, connections, search, feed, and more. Cookie session auth, AI agent native.",
"type": "module",
"bin": {
"linkedin": "./dist/index.js"
},
"files": [
"dist/",
"README.md",
"AGENTS.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcharleson/linkedincli.git"
},
"homepage": "https://github.com/bcharleson/linkedincli#readme",
"bugs": {
"url": "https://github.com/bcharleson/linkedincli/issues"
},
"dependencies": {
"@inquirer/prompts": "^8.3.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"commander": "^14.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"keywords": [
"linkedin",
"cli",
"mcp",
"mcp-server",
"automation",
"voyager-api",
"agent",
"ai",
"linkedin-api",
"linkedin-automation",
"cookie-auth",
"social-media",
"messaging",
"connections",
"posts",
"feed"
],
"author": "Brandon Charleson",
"license": "MIT"
}