forked from homebridge-eufy-security/plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"displayName": "Homebridge Eufy Security",
"name": "homebridge-eufy-security",
"version": "2.1.4",
"description": "Control Eufy Security from homebridge.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/homebridge-eufy-security/plugin.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/lenoxys"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/thieren"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/samemory"
}
],
"bugs": {
"url": "https://github.com/homebridge-eufy-security/plugin/issues"
},
"engines": {
"node": ">=14.17.0",
"homebridge": ">=1.4.1"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/** --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "npm run build-plugin && npm run build-configui",
"build-plugin": "rimraf ./dist && tsc --project tsconfig.plugin.json",
"build-configui": "rimraf ./homebridge-ui && ng build --base-href /api/plugins/settings-ui/homebridge-eufy-security/ && tsc --project tsconfig.configui.server.json",
"serve-configui": "ng serve",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"Eufy",
"Eufy Security",
"doorbell",
"eufy doorbell",
"security-system"
],
"dependencies": {
"@homebridge/plugin-ui-utils": "^0.0.19",
"bunyan": "^1.8.15",
"bunyan-debug-stream": "^2.0.1",
"eufy-security-client": "2.4.0",
"ffmpeg-for-homebridge": "0.1.4",
"http": "^0.0.1-security",
"pick-port": "^1.0.1",
"rotating-file-stream": "^3.0.4",
"tslog": "^3.3.4",
"zip-lib": "^0.7.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.8",
"@angular/animations": "~13.3.0",
"@angular/cli": "~13.3.8",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/compiler-cli": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/localize": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"@fortawesome/angular-fontawesome": "^0.10.2",
"@fortawesome/fontawesome-svg-core": "^6.1.0",
"@fortawesome/free-brands-svg-icons": "^6.1.0",
"@fortawesome/free-regular-svg-icons": "^6.1.0",
"@fortawesome/free-solid-svg-icons": "^6.1.0",
"@ng-bootstrap/ng-bootstrap": "^12.1.2",
"@popperjs/core": "^2.10.2",
"@types/bunyan": "^1.8.8",
"@types/jasmine": "~3.10.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"bootstrap": "^5.1.3",
"eslint": "^8.18.0",
"homebridge": "^1.3.9",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"nodemon": "^2.0.16",
"rimraf": "^3.0.2",
"rxjs": "~7.5.0",
"ts-node": "^10.8.1",
"tslib": "^2.3.0",
"typescript": "~4.6.2",
"zone.js": "~0.11.4"
},
"overrides": {
"autoprefixer": "^10.4.5"
},
"eslintConfig": {
"rules": {
"ban-ts-comment": 0
}
},
"homepage": "https://github.com/homebridge-eufy-security/plugin/wiki",
"author": "homebridge-eufy-security"
}