-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 KB
/
package.json
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
{
"name": "pomodoro",
"version": "1.2.1",
"repository": "git@github.com:veloxy/pomodoro-electron.git",
"description": "Pomodoro in electron",
"main": "src/script.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node_modules/.bin/electron-builder"
},
"author": "Kevin Vandenborne",
"license": "ISC",
"devDependencies": {
"electron-builder": "^19.42.1",
"electron": "^9.4.0"
},
"build": {
"mac": {
"target": "dmg",
"icon": "src/assets/icons/icon.icns"
},
"dmg": {
"title": "Pomodoro",
"icon": "src/assets/icons/icon.icns",
"background": "src/assets/img/background.png",
"iconSize": 180,
"contents": [
{
"x": 200,
"y": 210
},
{
"x": 200,
"y": 450,
"type": "link",
"path": "/Applications"
}
]
}
},
"dependencies": {
"@slack/client": "^4.0.1",
"electron-settings": "^3.1.4",
"jquery": "^3.5.0"
}
}