-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.88 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
{
"name": "linkedin-to-json-resume-exporter",
"version": "3.3.0",
"description": "Browser tool to grab details from your open LinkedIn profile page and export to JSON Resume Schema",
"private": true,
"main": "src/main.js",
"scripts": {
"test": "\"Error: no test specified\" && exit 1",
"lint": "eslint \"**/*.{js,ts}\"",
"lint:fix": "eslint \"**/*.{js,ts}\" --fix",
"type-check": "tsc --noEmit"
},
"author": {
"name": "Joshua Tzucker",
"url": "https://joshuatz.com/?utm_source=package"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/plugin-transform-runtime": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/runtime": "^7.27.4",
"@types/archiver": "^6.0.3",
"@types/chrome": "0.0.326",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"archiver": "^7.0.1",
"babel-loader": "^10.0.0",
"bookmarklet": "",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.1",
"fs-extra": "^11.3.0",
"prettier": "^3.5.3",
"replace": "^1.2.2",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"babel": {
"plugins": [
"@babel/transform-runtime"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": "defaults"
}
}
]
]
},
"dependencies": {
"@dan/vcards": "^2.10.0"
}
}