-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1018 Bytes
/
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
47
48
{
"name": "financial-planner",
"productName": "FinancialPlanner",
"version": "1.0.0",
"description": "A minimal application to help keep financial transcactions",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "jest",
"build": "electron-builder --publish=never",
"release": "electron-builder"
},
"repository": "https://github.com/scottmmorris/financial-planner_app",
"keywords": [
"Electron",
"financial",
"planner"
],
"author": "Scott Morris",
"build": {
"appId": "financial-planner",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"icon": "assets/icon.png"
},
"nsis": {
"createDesktopShortcut": "always"
}
},
"devDependencies": {
"electron": "^17.0.0",
"jest": "^27.5.0",
"electron-builder": "^22.14.13"
}
}