-
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) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 755 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": "pdf-agent",
"private": true,
"version": "0.0.0",
"main": "electron/main.cjs",
"type": "module",
"scripts": {
"dev": "vite",
"electron:dev": "wait-on tcp:5173 && electron .",
"desktop:dev": "concurrently -k \"npm:dev\" \"npm:electron:dev\"",
"build": "tsc && vite build",
"preview": "vite preview",
"desktop:build": "npm run build"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"electron": "^42.0.1",
"typescript": "~6.0.2",
"vite": "^8.0.10",
"wait-on": "^9.0.5"
},
"dependencies": {
"pdfjs-dist": "^5.7.284",
"react": "^19.2.6",
"react-dom": "^19.2.6"
}
}