-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 1.57 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
{
"name": "snwe",
"version": "0.1.0-rc.2",
"license": "MIT",
"description": "Extensible, customisable, menubar replacement for macOS/UNIX.",
"keywords": "electron menubar",
"author": {
"name": "blahsd",
"email": "blahsd101@gmail.com"
},
"homepage": "https://github.com/blahsd/snwe",
"repository": {
"type": "git",
"url": "https://github.com/blahsd/snwe.git"
},
"bugs": {
"url": "https://github.com/blahsd/snwe/issues",
"email": "blahsd101@gmail.com"
},
"main": "./main.js",
"scripts": {
"start": "electron .",
"test": "mocha",
"dist": "electron-packager . --derefSymlinks=false --overwrite --out='./dist'"
},
"build": {
"appId": "com.blahsd.snwe",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "squirrel",
"icon": "build/icon.ico"
}
},
"dependencies": {
"battery-level": "^3.0.0",
"browser-battery": "^2.0.0",
"dateformat": "^3.0.3",
"electron-json-config": "^1.5.1",
"electron-store": "^1.3.0",
"is-charging": "^1.2.0",
"jquery": "^3.3.1",
"loudness": "^0.2.2",
"mpc-js": "^1.2.1",
"node-mpd": "0.0.2",
"node-wifi": "^2.0.4",
"npm": "^6.1.0"
},
"devDependencies": {
"electron": "latest",
"electron-prebuilt": "^1.4.13",
"mocha": "^5.2.0",
"mpd": "^1.3.0"
}
}