-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.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
{
"name": "simandou-lbcft-desktop",
"version": "1.0.0",
"description": "Poste de travail Windows (accès Bureau) pour la solution LBC/FT BCRG — wrapper Electron de l'application analyste.",
"main": "main.js",
"author": "Simandou Screening",
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "electron .",
"dist:win": "electron-builder --win --x64",
"dist:win-portable": "electron-builder --win portable --x64"
},
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "gn.bcrg.lbcft.desktop",
"productName": "BCRG LBC-FT",
"directories": {
"output": "release"
},
"files": [
"main.js",
"preload.js",
"assets/**"
],
"win": {
"target": [
{ "target": "nsis", "arch": ["x64"] }
],
"artifactName": "BCRG-LBCFT-Setup-${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "BCRG LBC-FT"
}
}
}