This repository was archived by the owner on Sep 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.26 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.26 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "daskeyboardqkeystate",
"authorName": "Eric Haughee",
"authorUrl": "https://github.com/ehaughee",
"issuesUrl": "https://github.com/ehaughee/daskeyboardqkeystate/issues",
"homePageUrl": "https://github.com/ehaughee",
"licenseUrl": "https://opensource.org/licenses/MIT",
"changelogUrl": "CHANGELOG.md",
"readMeUrl": "README.md",
"readMeEndUserUrl": "README.md",
"displayName": "Key State",
"publisher": "Eric Haughee",
"version": "1.0.0",
"description": "Key State Monitor",
"developerRepoUrl": "https://github.com/ehaughee/daskeyboardqkeystate",
"icon": "assets/icon.png",
"isSingleton": false,
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"control-modifier-keys": "^1.0.3",
"daskeyboard-applet": "^2.11.4"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0"
},
"qConfig": {
"geometry": {
"width": 1,
"height": 1,
"defaults": {
"origin": {
"x": 0,
"y": 0
}
}
},
"questions": [
{
"key": "key",
"label": "Key",
"placeholder": "Select a key to monitor",
"help": "Select the key whose toggle status you would like to monitor.",
"required": true,
"controlType": "dropdown",
"dynamic": true
},
{
"key": "colorOn",
"label": "Color When On",
"required": true,
"value": "#FF0000",
"controlType": "color"
},
{
"key": "colorOff",
"label": "Color When Off",
"required": true,
"value": "#00FF00",
"controlType": "color"
},
{
"key": "pollingInterval",
"label": "Polling Interval (milliseconds)",
"help": "How often the applet will check the status of the configured key. Lower means quicker color changes in response to ket status changes but also more CPU usage. The default is 1000ms or 1 second.",
"placeholder": "1000",
"controlType": "textbox"
}
]
},
"engines": {
"das-keyboard-q": "3.0.0"
}
}