-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 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
{
"name": "markdown-editor",
"productName": "Markdown Editor",
"version": "1.2.0",
"description": "A simple Markdown editor for Mac, Windows and Linux",
"author": {
"name": "Melvin Vivas",
"email": "donvitocodes@gmail.com"
},
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:win": "electron-builder --win --publish never",
"build:mac": "electron-builder --mac --publish never",
"build:linux": "electron-builder --linux --publish never",
"build:all": "electron-builder --win --mac --linux"
},
"build": {
"appId": "com.donvitocodes.markdown-editor.app",
"productName": "Markdown Editor",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"renderer.js",
"index.html",
"styles.css",
"icon.png",
"src/**/*",
"plugins/**/*"
],
"win": {
"target": "nsis",
"icon": "icon.png"
},
"mac": {
"target": "dmg",
"icon": "icon.png",
"category": "public.app-category.productivity"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "icon.png",
"category": "Office"
}
},
"dependencies": {
"electron-store": "^8.1.0",
"highlight.js": "^11.9.0",
"marked": "^12.0.0",
"marked-highlight": "^2.1.0",
"mermaid": "^11.12.2"
},
"devDependencies": {
"electron": "^40.1.0",
"electron-builder": "^26.6.0"
}
}