-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
63
64
65
{
"name": "homebridge-hue-daylight-sync",
"displayName": "Hue Daylight Sync",
"version": "1.4.0",
"description": "A Homebridge plugin for syncing Hue lights with daylight",
"main": "dist/index.js",
"configSchema": "config.schema.json",
"private": false,
"author": "Josh Bello",
"license": "Apache-2.0",
"homepage": "https://github.com/JoshBello/homebridge-hue-daylight-sync#readme",
"repository": {
"type": "git",
"url": "https://github.com/JoshBello/homebridge-hue-daylight-sync.git"
},
"bugs": {
"url": "https://github.com/JoshBello/homebridge-hue-daylight-sync/issues"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"hue",
"daylight",
"sync"
],
"engines": {
"node": "^18.20.4 || ^20.10.0 || ^20.16.0 || ^22.6.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint src --max-warnings=0",
"prepublishOnly": "npm run lint && npm run build",
"watch": "npm run build && npm link && nodemon"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.2.0",
"@types/suncalc": "^1.9.2",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"eslint": "^9.12.0",
"homebridge": "^2.0.0-beta.0",
"nodemon": "^3.1.4",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"dependencies": {
"@homebridge/plugin-ui-utils": "^1.0.3",
"axios": "^1.7.7",
"https": "^1.0.0",
"suncalc": "^1.9.0"
},
"files": [
"LICENSE",
"dist",
"config.schema.json",
"package.json",
"README.md",
"homebridge-ui"
]
}