-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 1.76 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
{
"name": "unreel",
"version": "1.4.0",
"license": "GPL-3.0",
"description": "Reveal your ideas. With Unreel you can create amazing REVEAL.JS presentations",
"author": "Caldas Lopes <[email protected]>",
"homepage": "https://github.com/linux-man/unreel#readme",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"pack": "electron-packager . unreel --platform=linux --arch=x64; electron-packager . unreel --platform=win32 --arch=x64 --icon='build/icon.ico'; electron-packager . unreel --platform=darwin --icon='build/icon.icns'",
"build": "build --dir",
"dist": "build",
"dist:win": "build --win"
},
"build": {
"appId": "pt.softlab.unreel",
"asar": false,
"fileAssociations": [
{
"ext": "reel",
"name": "UNREEL"
}
],
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Office",
"packageCategory": "Contrib",
"executableName": "unreel"
},
"win": {
"target": [
"nsis"
],
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": true,
"perMachine": true,
"installerHeaderIcon": "build/icon.ico"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/linux-man/unreel.git"
},
"keywords": [
"unreel",
"presentation",
"reveal"
],
"bugs": {
"url": "https://github.com/linux-man/unreel/issues"
},
"devDependencies": {
"electron": "^3.0.2",
"electron-builder": "^20.28.4",
"electron-packager": "^12.1.2"
},
"dependencies": {
"archiver": "^3.0.0",
"beautify": "0.0.8",
"extract-zip": "^1.6.7",
"fs-extra": "^7.0.0",
"probe-image-size": "^4.0.0",
"sanitize-filename": "^1.6.1",
"tmp": "0.0.33"
}
}