-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.24 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
{
"name": "atomic_clock",
"version": "1.0.0",
"description": "",
"main": "main.js",
"homepage": "./",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"package": "electron-builder --win --x64",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "M.Abd",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"electron-as-wallpaper": "^1.0.8"
},
"devDependencies": {
"electron": "^37.2.3",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.abd.electronclockwidget",
"productName": "Atom's Clock",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"index.html",
"settings.html",
"preload.js",
"Anurati-Regular.otf",
"build/icon.ico",
"node_modules/**/*"
],
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Atom's Clock",
"uninstallDisplayName": "Atom's Clock",
"deleteAppDataOnUninstall": true
},
"asar": true
}
}