-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
83 lines (83 loc) · 2.01 KB
/
package.json
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
77
78
79
80
81
82
83
{
"name": "pliim",
"version": "1.7.0",
"description": "One click to hide desktop icons, turn off notifications and hide active apps",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"watch": "webpack --progress --colors --watch",
"pack": "webpack && build --dir",
"dist": "webpack && build",
"postinstall": "electron-builder install-app-deps",
"package-mac": "webpack && electron-packager . Pliim --overwrite --platform=darwin --arch=x64 --icon=./build/icon.icns --prune=true --out=release-builds"
},
"repository": "https://github.com/zehfernandes/pliim",
"keywords": [
"Electron",
"presentation",
"notifications",
"hide"
],
"author": "Zeh Fernandes",
"build": {
"productName": "Pliim",
"asar": false,
"files": [
"**/*",
"!media${/*}"
],
"appId": "com.zehfernandes.pliim",
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip",
"mas"
],
"publish": [
"github"
]
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
}
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"electron": "^3.0.10",
"electron-builder": "^20.40.2",
"electron-packager": "^12.2.0",
"webpack-cli": "^3.3.1"
},
"dependencies": {
"auto-launch": "^5.0.3",
"babel-core": "^6.22.1",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"decko": "^1.2.0",
"electron-store": "^1.3.0",
"is-online": "^8.2.0",
"menubar": "^5.2.3",
"node-gyp": "^4.0.0",
"node-osascript": "^2.1.0",
"preact": "^8.4.1",
"preact-compat": "^3.18.4",
"util.promisify": "^1.0.0",
"webpack": "^4.30.0"
}
}