forked from geeeeeeeeek/electronic-wechat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.63 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
{
"name": "electron-wechat",
"productName": "electron-wechat",
"version": "2.9.9",
"description": "An Electron application for WeChat",
"main": "src/main.js",
"scripts": {
"start": "electron src/main.js",
"dist": "./scripts/tar-linux.sh",
"build": "./scripts/tar-linux.sh linux",
"build:osx": "electron-builder --x64 --mac --dir",
"build:linux": "electron-builder --x64 --linux --dir",
"build:win": "electron-builder --x64 --win nsis",
"build:osx64": "./scripts/build.sh darwin x64",
"build:linux64": "./scripts/build.sh linux x64",
"build:win64": ".\\scripts\\build-win32.bat win32 x64"
},
"build": {
"productName": "electron-wechat",
"appId": "com.electron.wechat",
"copyright": "MIT",
"compression": "normal",
"generateUpdatesFilesForAllChannels": true,
"directories": {
"output": "dist"
},
"win": {
"artifactName": "${name}-${os}.${ext}",
"target": [
"nsis",
"zip"
]
},
"linux": {
"icon": "assets/icon.png",
"depends": [
"GConf2",
"libnotify",
"libXtst",
"nss"
],
"packageCategory": "Applications/Internet",
"publish": [
"github"
],
"files": [
"**/*",
"!**/node_modules/.bin",
"!**/node_modules/*builder*/*",
"!**/node_modules/nodejieba/*",
"!**/*.md",
"!**/*.idea",
"!**/*.yml",
"!**/build/*",
"!**/scripts/*",
"!**/dist/*"
],
"asarUnpack": [
"./src/**/*",
"./package.json"
],
"target": [
"rpm",
"deb",
"tar.xz",
"tar.bz2"
]
},
"mac": {
"icon": "assets/icon.icns",
"publish": [
"github"
],
"artifactName": "${os}-osx.${ext}",
"target": [
"dmg",
"tar.gz",
"tar.xz",
"zip"
]
},
"publish": [
{
"provider": "generic",
"url": "https://github.com/kjx98/electronic-wechat/releases/"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/kjx98/electronic-wechat.git"
},
"keywords": [
"Electron",
"WeChat",
"微信",
"Web"
],
"author": "Jesse Kuang",
"license": "MIT",
"postinstall": "electron-builder install-app-deps",
"dependencies": {
"@xmpp/client": "^0.6.2",
"electron-localshortcut": "^3.1.0",
"fs-extra": "^7.0.1",
"tar": "^4.4.8",
"get": "^1.4.0",
"is-xfce": "^1.0.2",
"nconf": "^0.10.0",
"pinyin": "^2.8.0"
},
"devDependencies": {
"electron": "^4.0.0",
"electron-builder": "^20.38.5"
}
}