forked from daskeyboard/daskeyboard-applet--cpu-usage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "daskeyboard-applet--cpu-usage",
"displayName": "CPU Usage",
"version": "2.0.0",
"description": "Displays CPU usage.",
"longDescription": "Keep an eye on the CPU activity on your Q keyboard!",
"officialProductName": "CPU Usage",
"appUrl": "",
"isSingleton": true,
"videoUrl": "",
"icon": "assets/icon.png",
"image": "assets/q-cpu-usage.png",
"publisher": "Das Keyboard",
"authorName": "Das Keyboard",
"authorUrl": "https://twitter.com/daskeyboard",
"issuesUrl": "https://github.com/daskeyboard/daskeyboard-applet--cpu-monitor/issues",
"homePageUrl": "https://github.com/daskeyboard/daskeyboard-applet--cpu-monitor",
"developerRepoUrl": "https://github.com/daskeyboard/daskeyboard-applet--cpu-monitor",
"licenseUrl": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt",
"changelogUrl": "CHANGELOG.md",
"license": "MIT",
"readMeUrl": "README.md",
"readMeEndUserUrl": "README_ENDUSER.md",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha"
},
"engines": {
"das-keyboard-q": "3.0.0"
},
"dependencies": {
"daskeyboard-applet": "^2.7.12",
"mocha": "^5.2.0",
"os-utils": "^0.0.14",
"request": "^2.88.0"
},
"qConfig": {
"geometry": {
"width": 10,
"height": 1,
"defaults": {
"origin": {
"x": 0,
"y": 1
}
}
},
"questions": [{
"key": "defaultColor",
"label": "Choose the color of empty keys",
"help": "Keys that represent the current CPU usage will be lit up all others will be set to this color.",
"required": true,
"order": 1,
"value": "#000000",
"controlType": "color"
}],
"applet": {
"defaults": {}
}
}
}