-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 928 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 928 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
{
"name": "resume-bridge",
"private": true,
"version": "1.0.0",
"description": "Resume Bridge - AI-powered online application form assistant",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"clean": "node scripts/clean.mjs",
"test": "node scripts/test-resume-parser.mjs && node scripts/test-field-matching.mjs",
"package": "npm run build && node scripts/package-extension.mjs",
"package:firefox": "npm run build && node scripts/package-extension.mjs --firefox-only",
"preview": "vite preview"
},
"dependencies": {
"mammoth": "^1.12.0",
"pdfjs-dist": "^6.1.200",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/chrome": "^0.0.300",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"typescript": "~5.7.0",
"vite": "^6.0.0"
}
}