-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "gpumgr",
"version": "0.0.8-alpha",
"description":"gpumgr is a GPU manager for Linux allowing easy command line/web interface management of GPU power limits, clocks, fan speeds and more. gpumgr is multi-gpultural spiritual successor of amdpwrman.",
"author": {
"name": "Forbidden Era (Jai B.)",
"email": "jai@shaped.ca",
"url": "https://github.com/Shaped/"
},
"private":"true",
"repository":"github:Shaped/gpumgr",
"license": "GPL-3.0-or-later",
"readme": "README.md",
"homepage":"https://github.com/Shaped/gpumgr",
"bugs":"https://github.com/Shaped/gpumgr/issues",
"keywords": [
"amd", "amdgpu", "radeon",
"nvidia", "geforce", "rtx", "gtx",
"intel", "xe",
"gpu", "gpu management",
"linux", "fan", "fan control"
],
"main":"src/gpumgr.js",
"bin": {
"gpumgr": "src/gpumgr.js"
},
"pkg": {
"targets": [
"node10-linux-x64"
],
"outputPath": "bin"
},
"scripts": {
"build": "./build.sh",
"build-release": "./build.sh release"
},
"dependencies": {
"xml2json": "^0.12.0"
},
"engines": {
"node": ">= 10.7.0",
"npm": ">= 6.0.0"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
]
}