-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.04 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.04 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nwjs-bootstrap",
"version": "0.5.0",
"description": "NW.js bootstrap to kickstart your project.",
"keywords": [
"nw.js",
"bootstrap"
],
"homepage": "https://github.com/masterjg/nwjs-bootstrap",
"bugs": {
"url": "https://github.com/masterjg/nwjs-bootstrap/issues",
"email": "masterj2@gmail.com"
},
"license": "CC-BY-NC-SA-4.0",
"author": {
"name": "Marius Guščius",
"email": "masterj2@gmail.com"
},
"contributors": [],
"main": "./dist/index.html",
"repository": {
"type": "git",
"url": "git@github.com:masterjg/nwjs-bootstrap.git"
},
"scripts": {
"generate:icons": "png2icons ./resources/icon.png ./resources/icon -allp -hm",
"start": "cross-env NODE_ENV=development webpack",
"build": "cross-env NODE_ENV=production webpack && build --concurrent --tasks win-x64,linux-x64,mac-x64 .",
"build:win": "cross-env NODE_ENV=production webpack && build --tasks win-x64 .",
"build:lnx": "cross-env NODE_ENV=production webpack && build --tasks linux-x64 .",
"build:mac": "cross-env NODE_ENV=production webpack && build --tasks mac-x64 ."
},
"devDependencies": {
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.0.0",
"cross-env": "^5.2.0",
"html-webpack-plugin": "^3.2.0",
"nwjs-builder-phoenix": "^1.15.0",
"nwjs-webpack-plugin": "^0.4.0",
"png2icons": "^1.0.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"window": {
"title": "nwjs-bootstrap",
"min_width": 1280,
"min_height": 720,
"icon": "./resources/icon.png"
},
"webkit": {
"plugin": false
},
"chromium-args": "--mixed-context --user-data-dir=data --enable-node-worker --disable-raf-throttling --disable-gpu --single-process",
"build": {
"nwVersion": "0.36.2",
"output": "./build/",
"packed": true,
"files": [
"./dist/**/*.*",
"./resources/icon.png"
],
"appId": "io.nwjs-bootstrap.${name}",
"win": {
"icon": "./resources/icon.ico"
},
"mac": {
"icon": "./resources/icon.icns"
}
}
}