-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.12 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.12 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
{
"name": "next-up",
"version": "1.0.0",
"description": "Countdown to next up on your schedule",
"main": "src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder --mac",
"build-all": "electron-builder --mac --publish never",
"quickstart": "pnpm install && pnpm build && node scripts/install-app.js"
},
"author": "Evan Gan",
"license": "ISC",
"devDependencies": {
"electron": "23.1.3",
"electron-builder": "^26.0.12"
},
"dependencies": {
"yaml": "^2.3.0"
},
"build": {
"appId": "com.classesreminder.app",
"productName": "Next Up",
"files": [
"src/**/*",
"assets/**/*",
"package.json"
],
"mac": {
"target": ["dmg", "zip"],
"category": "public.app-category.productivity",
"icon": "assets/icon.png"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220,
"type": "file"
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
}
}