-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"displayName": "Homebridge Key Lights",
"name": "homebridge-keylights",
"version": "1.3.3",
"description": "A Homebridge plugin for Elgato Key Light and Key Light Air",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/derjayjay/homebridge-keylights.git"
},
"bugs": {
"url": "https://github.com/derjayjay/homebridge-keylights/issues"
},
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"elgato",
"keylight",
"key lights",
"key light air",
"streaming",
"keylight air"
],
"dependencies": {
"axios": "^1.13.2",
"bonjour-service": "^1.3.0",
"homebridge-lib": "^8.0.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^24.0.0",
"eslint": "^10.4.1",
"homebridge": "^1.11.1",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
}
}