mirror of
https://github.com/KevinMidboe/homebridge-examples.git
synced 2025-10-29 17:40:26 +00:00
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"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 <mail@anderl-bauer.de>",
|
|
"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": "http://github.com/homebridge/homebridge-examples/issues"
|
|
},
|
|
"dependencies": {
|
|
"ip": "^1.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "10.17.19",
|
|
"@types/ip": "^1.1.0",
|
|
"typescript": "^3.8.3",
|
|
"rimraf": "^3.0.2",
|
|
"homebridge": "^0.4.54-beta.51"
|
|
}
|
|
}
|