-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (51 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (51 loc) · 1.16 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
{
"name": "insomnia-app",
"version": "1.4.3",
"description": "Keep your PC awake when it matters",
"main": "main.js",
"author": "Stanley Projects",
"scripts": {
"start": "unset ELECTRON_RUN_AS_NODE && electron .",
"build": "electron-builder --win"
},
"dependencies": {},
"devDependencies": {
"electron": "^40.0.0",
"electron-builder": "^26.0.0"
},
"build": {
"appId": "com.stanleyprojects.insomnia",
"productName": "Insomnia",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"renderer.js",
"index.html",
"styles.css",
"agent-hook.js",
"assets/tray-active.png",
"assets/tray-inactive.png",
"assets/icon.png",
"assets/icon.ico"
],
"asarUnpack": [
"agent-hook.js"
],
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Insomnia",
"include": "build/installer.nsh"
}
}
}