-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.39 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
56
57
{
"name": "boostchanger",
"version": "5.2.0",
"description": "With this app you can control CPU turbo boost and the settings of the cpu speed in order to consuming less battery voltage.",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder -l",
"release": "electron-builder -l -p 'onTagOrDraft'",
"check": "npm outdated",
"updateAll": "npm install systeminformation@latest ; npm install electron-window-state@latest ; npm install electron-updater@latest ; npm install electron-builder@latest ; npm install electron@latest"
},
"build": {
"linux": {
"target": [
"AppImage",
"zip",
"pacman",
"deb",
"snap",
"tar.xz"
],
"icon": "build/icon.png",
"category": "Settings",
"maintainer": "nbebaw",
"publish": {
"provider": "github"
}
}
},
"repository": "https://github.com/nbebaw/boostChanger.git",
"keywords": [
"Electron",
"cpu",
"settings",
"manager",
"turbo",
"boost",
"changer",
"system",
"battery",
"save",
"linux",
"kernel"
],
"author": "nbebaw",
"license": "MIT",
"devDependencies": {
"electron": "^40.8.0",
"electron-builder": "^26.8.1"
},
"dependencies": {
"electron-updater": "^6.8.3",
"electron-window-state": "^5.0.3",
"systeminformation": "^5.31.3"
}
}