-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1011 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
{
"name": "point-cloud-visualizer",
"version": "0.0.5",
"description": "Front end that visualizes .pcd files",
"main": "main.js",
"build": {
"files": [
"config/*",
"static/*"
]
},
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"buildWin" : "electron-packager . --overwrite --platform=win32 --arch=x64 --prune=true --out=release-builds",
"buildOSX": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=icons/icon.icns --prune=true --out=release-builds",
"buildLinux": "electron-packager . --overwrite --platform=linux --arch=x64 --icon=icons/icon.icns --prune=true --out=release-builds"
},
"author": "Fang Han",
"license": "ISC",
"dependencies": {
"@primer/css": "^12.2.1",
"electron": "^4.1.1",
"jquery": "^3.5.0",
"jquery-ui": "^1.12.1",
"three": "^0.102.1",
"three-orbit-controls": "^82.1.0"
},
"devDependencies": {
"electron-packager": "^13.1.1"
}
}