-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1012 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1012 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
{
"name": "@brightdata/linkedin-scraper-node",
"version": "0.1.0",
"description": "LinkedIn scraper in JavaScript: profiles, companies, jobs and posts as JSON, on the Bright Data LinkedIn Scraper API (Web Scraper API). No LinkedIn login, no browser. 5,000 free credits a month.",
"private": true,
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20"
},
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"bin": {
"linkedin-scraper": "src/cli.js"
},
"files": [
"src"
],
"scripts": {
"test": "node --test tests/",
"lint": "oxlint src tests"
},
"dependencies": {
"@brightdata/sdk": "^1.2.0"
},
"devDependencies": {
"oxlint": "^1.83.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brightdata/linkedin-scraper-node.git"
},
"bugs": {
"url": "https://github.com/brightdata/linkedin-scraper-node/issues"
},
"homepage": "https://github.com/brightdata/linkedin-scraper-node#readme"
}