-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.89 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "elastos-launcher",
"version": "1.2.7",
"description": "ElastOS Personal Cloud - Desktop Launcher",
"main": "dist/main/index.js",
"author": {
"name": "Elacity Labs",
"email": "sash@ela.city"
},
"license": "AGPL-3.0",
"scripts": {
"dev": "electron .",
"build:ts": "tsc",
"build": "npm run build:ts && electron-builder",
"build:mac": "npm run build:ts && electron-builder --mac",
"build:win": "npm run build:ts && electron-builder --win",
"build:linux": "npm run build:ts && electron-builder --linux",
"build:all": "npm run build:ts && electron-builder --mac --win --linux"
},
"dependencies": {
"electron-log": "^5.0.0",
"electron-store": "^8.1.0",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"typescript": "^5.3.0"
},
"build": {
"appId": "com.elacity.personalcloud",
"productName": "ElastOS",
"directories": {
"output": "dist-electron",
"buildResources": "resources"
},
"files": [
"dist/**/*",
"src/renderer/**/*"
],
"mac": {
"category": "public.app-category.utilities",
"icon": "resources/icon.icns",
"target": [
"dmg",
"zip"
],
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "resources/entitlements.mac.plist",
"entitlementsInherit": "resources/entitlements.mac.plist",
"notarize": false
},
"win": {
"icon": "resources/icon.ico",
"target": [
"nsis",
"portable"
]
},
"linux": {
"icon": "resources/icon.png",
"target": [
"AppImage",
"deb"
],
"category": "Utility"
},
"afterAllArtifactBuild": "scripts/notarize.js",
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}