-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.52 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
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
{
"name": "phreshistant",
"version": "1.1.2",
"productName": "Phreshistant",
"description": "Simple todo and project manage application.",
"author": "Phresh",
"copyright": "© 2018, Krisztián Kis - Phresh-IT",
"homepage": "https://phresh-it.hu/apps/phreshistant/",
"repository": "https://github.com/Phreshhh/Phreshistant/",
"license": "MIT",
"keywords": [
"Phresh",
"Electron",
"w3",
"todo",
"project",
"manage",
"reminder",
"timetrack"
],
"main": "main.js",
"scripts": {
"start": "electron .",
"pack-win32": "electron-packager . Phreshistant --platform=win32 --arch=x32 --asar --out dist --overwrite --icon=build/icons/phreshistant-icon.png.ico",
"pack-win": "electron-packager . Phreshistant --platform=win32 --arch=x64 --asar --out dist --overwrite --icon=build/icons/phreshistant-icon.png.ico",
"pack-lin": "electron-packager . Phreshistant --platform=linux --arch=x64 --asar --out dist --overwrite ---icon=build/icons/phreshistant-icon.png --prune=true",
"pack-mac": "electron-packager . Phreshistant --platform=darwin --arch=x64 --asar --out dist --overwrite --icon=build/icons/phreshistant-icon.png.icns --prune=true",
"pack": "build --dir",
"dist": "build"
},
"dependencies": {
"archiver": "3.0.0",
"auto-launch": "5.0.5",
"electron-store": "2.0.0",
"electron-window-state": "5.0.0",
"fs-extra": "7.0.0",
"markdown-it": "8.4.2",
"nedb": "1.8.0",
"unzipper": "0.9.3"
},
"devDependencies": {
"electron": "4.0.0",
"electron-packager": "13.0.1",
"electron-builder": "20.38.4"
},
"build": {
"appId": "com.phreshistant",
"productName": "Phreshistant",
"copyright": "© 2018, Phresh-IT",
"asar": true,
"linux": {
"icon": "build/icons/",
"maintainer": "Krisztian Kis",
"synopsis": "Project & todo manager.",
"category": "Development",
"packageCategory": "devel",
"description": "Electron based project manager.",
"target": [
"AppImage"
]
},
"win": {
"icon": "build/icons/phreshistant-icon.png.ico",
"publisherName": "Krisztian Kis",
"target": [
"nsis"
]
},
"nsis": {
"oneClick": true,
"perMachine": true,
"installerIcon": "build/icons/phreshistant-icon.png.ico",
"createDesktopShortcut": true
},
"mac": {
"icon": "build/icons/phreshistant-icon.png.icns",
"category": "public.app-category.productivity",
"target": [
"zip",
"dmg"
]
}
}
}