-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.47 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
{
"name": "electron-statusbar",
"version": "1.0.0",
"description": "A web-based desktop status bar created with Electron.",
"main": "main.js",
"scripts": {
"dev": "export DEV=true; gulp serve",
"app-debug": "export DEBUG=true; export DEV=true; gulp serve",
"build": "electron-packager . webbar --platform=linux --arch=x64 --ignore=experiments --ignore='node_modules/(electron-packager|electron-prebuilt|standard|publish-release)' --version-string.CompanyName=zz85 --version-string.ProductName=webbar --icon=Icon.icns --out=build --overwrite",
"run-linux": "npm run-script build; ./build/webbar-linux-x64/webbar --enable-transparent-visuals --disable-gpu"
},
"directories": {
"example": "examples",
"test": "tests"
},
"dependencies": {
"dbus-native": "latest",
"ejs": "^2.6.1",
"electron": "^3.0.10",
"electron-connect": "^0.6.3",
"electron-positioner": "^4.1.0",
"randomstring": "^1.1.5",
"x11": "^2.3.0"
},
"devDependencies": {
"electron-packager": "^12.2.0",
"electron-rebuild": "^1.8.2",
"gulp": "^3.9.1",
"gulp-jasmine": "^4.0.0",
"gulp-sass": "^4.0.2",
"jasmine": "^3.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexandreBrach/electron-statusbar.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlexandreBrach/electron-statusbar/issues"
},
"homepage": "https://github.com/AlexandreBrach/electron-statusbar#readme"
}