forked from zhuzhuyule/HexoEditor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
134 lines (134 loc) · 3.48 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
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
{
"name": "HexoEditor",
"version": "1.5.30",
"description": "This is markdown editor for Hexo.",
"main": "app/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:l": "electron-builder --linux --ia32 --x64",
"dist:l32": "electron-builder --linux --ia32",
"dist:l64": "electron-builder --linux --x64",
"dist:w": "electron-builder --win --ia32 --x64",
"dist:w32": "electron-builder --win --ia32",
"dist:w64": "electron-builder --win --x64",
"dist:mac": "export CSC_IDENTITY_AUTO_DISCOVERY=false && electron-builder --mac --x64",
"start": "electron ."
},
"build": {
"appId": "com.zhuzhuyule.hexoeditor",
"productName": "HexoEditor",
"asar": true,
"nsis": {
"artifactName": "${name}_${version}_${os}${arch}.${ext}",
"runAfterFinish": false,
"deleteAppDataOnUninstall": true,
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"installerLanguages": "zh_CN",
"language": 2052,
"perMachine": true,
"createDesktopShortcut": true
},
"publish": {
"provider": "github"
},
"dmg": {
"title": "HexoEditor",
"icon": "icons/HexoEditor.icns",
"background": "icons/background.png",
"iconSize": 99,
"contents": [
{
"x": 123,
"y": 232
},
{
"x": 351,
"y": 232,
"type": "link",
"path": "/Applications"
}
],
"window": {
"width": 480,
"height": 338
}
},
"linux": {
"target": [
"tar.gz",
"appImage",
"deb"
],
"icon": "icons/"
},
"win": {
"target": "nsis",
"icon": "icons/HexoEditor.ico"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhuzhuyule/HexoEditor.git"
},
"keywords": [
"markdown",
"editor",
"hexomarkdown"
],
"author": "Menci,zhuzhuxia <zhuzhuyule@126.com> (http://zhuzhuyule.com/)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/zhuzhuyule/HexoEditor/issues"
},
"homepage": "https://github.com/zhuzhuyule/HexoEditor#readme",
"dependencies": {
"biu.js": "^1.2.0",
"bluebird": "^3.5.1",
"cheerio": "^1.0.0-rc.2",
"codemirror": "^5.18.2",
"configstore": "^2.1.0",
"cos-nodejs-sdk-v5": "^2.2.6",
"electron-localshortcut": "^0.6.1",
"electron-titlebar": "0.0.2",
"flowchart.js": "^1.6.3",
"font-awesome": "^4.6.3",
"form-data": "^2.3.1",
"hexo-front-matter": "^0.2.3",
"hexo-fs": "^0.2.2",
"hexo-renderer-ejs": "^0.3.1",
"hexo-renderer-marked": "^0.3.0",
"hexo-renderer-stylus": "^0.3.3",
"hexo-util": "^0.6.2",
"highlight.js": "^9.6.0",
"jquery": "^3.1.0",
"js-sequence-diagrams": "^1000000.0.6",
"katex": "^0.6.0",
"lodash": "^4.15.0",
"log4js": "^2.5.2",
"lrucache": "^1.0.2",
"mathjax": "^2.6.1",
"mathjax-node": "^0.5.1",
"mime": "^1.3.4",
"moemark": "^0.3.8",
"moment-timezone": "^0.5.14",
"nunjucks": "^3.0.1",
"os-locale": "^1.4.0",
"qiniu": "^7.1.1",
"raphael": "^2.2.1",
"request": "^2.83.0",
"shell-env": "^2.0.1",
"strip-indent": "^2.0.0",
"swig": "^1.4.2",
"swig-extras": "0.0.1",
"titlecase": "^1.1.2",
"util": "^0.10.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"electron": "^1.8.4",
"electron-builder": "^19.52.1"
}
}