forked from homebridge/homebridge-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "homebridge-bridged-camera-example",
"version": "1.0.0",
"description": "An example dynamic platform plugin exposing cameras behind a bridge for homebridge written in Typescript",
"main": "dist/dynamic-camera-platform.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Andreas Bauer <[email protected]>",
"engines": {
"homebridge": ">=1.0.0"
},
"keywords": [
"homebridge-plugin"
],
"license": "ISC",
"files": [
"LICENSE",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/homebridge/homebridge-examples.git"
},
"bugs": {
"url": "https://github.com/homebridge/homebridge-examples/issues"
},
"dependencies": {
"ip": "^1.1.8"
},
"devDependencies": {
"@types/node": "16.11.7",
"@types/ip": "^1.1.0",
"typescript": "^5.0.4",
"rimraf": "^5.0.0",
"homebridge": "^1.6.1"
}
}