-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 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": "mydevhub",
"version": "1.0.3",
"description": "Your command center for managing development projects. Organize, track, and launch your projects with ease.",
"author": "LevrikM",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:win": "electron-builder --win",
"publish": "electron-builder --publish=always"
},
"build": {
"appId": "com.mydevhub.app",
"productName": "myDevHub",
"directories": {
"output": "final-build"
},
"win": {
"target": "nsis",
"publisherName": "LevrikM",
"requestedExecutionLevel": "asInvoker",
"icon": "assets/icon.ico",
"verifyUpdateCodeSignature": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true,
"createDesktopShortcut": true,
"perMachine": false,
"runAfterFinish": true,
"createStartMenuShortcut": true,
"shortcutName": "myDevHub",
"artifactName": "myDevHub-Setup-${version}.${ext}",
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"installerHeaderIcon": "assets/icon.ico"
},
"publish": {
"provider": "github",
"owner": "LevrikM",
"repo": "mydevhub-dev"
}
},
"dependencies": {
"cross-spawn": "^7.0.6",
"electron-store": "^8.1.0",
"fix-path": "^3.0.0",
"kill-port": "^2.0.1",
"simple-git": "^3.30.0",
"electron-updater": "^6.1.7"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
}
}