-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.96 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.96 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
{
"name": "md-float",
"version": "1.4.0",
"description": "Floating markdown & text file viewer — read-only, tabbed, theme-aware",
"main": "main.js",
"scripts": {
"start": "electron . --no-sandbox",
"dev": "electron . --no-sandbox --dev",
"build": "electron-builder --linux deb",
"build-dir": "electron-builder --linux dir"
},
"build": {
"appId": "com.mastercontrol.md-float",
"productName": "MD Float",
"linux": {
"target": [
"deb"
],
"category": "Utility;TextEditor",
"icon": "resources/icons/icon.png",
"desktop": {
"Name": "MD Float",
"Comment": "Floating markdown & text file viewer",
"Terminal": "false",
"Type": "Application",
"Categories": "Utility;TextEditor;Viewer",
"MimeType": "text/markdown;text/plain;text/x-log;application/json;text/csv;text/xml"
}
},
"deb": {
"depends": [
"libgtk-3-0",
"libnotify4",
"libnss3",
"libxss1",
"libxtst6",
"xdg-utils",
"libatspi2.0-0",
"libuuid1",
"libsecret-1-0"
]
},
"files": [
"main.js",
"preload.js",
"renderer/**/*",
"hooks/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
{
"from": "hooks/detect-colors.sh",
"to": "hooks/detect-colors.sh"
}
],
"publish": null,
"generateUpdatesFilesForAllChannels": false
},
"dependencies": {
"highlight.js": "^11.10.0",
"marked": "^14.0.0",
"marked-highlight": "^2.2.0"
},
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.1.8"
},
"author": {
"name": "J. Michaels",
"email": "sanchez314c@github.com",
"url": "https://github.com/sanchez314c"
},
"homepage": "https://github.com/sanchez314c/md-float",
"repository": {
"type": "git",
"url": "https://github.com/sanchez314c/md-float.git"
},
"license": "MIT"
}