-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.25 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
{
"name": "homebridge-onvif-camera",
"displayName": "Homebridge ONVIF Camera",
"version": "0.0.5-alpha.3",
"description": "Camera support for homebridge with ONVIF protocol.",
"license": "Apache-2.0",
"author": "ronazst",
"type": "module",
"main": "dist/plugin/index.js",
"files": [
"dist",
"config.schema.json"
],
"funding": [
{
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/ronazst"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/ronazst/homebridge-onvif-camera.git"
},
"bugs": {
"url": "https://github.com/ronazst/homebridge-onvif-camera/issues"
},
"engines": {
"node": "^18.20.4 || ^20.17.0 || ^22.8.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint"
},
"keywords": [
"homebridge-plugin",
"camera",
"ONVIF"
],
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@homebridge/plugin-ui-utils": "^1.0.3",
"onvif": "^0.8.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.17.6",
"homebridge": "^2.0.0-beta.0",
"tsup": "^8.3.5",
"turbo": "^2.2.3"
}
}