forked from KhronosGroup/glTF-Sample-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "gltf-rv",
"version": "1.0.0",
"description": "The official glTF sample viewer.",
"main": "dist/gltf-reference-viewer.js",
"module": "dist/gltf-reference-viewer.module.js",
"scripts": {
"start": "electron electron/main.js",
"start-offscreen": "electron electron/offscreen.js --enable-logging",
"build": "rollup -c",
"dev": "concurrently \"rollup -c -w\" \"serve --listen 8000 .\"",
"dev:electron": "concurrently \"rollup -c -w\" \"npm start\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.js electron/*.js",
"lint:fix": "eslint --fix src/**/*.js electron/*.js",
"version": "npm run build",
"postversion": "git push && git push --tags",
"package-mac": "electron-packager . gltf-reference-viewer --overwrite --platform=darwin --arch=x64 --prune=true --out=release-builds",
"package-win": "electron-packager . gltf-reference-viewer --overwrite --asar=true --platform=win32 --arch=ia32 --prune=true --out=release-builds --version-string.ProductName=\"glTF Reference Viewer\"",
"package-linux": "electron-packager . gltf-reference-viewer --overwrite --asar=true --platform=linux --arch=x64 --prune=true --out=release-builds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ux3d/glTF-WebGL-PBR.git"
},
"keywords": [
"gltf",
"webgl",
"pbr"
],
"author": "Khronos Group Inc.",
"license": "MIT",
"dependencies": {
"argparse": "^1.0.10",
"gl-matrix": "^2.8.1",
"open": "0.0.5"
},
"devDependencies": {
"acorn": "^6.0.4",
"concurrently": "^4.1.0",
"electron": "^3.1.8",
"electron-packager": "^12.2.0",
"eslint": "^5.10.0",
"rollup": "^0.67.4",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-glslify": "^1.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"serve": "^10.1.1"
},
"bugs": {
"url": "https://github.com/KhronosGroup/glTF-Sample-Viewer/issues"
},
"homepage": "https://github.com/KhronosGroup/glTF-Sample-Viewer/#readme"
}