-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.53 KB
/
package.json
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": "docdown",
"productName": "DocDown",
"version": "0.7.1",
"description": "A menu bar app to convert Markdown into academia-ready Word documents",
"main": "main.js",
"license": "GPL-3.0-only",
"author": "Raphael Kabo",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "com.raphaelkabo.docdown",
"asarUnpack": [
"assets"
],
"mac": {
"category": "public.app-category.utilities",
"type": "distribution",
"target": {
"target": "default",
"arch": [
"universal"
]
},
"fileAssociations": [
{
"ext": [
"md",
"markdown",
"txt"
],
"description": "Markdown files",
"role": "Converter"
}
]
}
},
"devDependencies": {
"electron": "^22.3.18",
"electron-builder": "^24.6.3"
},
"dependencies": {
"auto-launch": "^5.0.5",
"command-exists": "^1.2.8",
"electron-settings": "^3.2.0",
"electron-window": "^0.8.1",
"jquery": "^3.7.0",
"menubar": "^9.3.0",
"mime-types": "^2.1.26",
"node-fetch": "^2.6.0",
"node-pandoc": "^0.3.0",
"semver": "^7.5.4"
}
}