forked from MrAntares/roBrowserLegacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.58 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.58 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
45
46
47
48
49
50
51
52
{
"name": "robrowser",
"version": "1.0.0",
"scripts": {
"serve": "live-server ./dist/Web",
"live": "live-server . --open=./applications/browser-examples",
"pwa": "live-server . --open=./applications/pwa",
"tools": "live-server . --open=./applications/tools",
"nw": "nw .",
"build": "node ./applications/tools/builder-web.js",
"build:online": "npm run build -- -O",
"build:mapviewer": "npm run build -- -V",
"build:grfviewer": "npm run build -- -G",
"build:modelviewer": "npm run build -- -M",
"build:strviewer": "npm run build -- -S",
"build:effectviewer": "npm run build -- -E",
"build:threadhandler": "npm run build -- -T",
"build:html": "npm run build -- -H",
"build:ai": "npm run build -- -A",
"build:all": "npm run build -- --all",
"build:all:minify": "npm run build -- --all --m",
"build:pwa": "npm run build -- --O --T --PWA",
"build:nw": "build --concurrent --tasks win-x86,win-x64 --mirror https://dl.nwjs.io/ ./applications/nwjs"
},
"author": "Vincent Thibault",
"license": "GNU GPL V3",
"devDependencies": {
"live-server": "^1.2.2",
"nw": "^0.99.0-sdk",
"nwjs-builder-phoenix": "^1.15.0",
"requirejs": "^2.3.6",
"terser": "^5.19.4"
},
"build": {
"nwVersion": "stable",
"output": "./dist/Desktop",
"packed": true,
"targets": "zip",
"files": [
"**/*"
]
},
"chromium-args": "--enable-webgl --ignore-gpu-blacklist --enable-node-worker --user-data-dir=save --disable-raf-throttling",
"window": {
"width": 1024,
"height": 768,
"fullscreen": false,
"frame": true,
"icon": "icon.png"
},
"main": "applications/nwjs/index.html"
}