-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 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": "caloricmedcare",
"version": "0.2.0",
"description": "An Electron app to calculate daily caloric need of a patient in a burn ward based on entered patient data.",
"main": "main.js",
"scripts": {
"start": "electron .",
"package": "electron-builder",
"build": "electron-builder --win"
},
"repository": {
"type": "git",
"url": "https://github.com/ritalarina/caloricmedcare.git"
},
"homepage": "https://github.com/ritalarina/caloricmedcare",
"bugs": {
"url": "https://github.com/ritalarina/caloricmedcare/issues"
},
"build": {
"appId": "io.github.ritalarina.caloricmedcare",
"productName": "CaloricMedCare",
"win": {
"target": "nsis",
"icon": "assets/icons/nutrient.ico"
},
"directories": {
"output": "release-builds"
},
"files": [
"main.js",
"renderer.js",
"index.html",
"package.json",
"assets/**/*"
]
},
"author": "Rita Larina",
"license": "GPL-3.0",
"devDependencies": {
"electron": "^32.0.2",
"electron-builder": "^25.0.5"
},
"dependencies": {
"glpk.js": "^4.0.2"
}
}