-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.22 KB
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
{
"private": false,
"displayName": "EufySecurityHomebridgePlugin",
"name": "homebridge-plugin-eufy-security",
"version": "0.1.8",
"description": "Eufy Security homebridge plugin for video doorbell.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/birkir/homebridge-plugin-eufy-security.git"
},
"bugs": {
"url": "https://github.com/birkir/homebridge-plugin-eufy-security/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"homebridge-plugin",
"eufy"
],
"dependencies": {
"@homebridge/camera-utils": "^1.3.0",
"eufy-node-client": "^0.5.0",
"fs": "^0.0.1-security",
"ip": "^1.1.5"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.13.0",
"homebridge": "^1.2.3",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}