-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
{
"name": "homebridge-elero-stick",
"version": "1.5.1-0",
"displayName": "Elero Remote Control",
"description": "Elero funkstick for homebridge: https://github.com/ma-ku/homebridge-elero-stick",
"main": "dist/elero-stick-platform.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"watch": "npm run build && npm link && nodemon",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Mathias Kühn <[email protected]>",
"homepage": "https://github.com/ma-ku/homebridge-elero-stick#readme",
"engines": {
"homebridge": ">=1.0.0",
"node": ">=20.0.0"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"home-automation",
"elero",
"weinor",
"roltop",
"suntop"
],
"license": "MIT",
"files": [
"config.schema.json",
"LICENSE",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ma-ku/homebridge-elero-stick.git"
},
"bugs": {
"url": "https://github.com/ma-ku/homebridge-elero-stick/issues"
},
"devDependencies": {
"@types/node": "^18.15.0",
"@types/serialport": "^8.0.5",
"homebridge": "^1.5.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.2"
},
"dependencies": {
"serialport": "^12.0.0"
}
}