This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
forked from mb21/panwriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.45 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
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
{
"name": "panwriter",
"productName": "PanWriter",
"version": "0.6.3",
"description": "Markdown editor with pandoc integration and paginated preview",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"install": "psc-package install",
"build": "psc-package build",
"clean": "rm -rf .cache .psc-package .psci_modules node_modules output dist",
"debug": "electron --inspect-brk=5858 .",
"dist": "electron-builder",
"dist-all": "electron-builder -mlw",
"release": "electron-builder -mlw --publish always"
},
"repository": "https://github.com/mb21/panwriter",
"keywords": [
"markdown",
"editor"
],
"author": "Mauro Bieg",
"License": "GPL-3.0-or-later",
"publish": "github",
"build": {
"appId": "com.panwriter.app",
"fileAssociations": [
{
"ext": "md"
},
{
"ext": "markdown"
},
{
"ext": "txt"
},
{
"ext": "html"
},
{
"ext": "docx"
},
{
"ext": "odt"
},
{
"ext": "tex"
}
],
"mac": {
"icon": "build/icons/icon.png"
},
"win": {
"icon": "build/icons/icon.ico"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
},
"linux": {
"desktop": {
"Name": "PanWriter",
"Comment": "Markdown editor with pandoc integration and paginated preview"
},
"category": "Utility",
"target": [
"snap",
"AppImage"
]
}
},
"dependencies": {
"codemirror": "^5.42.2",
"electron-updater": "^4.0.6",
"fix-path": "^2.1.0",
"js-yaml": "^3.12.0",
"katex": "^0.10.0-rc.1",
"markdown-it": "^8.4.2",
"markdown-it-attrs": "^2.3.2",
"markdown-it-bracketed-spans": "^1.0.1",
"markdown-it-container": "^2.0.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-footnote": "^3.0.1",
"markdown-it-implicit-figures": "^0.9.0",
"markdown-it-pandoc": "^0.5.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-texmath": "^0.5.2",
"pagedjs": "github:jan-zajic/pagedjs#master",
"react": "^16.6.1",
"react-codemirror2": "^5.1.0",
"react-dom": "^16.6.1",
"eventemitter2": "^5.0.1",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"electron": "^6.0.0",
"electron-builder": "^20.39.0",
"psc-package": "^3.0.1",
"purescript": "^0.12.1"
}
}