-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "active-app-qmk-layer-updater",
"version": "1.0.2",
"description": "script that checks the current active app running in your OS, parses some customizable rules and sends the target layer index to a QMK keyboard over raw hid, so you can change layers programmatically",
"keywords": [
"QMK",
"QMK layer",
"Active app",
"OS",
"RAW HID",
"JSON",
"Node",
"Javascript",
"Conditions",
"Rules",
"Parser",
"Logic"
],
"repository": {
"type": "git",
"url": "[email protected]:zigotica/active-app-qmk-layer-updater"
},
"author": "Sergi Meseguer <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint ./ --ext .js"
},
"dependencies": {
"active-win-cli": "^2.0.0",
"json-based-conditions-and-rules-logic-evaluator": "^1.0.2",
"node-hid": "^2.1.1"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.4"
}
}