-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.53 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "md-wysiwyg",
"productName": "MD Wysiwyg",
"version": "1.0.0",
"description": "Editor y Visor WYSIWYG profesional de Markdown y visor PDF desarrollado por Merke Software",
"homepage": "https://github.com/peledahe/MD-Wysiwyg#readme",
"repository": {
"type": "git",
"url": "https://github.com/peledahe/MD-Wysiwyg.git"
},
"bugs": {
"url": "https://github.com/peledahe/MD-Wysiwyg/issues"
},
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --linux AppImage deb",
"build:linux": "electron-builder --linux AppImage deb",
"build:win": "electron-builder --win zip"
},
"keywords": [
"markdown",
"viewer",
"editor",
"wysiwyg",
"pdf",
"merke-software",
"electron"
],
"author": {
"name": "Perry Daniels",
"email": "contacto@merke.net",
"url": "https://merke.net"
},
"publisher": "Merke Software",
"license": "MIT",
"dependencies": {
"highlight.js": "^11.9.0",
"katex": "^0.16.10",
"marked": "^12.0.2",
"mermaid": "^10.9.1",
"pdf-parse": "^2.4.5",
"pdfjs-dist": "^5.6.205",
"turndown": "^7.2.4"
},
"devDependencies": {
"electron": "^30.0.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "net.merke.mdwysiwyg",
"productName": "MD Wysiwyg",
"copyright": "Copyright © 2026 Merke Software - Perry Daniels",
"publish": [
{
"provider": "github",
"owner": "peledahe",
"repo": "MD-Wysiwyg"
}
],
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Office;Utility;Development;",
"packageCategory": "editors",
"synopsis": "Editor y Visor WYSIWYG de Markdown",
"description": "MD Wysiwyg - Editor visual y visor de Markdown desarrollado por Merke Software",
"icon": "assets/icons",
"desktop": {
"Name": "MD Wysiwyg",
"Comment": "Editor y Visor WYSIWYG de Markdown",
"Keywords": "markdown;editor;wysiwyg;pdf;viewer;text;"
}
},
"deb": {
"priority": "optional",
"packageCategory": "editors",
"depends": [
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
"libnss3"
]
},
"win": {
"target": [
"zip"
],
"publisherName": "Merke Software",
"legalTrademarks": "Merke Software",
"icon": "assets/icon.ico"
},
"files": [
"main.js",
"preload.js",
"src/**/*",
"assets/**/*"
]
}
}