-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.81 KB
/
package.json
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
69
70
71
72
73
{
"name": "@makepad/linkedinjs",
"version": "0.0.3",
"description": "LinkedIn web scraper written in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "node_modules/.bin/jest",
"lint:fix": "./node_modules/.bin/eslint -c .eslintrc.json --fix ./src/*.ts",
"compile": "./node_modules/.bin/tsc -p tsconfig.json",
"build": "npm run lint:fix && npm run compile",
"postinstall": "npx playwright install"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/kaanyagci/"
},
{
"type": "github",
"url": "https://github.com/sponsors/Makepad-fr/"
}
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Makepad-fr/linkedin.js.git"
},
"keywords": [
"scraping",
"scraper",
"LinkedIn",
"automation",
"automate",
"data scraping",
"web scraping",
"social media",
"networking",
"professional",
"career",
"job search",
"business",
"digital marketing",
"personal branding",
"lead generation",
"growth hacking",
"developer tool",
"TypeScript",
"npm package"
],
"author": "Makepad Developers <[email protected]>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/Makepad-fr/linkedin.js/issues"
},
"homepage": "https://github.com/Makepad-fr/linkedin.js#readme",
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "8.41.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"dependencies": {
"playwright": "^1.34.3",
"playwright-core": "^1.29.2",
"tslib": "^2.5.2",
"winston": "^3.8.2"
}
}