-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 3.84 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 3.84 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "panwriter",
"productName": "PanWriter",
"version": "0.8.1",
"description": "Markdown editor with pandoc integration and paginated preview",
"homepage": ".",
"main": "build/electron/main.js",
"scripts": {
"start": "react-scripts start",
"build": "INLINE_RUNTIME_CHUNK=false react-scripts build",
"postinstall": "cp node_modules/pagedjs/dist/paged.polyfill.js public && cp -r node_modules/katex/dist/ public/katex && cp node_modules/markdown-it-texmath/css/texmath.css public/katex",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src",
"tsc": "tsc",
"electron": "electron .",
"electron:tsc": "tsc -p electron",
"electron:dev": "concurrently \" set BROWSER=none && yarn start\" \"wait-on http://localhost:3000 && yarn run electron:tsc -w\" \"wait-on http://localhost:3000 && yarn run electron:tsc -p electron && set ELECTRON_IS_DEV=1 && electron .\"",
"electron:build": "yarn build && yarn run electron:tsc",
"dist": "yarn run electron:build && electron-builder",
"dist-all": "electron-builder -mlw",
"release": "electron-builder -mlw --publish always",
"website:build": "BUILD_PATH=try PUBLIC_URL='/try' INLINE_RUNTIME_CHUNK=false react-scripts build"
},
"repository": "https://github.com/mb21/panwriter",
"keywords": [
"markdown",
"editor"
],
"author": "Mauro Bieg",
"License": "GPL-3.0-or-later",
"publish": "github",
"private": true,
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"chrome 89"
],
"development": [
"chrome 89"
]
},
"build": {
"extends": null,
"files": [
"build/**/*"
],
"directories": {
"buildResources": "assets"
},
"appId": "com.panwriter.app",
"fileAssociations": [
{
"ext": "md"
},
{
"ext": "markdown"
},
{
"ext": "txt"
},
{
"ext": "html"
},
{
"ext": "docx"
},
{
"ext": "odt"
},
{
"ext": "tex"
}
],
"mac": {
"icon": "icons/icon.png",
"target": {
"target": "dmg",
"arch": [
"arm64",
"x64"
]
}
},
"win": {
"icon": "icons/icon.ico"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
},
"linux": {
"icon": "icons/icon.png",
"desktop": {
"Name": "PanWriter",
"Comment": "Markdown editor with pandoc integration and paginated preview"
},
"category": "Utility",
"target": [
"AppImage"
]
}
},
"dependencies": {
"codemirror": "^5.61.0",
"electron-updater": "^4.3.5",
"fix-path": "^3.0.0",
"js-yaml": "^3.14.0",
"katex": "^0.13.0",
"markdown-it": "^12.0.2",
"markdown-it-attrs": "^3.0.3",
"markdown-it-bracketed-spans": "^1.0.1",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-footnote": "^3.0.1",
"markdown-it-gridtables": "^0.2.2",
"markdown-it-implicit-figures": "^0.9.0",
"markdown-it-pandoc": "^1.1.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-texmath": "^0.8.0",
"pagedjs": "0.1.43",
"path-dirname": "^1.0.2",
"react": "^17.0.1",
"react-codemirror2": "^7.2.1",
"react-color": "^2.19.3",
"react-dom": "^17.0.1",
"react-scripts": "4.0.3"
},
"devDependencies": {
"@types/codemirror": "^0.0.102",
"@types/js-yaml": "^3.12.5",
"@types/react": "^16.9.53",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^16.9.8",
"concurrently": "^5.3.0",
"electron": "^12.0.7",
"electron-builder": "^22.10.5",
"raw-loader": "^4.0.2",
"typescript": "^4.1.3",
"wait-on": "^5.2.0"
}
}