-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.89 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.89 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "whatsappexportviewer",
"productName": "WhatsApp Export Viewer",
"copyright": "Copyright © 2025 MrMelon54",
"appId": "com.mrmelon54.WhatsAppExportViewer",
"version": "2.1.2",
"description": "A program for viewing WhatsApp exported chats in a nice GUI with chat bubbles.",
"type": "module",
"main": "src/index.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "NODE_ENV=development concurrently 'yarn run web:watch' 'sleep 1 && yarn run electron:start'",
"web:watch": "vite --port 3000",
"electron:start": "electron src",
"build": "vite build",
"bin": "yarn build && electron-builder",
"prepare": "yarn smui-theme-light && yarn smui-theme-dark",
"smui-theme-light": "smui-theme compile src/renderer/public/smui.gen.css -i src/renderer/theme",
"smui-theme-dark": "smui-theme compile src/renderer/public/smui-dark.gen.css -i src/renderer/theme/dark"
},
"build": {
"appId": "com.mrmelon54.WhatsAppExportViewer",
"icon": "./icon.png",
"productName": "WhatsApp Export Viewer",
"copyright": "Copyright © 2025 MrMelon54",
"mac": {
"category": "public.app-category.productivity",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"target": [
{
"target": "default",
"arch": [
"x64",
"arm64"
]
}
]
},
"nsis": {
"artifactName": "${productName}_setup_${version}.${ext}"
},
"win": {
"icon": "./icon.ico",
"target": [
"nsis",
"zip"
]
},
"linux": {
"icon": "./icon.icns",
"target": [
"deb",
"AppImage",
"tar.gz"
],
"category": "Utility"
},
"files": [
"src/**/*",
"package.json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrmelon54/WhatsAppExportViewer.git"
},
"author": {
"name": "MrMelon54",
"email": "github@mrmelon54.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/mrmelon54/WhatsAppExportViewer/issues"
},
"homepage": "https://github.com/mrmelon54/WhatsAppExportViewer",
"devDependencies": {
"@material/typography": "^14.0.0",
"@smui/button": "^8.0.3",
"@smui/dialog": "^8.0.3",
"@smui/icon-button": "^8.0.3",
"@smui/layout-grid": "^8.0.3",
"@smui/list": "^8.0.3",
"@smui/select": "^8.0.3",
"@smui/textfield": "^8.0.3",
"@smui/tooltip": "^8.0.3",
"@smui/top-app-bar": "^8.0.3",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"concurrently": "^9.2.1",
"electron": "^41.1.0",
"electron-builder": "26.8.1",
"smui-theme": "^8.0.3",
"svelte": "^5.55.7",
"svelte-markdown": "^0.4.1",
"vite": "^8.0.5"
},
"dependencies": {
"electron-updater": "^6.8.3",
"env-paths": "^4.0.0",
"make-dir": "^5.1.0",
"readline": "^1.3.0",
"typescript": "^6.0.2"
}
}