-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
109 lines (109 loc) · 3.5 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
{
"displayName": "Homebridge Eufy Security",
"name": "homebridge-eufy-security",
"version": "4.3.0",
"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/homebridge-eufy-security"
}
],
"bugs": {
"url": "https://github.com/homebridge-eufy-security/plugin/issues"
},
"engines": {
"node": "20.10.0||^20",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/** --max-warnings=0",
"lint-fix": "eslint src/** --max-warnings=0 --fix",
"watch": "npm run build && npm link && nodemon",
"build": "npm run build-plugin && npm run postbuild && 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",
"postbuild": "cp -r ./media ./dist/media",
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/plugin/version.ts",
"serve-configui": "ng serve",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"Eufy",
"Eufy Security",
"doorbell",
"eufy doorbell",
"security-system",
"camera"
],
"dependencies": {
"@bropat/fluent-ffmpeg": "^2.1.3",
"@homebridge/camera-utils": "^2.2.6",
"@homebridge/plugin-ui-utils": "^1.0.3",
"eufy-security-client": "^3.1.1",
"ffmpeg-for-homebridge": "2.1.1",
"fs-extra": "^11.2.0",
"rotating-file-stream": "^3.2.5",
"semver": "^7.6.3",
"tslog": "^4.9.3",
"zip-lib": "^1.0.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~18.2.6",
"@angular-eslint/builder": "18.3.1",
"@angular-eslint/eslint-plugin": "18.3.1",
"@angular-eslint/eslint-plugin-template": "18.3.1",
"@angular-eslint/schematics": "18.3.1",
"@angular-eslint/template-parser": "18.3.1",
"@angular/cli": "~18.2.6",
"@angular/common": "~18.2.6",
"@angular/compiler": "~18.2.6",
"@angular/compiler-cli": "~18.2.6",
"@angular/core": "~18.2.6",
"@angular/forms": "~18.2.6",
"@angular/localize": "~18.2.6",
"@angular/platform-browser": "~18.2.6",
"@angular/platform-browser-dynamic": "~18.2.6",
"@angular/router": "~18.2.6",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@ng-bootstrap/ng-bootstrap": "^17.0.1",
"@popperjs/core": "^2.11.8",
"@types/jasmine": "~5.1.4",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"bootstrap": "^5.3.3",
"eslint": "^9.11.1",
"homebridge": "^1.8.4",
"jasmine-core": "~5.3.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lucide-angular": "^0.446.0",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"rxjs": "~7.8.1",
"typescript": "^5.4.5",
"zone.js": "~0.14.10"
},
"overrides": {
"autoprefixer": "^10.4.5"
},
"eslintConfig": {
"rules": {
"ban-ts-comment": 0
}
},
"homepage": "https://github.com/homebridge-eufy-security/plugin/wiki",
"author": "homebridge-eufy-security"
}