-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.48 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.48 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
{
"name": "VPalm_IDE",
"version": "1.0.0",
"description": "A simple IDE for VPalm and VPalmr to make virtual palm plants from field data",
"main": "main.js",
"scripts": {
"start": "electron .",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --out=builds/portable",
"package-win": "electron-packager . --overwrite --platform=win32 --arch=x64 --icon=cc.ico --out=builds/portable --version-string.CompanyName=CIRAD --version-string.FileDescription=CE --version-string.ProductName=\"VPalm IDE: Shiny Electron App\"",
"package-linux": "electron-packager . --overwrite --platform=linux --arch=x64 --icon=assets/icons/png/1024x1024.png --prune=true --out=builds/portable",
"package-all": "electron-packager . --overwrite --platform=all --arch=x64 --icon=cc.ico --out=builds/portable"
},
"repository": "https://github.com/PalmStudio/VPALM_IDE",
"keywords": [
"VPalm",
"VPalmr",
"Palm",
"architecture",
"3D",
"electron"
],
"contributors": [
"Rémi Vezy <remi.vezy@cirad.fr> (https://remi-vezy.netlify.com/)",
"Raphaël P.A. Perez <raphael.perez@cirad.fr>",
"Jean Dauzat <jean.dauzat@cirad.fr>"
],
"license": "CC0-1.0",
"devDependencies": {
"electron": "^19.0.8",
"electron-packager": "^15.5.1",
"electron-winstaller": "^5.0.0"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0"
}
}