-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.13 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
{
"name": "usmle-pomodoro",
"version": "2.1.0",
"description": "USMLE Pomodoro — Focus timer and Q-bank tracker built for medical students",
"author": "Hady",
"license": "MIT",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder --win nsis",
"build:store": "electron-builder --win appx",
"build:all": "electron-builder --win --mac --linux",
"test": "node test-functional.js"
},
"build": {
"appId": "com.usmle.pomodoro",
"productName": "USMLE Pomodoro",
"copyright": "Copyright © 2026 Hady",
"directories": {
"buildResources": "assets",
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"preload-pip.js",
"index.html",
"pip.html",
"src/**/*",
"assets/**/*",
"package.json",
"!assets/icon@512.png"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"shortcutName": "USMLE Pomodoro",
"createDesktopShortcut": true,
"deleteAppDataOnUninstall": false
},
"appx": {
"applicationId": "USMLEPomodoro",
"identityName": "REPLACE.WITH.PartnerCenterIdentityName",
"publisher": "CN=REPLACE-WITH-PARTNER-CENTER-PUBLISHER-GUID",
"publisherDisplayName": "REPLACE WITH Partner Center publisher display name",
"displayName": "USMLE Pomodoro",
"backgroundColor": "#0B0D14",
"languages": [
"en-US"
]
},
"mac": {
"target": "dmg",
"icon": "assets/icon.png",
"category": "public.app-category.education"
},
"linux": {
"target": "AppImage",
"icon": "assets/icon.png",
"category": "Education"
}
},
"devDependencies": {
"electron": "^42.1.0",
"electron-builder": "^26.8.1",
"jsdom": "^24.1.3"
},
"dependencies": {
"electron-store": "^8.1.0"
}
}