-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (59 loc) · 1.85 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
{
"name": "irrigationsystem",
"displayName": "Irrigation System",
"type": "module",
"version": "0.0.1-alpha.2",
"description": "HomeKit irrigation system using HAP-NodeJS library",
"author": "n0rt0nthec4t",
"license": "Apache-2.0",
"homepage": "https://github.com/n0rt0nthec4t/irrigationsystem/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/n0rt0nthec4t/irrigationsystem.git"
},
"bugs": {
"url": "https://github.com/n0rt0nthec4t/irrigationsystem/issues"
},
"funding": "https://github.com/n0rt0nthec4t/irrigationsystem?sponsor=1",
"keywords": [
"homekit",
"irrigation",
"watering"
],
"main": "dist/index.js",
"engines": {
"node": "^20.17.0 || ^22.9.0",
"hap-nodejs": "^1.1.0"
},
"files": [
"LICENSE",
"dist/**/*",
"usonic_measure.c",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "rimraf ./dist*",
"format": "prettier --write src/*.js src/**/*.js",
"lint": "eslint src/*.js src/**/*.js --max-warnings=20",
"watch": "npm run build && npm link && nodemon",
"build": "npm run clean && copyfiles -u 1 src/*.js dist && copyfiles -u 2 src/HomeKitDevice/*.js dist && copyfiles -u 2 src/HomeKitHistory/*.js dist",
"prepublishOnly": "npm run lint && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/node": "^22.7.5",
"@typescript-eslint/parser": "^8.9.0",
"copyfiles": "^2.4.1",
"eslint": "^9.12.0",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"rimraf": "^6.0.1"
},
"dependencies": {
"hap-nodejs": "^1.1.0",
"chalk": "^5.3.0",
"rpio" : "^2.4.2"
}
}