-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
76 lines (76 loc) · 1.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
{
"name": "dature",
"version": "1.1.2",
"description": "新浪博客备份工具",
"main": "main.js",
"bin": {
"dature": "cli.js"
},
"dependencies": {
"cheerio": "^0.22.0",
"iconv-lite": "^0.4.21",
"is-url": "^1.2.2",
"mkdirp": "^0.5.1",
"yargs": "^11.0.0"
},
"devDependencies": {
"electron": "^19.0.2",
"electron-builder": "^23.0.3",
"pkg": "^5.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junyiz/dature.git"
},
"bugs": {
"url": "https://github.com/junyiz/dature/issues"
},
"homepage": "https://github.com/junyiz/dature#readme",
"scripts": {
"start": "electron .",
"build": "pkg .",
"build:macos": "pkg . -t node12-macos-x64 -o ./dist/dature-macos -d",
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "npm run dist:mac && npm run dist:win",
"dist:mac": "electron-builder --mac --x64",
"dist:win": "electron-builder --win --x64"
},
"keywords": [
"data",
"fetch",
"capture",
"sina",
"blog"
],
"files": [
"tpl",
"lib",
"index.js"
],
"pkg": {
"assets": [
"tpl/**/*"
],
"targets": [
"node12-win-x64"
],
"outputPath": "dist"
},
"build": {
"appId": "cn.dature.app",
"mac": {
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis",
"zip"
]
}
},
"author": "Junyi Zhang <junyime@qq.com>",
"license": "MIT"
}