-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 963 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 963 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
{
"name": "@anthropic/linked",
"version": "0.1.1",
"description": "Fast LinkedIn CLI for reading, posting, and messaging via Voyager API (cookie auth)",
"type": "module",
"bin": {
"linked": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "tsx src/cli.ts --",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --apply ."
},
"keywords": ["linkedin", "cli", "voyager", "api", "agent", "automation"],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^12.1.0",
"json5": "^2.2.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.17.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}