-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.04 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.04 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "pdfreaderx",
"private": true,
"version": "1.0.1",
"description": "PDF Reader with Text-to-Speech",
"author": "pdfreaderX",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"electron:dev": "vite build && electron .",
"electron:build": "vite build && electron-builder build --win --publish never",
"electron:build:mac": "vite build && electron-builder build --mac --publish never",
"electron:build:linux": "vite build && electron-builder build --linux --publish never"
},
"dependencies": {
"clsx": "^2.1.0",
"lucide-react": "^0.363.0",
"pdfjs-dist": "^4.0.379",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.2",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"electron": "^41.2.1",
"electron-builder": "^26.8.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"png-to-ico": "^3.0.1",
"postcss": "^8.4.38",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^8.0.3",
"vite-plugin-pwa": "^0.19.8"
},
"build": {
"appId": "com.pdfreaderx.app",
"productName": "PDFReaderX",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"public/**/*"
],
"extraMetadata": {
"main": "electron/main.cjs"
},
"win": {
"target": "nsis",
"icon": "public/icon.ico"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}