-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.31 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.31 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
105
106
107
108
109
110
{
"name": "open-markup-editor",
"productName": "Open Markup Editor",
"copyright": "Copyright 2018-2021 ${author}",
"version": "3.2.0",
"description": "Pluggable markup editor",
"main": "./app/main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "submodules-install",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"submodules": [
"packs/render-packs/*",
"packs/editor-packs/*",
"packs/markup-packs/*",
"packs/extension-packs/*"
],
"keywords": [
"markup",
"markdown",
"editor",
"plugins",
"pluggable"
],
"author": "Ketchetwahmeegwun T. Southall <kts@kettek.net> (https://kettek.net/)",
"license": "GPL-3.0",
"devDependencies": {
"electron": "^12.0.4",
"electron-builder": "^22.10.5",
"submodules-install": "^1.0.1"
},
"dependencies": {
"@electron/remote": "^1.1.0",
"@hapi/cryptiles": "^5.1.0",
"bezier-easing": "^2.1.0",
"chokidar": "^3.5.1",
"electron-app-settings": "^1.2.2",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.3.4",
"fs-extra": "^9.1.0",
"mithril": "^1.1.7",
"semver": "^7.3.5",
"tar": "^6.1.2"
},
"build": {
"files": [
"node_modules",
"app"
],
"extraFiles": [
"packs/**/*"
],
"appId": "net.kettek.OpenMarkupEditor",
"mac": {
"category": "public.app-category.productivity",
"darkModeSupport": true,
"target": [
{
"target": "dmg"
}
]
},
"linux": {
"category": "Office",
"target": [
{
"target": "AppImage",
"arch": [
"ia32",
"x64"
]
},
{
"target": "pacman"
},
{
"target": "tar.xz",
"arch": [
"ia32",
"x64"
]
}
]
},
"win": {
"target": [
{
"target": "nsis"
},
{
"target": "portable"
}
]
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true
},
"fileAssociations": {
"ext": "md",
"description": "Markdown",
"mimeType": "text/markdown",
"role": "Editor"
}
}
}