-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.01 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
{
"name": "SealTalk",
"productName": "SealTalk",
"version": "1.0.2",
"description": "SealTalk Desktop application.",
"main": "main.js",
"author": "RongCloud",
"license": "MIT",
"package": {
"runtime": "electron",
"runtimeVersion": "1.1.3"
},
"scripts": {
"start": "electron main.js --enable-logging",
"package:mac": "gulp build -p mac && bash codesign.bash",
"installer:mac": "rm -rf ./dist/osx/SealTalk.dmg && electron-builder \"build/SealTalk-darwin-x64/SealTalk.app\" --platform=osx --out=\"dist/osx\" --config=builder.json --overwrite",
"package:win": "gulp build -p win32",
"installer:win": "gulp createWindowsInstaller -p win32",
"clean": "rm -rf ./dist",
"zip": "cd build/SealTalk-darwin-x64/ && zip -r SealTalk-1.0.2-darwin-x64.zip SealTalk.app ",
"codesign": "bash codesign.bash",
"release:mac": "npm run package:mac && npm run zip && npm run installer:mac",
"release:win": "npm run package:win && npm run installer:win"
},
"packageNameTemplate": "{{name}}-v{{version}}-{{platform}}-{{arch}}",
"repository": {
"type": "git",
"url": "https://github.com/sealtalk/sealtalk-desktop.git"
},
"keywords": [
"SealTalk",
"RongCloud",
"IM"
],
"bugs": {
"url": "https://github.com/sealtalk/sealtalk-desktop/issues"
},
"homepage": "https://github.com/sealtalk/sealtalk-desktop#readme",
"devDependencies": {
"electron-builder": "^2.6.0",
"electron-packager": "^7.0.2",
"electron-rebuild": "^1.1.5",
"electron-winstaller": "^2.0.5",
"fs-extra": "^0.26.5",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^1.0.0",
"grunt-electron-installer": "^1.2.2",
"gulp-clean": "^0.3.1",
"gulp-sequence": "^0.4.1",
"gulp-zip": "^3.2.0",
"path": "^0.12.7",
"yargs": "^3.30.0"
},
"dependencies": {
"electron-prebuilt": "^1.1.3",
"electron-squirrel-startup": "^0.1.4",
"i18n": "^0.5.0",
"jsonfile": "^2.2.3",
"log4js": "^0.6.36",
"nodobjc": "^2.1.0",
"electron-prebuilt": "<=1.1.3"
}
}