-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "homebridge-abode-lights",
"version": "2.0.2",
"description": "Homebridge plugin for integrating Abode Switches and Dimmers into HomeKit.",
"author": "Chris Smith",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts src/devices/**/**.ts src/utils/**.ts --max-warnings=0",
"eslint:github-action": "eslint src/",
"build": "rm -rf dist && tsc",
"watch": "npm run build && npm link && nodemon"
},
"engines": {
"node": ">=18.0.0",
"homebridge": ">=1.0.0"
},
"keywords": [
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chrisbsmith/homebridge-abode-lights.git"
},
"bugs": {
"url": "https://github.com/chrisbsmith/homebridge-abode-lights/issues"
},
"devDependencies": {
"@types/node": "22.7.1",
"@types/uuid": "10.0.0",
"@types/ws": "8.5.12",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"eslint": "8.57.0",
"homebridge": "1.8.4",
"typescript": "5.6.2"
},
"dependencies": {
"@types/lodash": "4.17.9",
"axios": "1.7.7",
"color-convert": "2.0.1",
"kelvin-to-rgb": "1.0.2",
"lodash": "4.17.21",
"uuid": "10.0.0",
"ws": "8.18.0"
}
}