forked from Quantumgames-inc/QuantumEngineStudio3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.79 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "QuantumEngineStudio3D",
"description": "QuantumEngineStudio3D is a web based game engine for 3D and 2D game development with support for VR and AR",
"main": "index.html",
"version": "0.0.1",
"author": "quantumgamesstudiosinc",
"license": "MIT",
"homepage": "https://quantumgames-inc.github.io/QuantumEngineStudio3D/",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "webpack-dev-server --open --hot --inline --config webpack.dev.js",
"start-nwjs": "run --with-ffmpeg --mirror https://dl.nwjs.io/ .",
"serve-page": "http-server . -p 8081 --cors -o",
"serve-editor": "http-server ./build/editor -p 8081 --cors -o",
"serve-docs": "http-server ./docs -p 8081 --cors -o",
"generate-docs": "yuidoc -o ./docs -N -C -t ./source/theme-docs -x lib ./source/core/",
"publish": "npm publish --access public .",
"lint": "eslint --ext .js .",
"lint-fix": "eslint --ext .js --fix .",
"build-runtime": "webpack --config webpack.runtime.js",
"build-editor": "webpack --config webpack.prod.js",
"build-editor-nwjs": "build --mirror https://dl.nwjs.io/ --concurrent --with-ffmpeg --tasks win-x64,mac-x64,linux-x64 ./build/editor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quantumgames-inc/QuantumEngineStudio3D.git"
},
"keywords": [
"webgl",
"3d",
"gamedev",
"webvr",
"webxr"
],
"bugs": {
"url": "https://github.com/Quantumgames-inc/QuantumEngineStudio3D/issues"
},
"dependencies": {
"@as-com/pson": "3.0.1",
"@eastdesire/jscolor": "^2.2.3",
"@tweenjs/tween.js": "^18.6.0",
"acorn": "^7.3.1",
"cannon": "^0.6.2",
"codemirror": "^5.55.0",
"js.blend": "github:acweathersby/js.blend",
"spine-runtimes": "github:EsotericSoftware/spine-runtimes",
"tern": "^0.24.3",
"three": "^0.117.1",
"sparse-octree": "^6.0.2",
"iterator-result": "^1.0.0",
"math-ds": "^1.2.1",
"jszip": "^3.5.0",
"glsl-editor": "^1.0.0",
"three-bmfont-text": "^2.3.0",
"jshint": "^2.11.1",
"draco3d": "^1.3.6",
"draco3dgltf": "^1.3.6"
},
"devDependencies": {
"@shoutem/webpack-prepend-append": "^1.0.1",
"@types/node": "^14.0.14",
"@types/webpack": "^4.41.18",
"copy-webpack-plugin": "^6.0.2",
"cordova": "~9.0.0",
"css-loader": "3.6.0",
"html-webpack-plugin": "^4.3.0",
"http-server": "^0.12.3",
"nwjs-builder-phoenix": "^1.15.0",
"raw-loader": "^4.0.1",
"style-loader": "1.2.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"webpack-merge-and-include-globally": "^2.1.25",
"webpack-node-externals": "^1.7.2",
"git-revision-webpack-plugin": "^3.0.6",
"yuidocjs": "^0.10.2"
},
"js-flags": "--stack-size 65500",
"chromium-args": "--ignore-gpu-blacklist --disable-raf-throttling --enable-gpu-async-worker-context",
"window": {
"icon": "source/files/icon.png",
"frame": true,
"width": 1280,
"height": 720,
"min_width": 800,
"min_height": 600,
"show_in_taskbar": true
},
"webkit": {
"plugin": false,
"double_tap_to_zoom_enabled": false
},
"build": {
"nwVersion": "0.45.4",
"appId": "io.tentone.nunustudio",
"output": "../../build/desktop/",
"outputPattern": "${NAME}_${VERSION}_${PLATFORM}_${ARCH}",
"ffmpegIntegration": false,
"packed": false,
"nwFlavor": "sdk",
"targets": [
"zip",
"7z"
],
"excludes": [
"node_modules",
"package-lock.json"
],
"strippedProperties": [
"scripts",
"dependencies",
"devDependencies",
"build"
],
"win": {
"productName": "QuantumEngine3D",
"companyName": "quantumgamesinc",
"copyright": "MIT",
"icon": "source/files/icon.ico",
"versionStrings": {}
},
"mac": {
"name": "QuantumEngine3D",
"displayName": "QuantumEngine3D",
"companyName": "quantumgamesinc",
"copyright": "MIT"
}
}
}