-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json.nwjs
97 lines (97 loc) · 2.19 KB
/
package.json.nwjs
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
{
"name": "kiwix_js_windows",
"productName": "Kiwix JS Windows",
"version": "3.5.1-N",
"description": "Kiwix JS Windows for NWJS",
"main": "index.html",
"domain": "kiwix.js.windows",
"window": {
"width": 1280,
"height": 960,
"min_width": 640,
"min_height": 480,
"icon": "www/img/icons/kiwix-256.png"
},
"scripts": {
"start": "run --x86 --mirror https://dl.nwjs.io/ .",
"dist-win-x86": "build --tasks win-x86 --mirror https://dl.nwjs.io/ .",
"dist-win-x64": "build --tasks win-x64 --mirror https://dl.nwjs.io/ .",
"dist": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./scripts/Build-NWJS.ps1"
},
"build-xp": {
"nwVersion": "0.14.7",
"output": "bld/nwjs/win-x86-xp",
"files": [
"service-worker.js",
"index.html",
"CHANGELOG.md",
"LICENCE",
"manifest.json",
"www/**",
"archives/README.md",
"archives/wikip*.*",
"!**/*.dev.{js,wasm}"
],
"win": {
"icon": "www/img/icons/kiwix-64.ico"
}
},
"build": {
"nwVersion": "0.87.0",
"output": "bld/nwjs/win-x64",
"files": [
"replayWorker.js",
"service-worker.js",
"index.html",
"CHANGELOG.md",
"LICENCE",
"manifest.json",
"www/**",
"archives/README.md",
"archives/wikip*.*",
"!**/*.dev.{js,wasm}"
],
"win": {
"icon": "www/img/icons/kiwix-64.ico"
}
},
"build-win32": {
"nwVersion": "0.87.0",
"output": "bld/nwjs/win-x86",
"files": [
"replayWorker.js",
"service-worker.js",
"index.html",
"CHANGELOG.md",
"LICENCE",
"manifest.json",
"www/**",
"archives/README.md",
"archives/wikip*.*",
"!**/*.dev.{js,wasm}"
],
"win": {
"icon": "www/img/icons/kiwix-64.ico"
}
},
"repository": "https://github.com/kiwix/kiwix-js-pwa",
"keywords": [
"Kiwix",
"offline",
"Wikipedia",
"ZIM",
"reader"
],
"author": {
"name": "Kiwix",
"email": "[email protected]"
},
"maintainer": "Jaifroid",
"license": "CC0-1.0",
"devDependencies": {
"nwjs-builder-phoenix": "^1.15.0"
},
"dependencies": {
"@types/fs-extra": "^9.0.11"
}
}