-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.13 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.13 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
{
"name": "HackmdDesktop",
"version": "0.0.3",
"description": "Desktop app for HackMD packaged with Electron",
"author": "A-Lang <alang.hsu@gmail.com> (http://www.osslab.tw)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/a-lang/hackmd.git"
},
"keywords": [
"electron-app",
"electron",
"hackmd"
],
"files": [
"*.js",
"build/"
],
"scripts": {
"start": "electron .",
"clean": "rm -rf ./dist",
"clean:linux": "rm -rf ./dist/*-linux-*/",
"clean:win": "rm -rf ./dist/*-win32-*/",
"dist:linux": "npm run clean && build --linux",
"dist:linux32": "npm run clean && build --linux --ia32",
"dist:mac": "npm run clean && build --mac",
"dist:win": "npm run clean && build --win",
"test": "standard"
},
"build": {
"appId": "com.electron.hackmddesktop",
"directories": {
"buildResources": "app/build"
},
"mac": {
"category": "public.app-category.productivity",
"icon": "build/icon.icns",
"target": [
"zip"
]
},
"linux": {
"category": "Office;",
"maintainer": "A-Lang <alang.hsu@gmail.com>",
"icon": "build",
"desktop": {
"Icon": "build/icon.png",
"Name": "HackmdDesktop",
"Comment": "HackMD Desktop",
"Categories": "GTK;GNOME;Office;",
"Terminal": "false"
},
"target": [
"AppImage",
"tar.gz"
]
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "build/icon.png"
}
},
"dependencies": {
"about-window": "^1.12.1",
"electron-config": "^1.0.0",
"electron-debug": "^1.0.1"
},
"devDependencies": {
"electron": "^4.1.4",
"electron-builder": "^20.34.0",
"js-yaml": ">=3.13.1",
"standard": "^10.0.3"
}
}