forked from tentone/nunuStudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.01 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
{
"name": "nunuStudio",
"description": "nunuStudio is a web based game engine for 3D and 2D game development with support for VR and AR",
"main": "index.html",
"version": "0.9.6",
"author": "Tentone",
"license": "MIT",
"homepage": "https://www.nunustudio.org",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "run --with-ffmpeg --mirror https://dl.nwjs.io/ .",
"build": "cd script && node build.js",
"update": "cd script && node update.js",
"dist": "build --mirror https://dl.nwjs.io/ --with-ffmpeg --tasks win-x64 ./docs/editor",
"dist-all": "npm run build && build --mirror https://dl.nwjs.io/ --with-ffmpeg --tasks win-x64,linux-x64,mac-x64 ./docs/editor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tentone/nunuStudio.git"
},
"keywords": [
"three.js",
"editor",
"webgl",
"engine",
"gamedev",
"cannonjs"
],
"bugs": {
"url": "https://github.com/tentone/nunuStudio/issues"
},
"devDependencies": {
"yuidocjs": "",
"nwjs-builder-phoenix": "1.14.8"
},
"dependencies": {
"cordova": ""
},
"chromium-args": "--use-angle=gl --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
},
"build": {
"appId": "io.tentone.nunustudio",
"output": "../../build/desktop/",
"outputPattern": "${NAME}_${VERSION}_${PLATFORM}_${ARCH}",
"ffmpegIntegration": false,
"packed": false,
"nwVersion": "0.36.2",
"nwFlavor": "sdk",
"targets": [
"zip",
"7z"
],
"excludes": [
"node_modules",
"package-lock.json"
],
"strippedProperties": [
"scripts",
"dependencies",
"devDependencies",
"build"
],
"win": {
"productName": "nunuStudio",
"companyName": "tentone",
"copyright": "MIT",
"icon": "source/files/icon.ico",
"versionStrings": {}
},
"mac": {
"name": "nunuStudio",
"displayName": "nunuStudio",
"companyName": "tentone",
"copyright": "MIT"
}
}
}