-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "impressPlayer",
"version": "0.9.1",
"description": "Standalone impress.js presentations viewer and controller. Accepts html, markdown and specifically structured zip.",
"main": "main.js",
"scripts": {
"start": "electron .",
"debug": "electron . --inspect=5858",
"pack": "build --dir",
"dist": "build",
"win": "build --win",
"electron-builder": "electron-builder"
},
"repository": "https://github.com/matejmosko/impressPlayer",
"keywords": [
"impressPlayer",
"impress.js",
"markpress",
"presentations"
],
"author": "Matej Moško",
"license": "CC0-1.0",
"postinstall": "./node_modules/.bin/electron-rebuild",
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.8.1",
"electron": "5.0.1",
"electron-builder": "^20.39.0",
"electron-rebuild": "^1.8.4",
"npm": "^6.6.0"
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-brands": "^5.0.13",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"decompress-zip": "^0.2.2",
"electron-settings": "^3.1.1",
"fs-plus": "^3.1.1",
"i18n-2": "^0.7.1",
"markdown-it": "^10.0.0",
"mustache": "^2.3.0"
},
"build": {
"productName": "impressPlayer",
"appId": "sk.panakrala.impressPlayer",
"asar": true,
"compression": "maximum",
"npmRebuild": true,
"linux": {
"target": "AppImage",
"category": "Office"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
}
}
}