-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.41 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.41 KB
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
{
"name": "nohost",
"version": "0.0.5",
"description": "nohost的PC客户端,帮助PC用户设置nohost环境,安装后打开即可接入nohost",
"main": "main.js",
"scripts": {
"lint": "eslint *.js app/*.js app/lib",
"lintfix": "eslint --fix *.js app/*.js app/lib",
"start": "cross-env NODE_ENV=development electron ./app",
"pack:win": "electron-builder --win --x64",
"pack:mac": "electron-builder --mac",
"deps": "npm i --force && cd app && npm i --force"
},
"repository": {
"type": "git",
"url": "https://github.com/nohosts/client.git"
},
"keywords": [
"imweb",
"nohost",
"whistle"
],
"author": "imweb",
"license": "MIT",
"devDependencies": {
"babel-eslint": "10.0.3",
"cross-env": "^6.0.3",
"electron": "^7.1.4",
"electron-builder": "^22.2.0",
"eslint": "^5.3.0",
"eslint-config-imweb": "^0.2.19",
"rimraf": "^3.0.2"
},
"build": {
"appId": "nohost.client",
"asar": false,
"artifactName": "${productName}-v${version}-${os}-${arch}.${ext}",
"copyright": "IMWeb",
"compression": "normal",
"extends": null,
"publish": [
"github"
],
"mac": {
"icon": "app/assets/logo.png",
"target": "dmg"
},
"win": {
"icon": "app/assets/logo.png",
"target": "nsis"
},
"nsis": {
"oneClick": true,
"perMachine": true,
"runAfterFinish": true
}
}
}