-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.39 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.39 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
{
"name": "nutrient-electron-example",
"productName": "Nutrient Electron SDK Example App",
"version": "1.0.0",
"description": "WebAssembly based PDF viewer web application built with Nutrient Electron SDK",
"main": "src/index.js",
"scripts": {
"start": "electron .",
"package-mac-intel": "electron-packager . --no-prune --overwrite --platform=darwin --arch=x64 --out=release-builds --icon=icons/mac/application.icns",
"package-mac-apple": "electron-packager . --no-prune --overwrite --platform=darwin --arch=arm64 --out=release-builds --icon=icons/mac/application.icns",
"package-win": "electron-packager . --no-prune --overwrite --platform=win32 --arch=x64 --out=release-builds --icon=icons/win/application.ico",
"package-linux": "electron-packager . --no-prune --overwrite --platform=linux --arch=x64 --out=release-builds --icon=icons/png/application.png"
},
"author": "Nutrient (https://www.nutrient.io)",
"homepage": "https://www.nutrient.io/web",
"readme": "https://www.nutrient.io/guides/web",
"keywords": [
"wasm",
"assembly",
"pdf",
"viewer",
"nutrient",
"asm.js",
"electron"
],
"devDependencies": {
"@electron/packager": "^18.3.6",
"@electron/remote": "^2.1.2",
"electron": "^35.7.5"
},
"dependencies": {
"@nutrient-sdk/viewer": "1.12.0"
},
"overrides": {
"minimatch": "^3.0.5",
"cross-spawn": "^7.0.5"
}
}