-
Notifications
You must be signed in to change notification settings - Fork 285
/
package.json
75 lines (75 loc) · 1.87 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
{
"name": "blog-helper",
"version": "1.0.30",
"description": "",
"productName": "BlogHelper",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dist": "rm -rf ./dist && electron-builder",
"ico": "png-to-ico build/app.png > build/app.ico",
"mirror": "npm config set registry https://mirrors.huaweicloud.com/repository/npm/ && npm config set electron_mirror https://mirrors.huaweicloud.com/electron/ && npm config set electron_builder_binaries_mirror https://mirrors.huaweicloud.com/electron-builder-binaries/"
},
"keywords": [
"pc",
"util"
],
"author": "Github@onblog <[email protected]>",
"repository": "https://github.com/onblog/BlogHelper",
"license": "GPL-3.0-only",
"devDependencies": {
"electron": "11.5.0",
"electron-builder": "^22.1.0",
"png-to-ico": "^2.1.0"
},
"dependencies": {
"axios": "^0.24.0",
"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.3",
"marked": "^0.8.0",
"mime-types": "^2.1.27",
"node-fetch": "2",
"path": "^0.12.7",
"picgo": "^1.4.12",
"querystring": "^0.2.0",
"request": "^2.88.0",
"urlencode": "^1.1.0"
},
"build": {
"appId": "com.github.onblog.bloghelper",
"productName": "写作助手",
"mac": {
"icon": "build/app.icns",
"type": "development",
"category": "public.app-category.productivity",
"target": {
"target": "dmg",
"arch": [
"x64"
]
}
},
"win": {
"icon": "build/app.ico",
"target": [
"nsis"
]
},
"linux": {
"icon": "build/app.png",
"category": "Office",
"target": {
"target": "AppImage",
"arch": [
"x64"
]
}
}
}
}