-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.14 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
{
"name": "md-viewer",
"version": "0.1.0",
"description": "A lightweight Electron markdown viewer for single files or indexed folders.",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dev": "electron .",
"build": "electron-builder --dir",
"dist": "electron-builder",
"dist:mac": "electron-builder --mac",
"dist:win": "electron-builder --win"
},
"build": {
"appId": "com.mdviewer.app",
"productName": "MD Viewer",
"directories": {
"output": "dist"
},
"icon": "assets/icon.png",
"files": [
"assets/**/*",
"src/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"keywords": [
"electron",
"markdown",
"viewer"
],
"author": "",
"license": "MIT",
"dependencies": {
"marked": "^15.0.12"
},
"devDependencies": {
"electron": "^41.2.1",
"electron-builder": "^26.8.1"
}
}