-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
96 lines (96 loc) · 2.31 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
{
"name": "pixiv-omina",
"productName": "Pixiv Omina",
"version": "0.9.1",
"license": "MPL-2.0",
"homepage": "https://github.com/leoding86/pixiv-omina",
"checkUpdateUrl": "https://raw.githubusercontent.com/leoding86/pixiv-omina/master/package.json",
"bugs": {
"url": "https://github.com/leoding86/pixiv-omina/issues"
},
"scripts": {
"postinstall": "install-app-deps",
"dev": "electron-webpack dev --dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"pack": "electron-builder --dir"
},
"dependencies": {
"element-ui": "^2.12.0",
"fs-extra": "^8.1.0",
"gif-encoder": "^0.7.2",
"jimp": "^0.8.5",
"jszip": "^3.2.2",
"md5": "^2.3.0",
"mime-types": "^2.1.25",
"moment": "^2.28.0",
"node-html-parser": "^2.0.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.12",
"sqlite3": "^5.0.0",
"uuid": "^8.3.2",
"vue": "^2.6.10",
"vue-i18n": "^8.15.3",
"vue-virtual-scroller": "^1.0.0-rc.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.0",
"electron": "^6.1.5",
"electron-builder": "^21.0.11",
"electron-webpack": "^2.7.4",
"electron-webpack-vue": "^2.3.0",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"webpack": "~4.35.3"
},
"build": {
"appId": "pixiv_omina.leo",
"directories": {
"buildResources": "build"
},
"extraResources": [
"./static/**"
],
"extraFiles": [
"./LICENSE.txt",
"./LICENSE-3RD-PARTY.txt"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"ia32"
]
}
],
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"license": "LICENSE.txt"
},
"mac": {
"target": "dmg",
"icon": "build/icon.icns",
"extendInfo": {
"NSRequiresAquaSystemAppearance": false
}
},
"protocols": {
"name": "pixiv-omina-protocal",
"schemes": [
"pixiv-omina"
]
}
},
"electronWebpack": {
"main": {
"webpackConfig": "webpack.main.additions.js"
}
}
}