-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.51 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
{
"name": "pspdfkit-electron-example",
"productName": "Nutrient Electron Example App",
"version": "1.0.0",
"description": "WebAssembly based PDF viewer web application built with Nutrient Electron",
"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",
"postinstall": "node scripts/copy-nutrient-files.js"
},
"repository": "https://github.com/PSPDFKit/pspdfkit-electron-example",
"author": "PSPDFKit (https://www.nutrient.io)",
"homepage": "https://www.nutrient.io/sdk/web",
"readme": "https://www.nutrient.io/guides/web",
"keywords": [
"wasm",
"assembly",
"pdf",
"viewer",
"@nutrient-sdk/viewer",
"asm.js",
"electron"
],
"devDependencies": {
"@electron/packager": "^18.3.6",
"electron": "^33.2.0",
"ncp": "^2.0.0"
},
"dependencies": {
"@nutrient-sdk/viewer": "1.0.0"
},
"overrides": {
"minimatch": "^3.0.5",
"cross-spawn": "^7.0.5"
}
}