-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 808 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "cesiumeditor",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "./node_modules/.bin/electron .",
"build-mac": "./node_modules/.bin/electron-packager . CesiumEditor --platform=darwin --arch=x64 --version=0.37.2 --ignore=README.md --ignore=node_modules/cesium/CesiumUnminified --icon icon.png.icns",
"build-win": "./node_modules/.bin/electron-packager . CesiumEditor --platform=win32 --arch=x64 --version=0.37.2 --ignore=README.md --ignore=node_modules/cesium/CesiumUnminified",
"build-all": "npm run build-mac && npm run build-win"
},
"author": "Tom Ped",
"license": "Apache 2.0",
"devDependencies": {
"cesium": "^1.20.0",
"codemirror": "^5.13.2",
"electron-packager": "^6.0.0",
"electron-prebuilt": "^0.37.2"
}
}