-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 911 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 911 Bytes
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
{
"name": "codehub",
"version": "1.0.0",
"description": "Multi-tool message dispatch desktop app",
"license": "MIT",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"test": "node --test test/*.test.js",
"build": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux"
},
"build": {
"appId": "com.codehub.app",
"productName": "CodeHub",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"package.json"
],
"mac": {
"target": "dmg",
"icon": "build/icon.icns"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"linux": {
"target": "AppImage",
"icon": "build/icon.png"
}
},
"devDependencies": {
"electron": "^35.0.0",
"electron-builder": "^26.15.3"
}
}