-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.36 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
{
"name": "homebridge-tidbyt",
"displayName": "Tidbyt",
"version": "0.7.1",
"description": "Homebridge plugin that adds support for Tidbyt devices.",
"license": "Apache-2.0",
"author": {
"name": "Nicholas Penree",
"email": "nick@penree.com",
"url": "https://www.penree.com"
},
"repository": {
"type": "git",
"url": "git://github.com/drudge/homebridge-tidbyt.git"
},
"bugs": {
"url": "https://github.com/drudge/homebridge-tidbyt/issues"
},
"engines": {
"node": ">=14.0.0",
"homebridge": ">=1.3.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"HomeKit",
"homebridge-tidbyt",
"tidbyt",
"display",
"rgb",
"matrix",
"pixlet"
],
"dependencies": {
"bottleneck": "^2.19.5",
"got": "^11.8.3",
"node-schedule": "^2.1.0",
"once": "^1.4.0",
"tidbyt": "^1.0.0",
"which": "^2.0.2"
},
"devDependencies": {
"@types/node": "^14.18.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"homebridge": "^1.3.8",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}