-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "homebridge-hunter-hydrawise",
"displayName": "Homebridge Hunter Hydrawise",
"version": "1.1.2",
"description": "HomeKit integration for Hunter Hydrawise Irrigation Controllers.",
"license": "ISC",
"author": {
"name": "HJD",
"url": "https://github.com/hjdhjd"
},
"homepage": "https://github.com/hjdhjd/homebridge-hunter-hydrawise#readme",
"repository": {
"type": "git",
"url": "git://github.com/hjdhjd/homebridge-hunter-hydrawise.git"
},
"bugs": {
"url": "https://github.com/hjdhjd/homebridge-hunter-hydrawise/issues"
},
"type": "module",
"engines": {
"node": ">=18.0",
"homebridge": ">=1.8.0"
},
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run clean && npm run build-ui",
"build": "tsc",
"build-ui": "shx mkdir -p homebridge-ui/public/lib && shx cp \"node_modules/homebridge-plugin-utils/dist/ui/**/*.@(js|mjs){,.map}\" homebridge-ui/public/lib",
"clean": "shx rm -rf dist homebridge-ui/public/lib",
"prelint": "npm run build-ui",
"lint": "eslint --max-warnings=${ESLINT_MAX_WARNINGS:-\"-1\"} eslint.config.mjs src/**.ts homebridge-ui/*.js homebridge-ui/public/**/*.mjs",
"postpublish": "npm run clean",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"garden",
"homebridge",
"homebridge-plugin",
"hunter",
"hydrawise",
"irrigation",
"irrigation controller",
"irrigation system",
"lawn",
"sprinkler",
"water"
],
"devDependencies": {
"@stylistic/eslint-plugin": "^2.3.0",
"@types/node": "^20.14.11",
"eslint": "^8.5.7",
"homebridge": "^1.8.4",
"shx": "^0.3.4",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
},
"dependencies": {
"@adobe/fetch": "^4.1.8",
"@homebridge/plugin-ui-utils": "^1.0.3",
"homebridge-plugin-utils": "^1.6.1"
}
}