-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.45 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
{
"name": "haoyun-extension",
"version": "0.0.1",
"private": true,
"description": "Local MVP resume autofill extension built with Plasmo",
"scripts": {
"dev": "plasmo dev",
"dev:backend": "node backend/server.mjs",
"build": "plasmo build",
"package": "plasmo package",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"mammoth": "^1.9.1",
"pdfjs-dist": "^4.8.69",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/chrome": "^0.0.280",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"plasmo": "^0.90.4",
"typescript": "5.6.3"
},
"manifest": {
"name": "好运 Resume Autofill (Local MVP)",
"description": "Upload resume, parse with AI, and autofill job application forms.",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"http://127.0.0.1/*",
"http://localhost/*",
"https://jobs.bytedance.com/*",
"https://careers.bytedance.com/*",
"https://*.zhipin.com/*",
"https://*.lagou.com/*",
"https://*.zhaopin.com/*",
"https://*.51job.com/*",
"https://*.liepin.com/*",
"https://*.linkedin.com/*",
"https://*.smartrecruiters.com/*",
"https://*.greenhouse.io/*",
"https://*.lever.co/*",
"https://*.workday.com/*",
"https://*.myworkdayjobs.com/*"
]
}
}