-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 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
{
"name": "menubar-brightness",
"description": "Change your brightness from the menubar",
"productName": "Menubar Brightness",
"version": "0.0.2",
"author": {
"name": "Lucas Bento",
"email": "[email protected]",
"url": "https://github.com/lucasbento"
},
"config": {
"forge": "./forge.config.js"
},
"dependencies": {
"auto-launch": "lucasbento/node-auto-launch",
"brightness": "^3.0.0",
"electron-compile": "^6.4.2",
"electron-debug": "^1.0.0",
"electron-osx-appearance": "^0.1.1",
"electron-settings": "^3.1.3",
"menubar": "^5.2.3",
"nouislider": "^10.1.0"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"devtron": "^1.1.0",
"electron-forge": "^4.1.2",
"electron-prebuilt-compile": "1.7.9",
"eslint": "^4.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-config-airbnb-base": "^12.1.0"
},
"files": [
"./src/**/*"
],
"keywords": [
"electron",
"electron-app",
"brightness",
"menubar",
"mac",
"macOS",
"osx"
],
"license": "MIT",
"main": "./src/main.js",
"bugs": {
"url": "https://github.com/lucasbento/menubar-brightness/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lucasbento/menubar-brightness"
},
"scripts": {
"lint": "eslint src",
"make": "electron-forge make",
"package": "electron-forge package --platform=darwin",
"start": "electron-forge start"
}
}