forked from onblog/BlogHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.41 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
{
"name": "blog-helper",
"version": "1.0.22",
"description": "",
"productName": "BlogHelper",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"ico": "png-to-ico build/app.png > build/app.ico"
},
"keywords": [
"pc",
"util"
],
"author": "Github@ystcode",
"repository": "https://github.com/ystcode/BlogHelper",
"license": "GPL-3.0-only",
"devDependencies": {
"electron": "^7.1.7",
"electron-builder": "^22.1.0",
"png-to-ico": "^2.1.0"
},
"dependencies": {
"bootstrap": "^3.4.1",
"electron-store": "^5.1.0",
"form-data": "^3.0.0",
"html-to-md": "^0.3.2",
"jquery": "^3.4.1",
"jsdom": "^15.2.1",
"lodash": "^4.17.15",
"logger2x": "0.0.2",
"marked": "^0.8.0",
"mime-types": "^2.1.27",
"path": "^0.12.7",
"picgo": "^1.4.8",
"querystring": "^0.2.0",
"request": "^2.88.0",
"urlencode": "^1.1.0"
},
"build": {
"appId": "com.github.ystcode.bloghelper",
"productName": "写作助手",
"mac": {
"icon": "build/app.icns",
"type": "development",
"category": "public.app-category.productivity",
"target": [
"dmg"
]
},
"win": {
"icon": "build/app.ico",
"target": [
"nsis"
]
},
"linux": {
"icon": "build/app.png",
"category": "Office",
"target": [
"AppImage"
]
}
}
}