forked from dgreif/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.91 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
{
"name": "homebridge-ring",
"version": "11.7.5",
"description": "Homebridge plugin for Ring doorbells, cameras, security alarm system and smart lighting",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && tsc && cp -r ../homebridge-ui/build ./lib/homebridge-ui/public",
"lint": "eslint . --ext .ts && tsc --noEmit",
"dev": "concurrently -c yellow,blue --kill-others \"npm:dev:build\" \"npm:dev:run\" ",
"dev:build": "tsc --watch --preserveWatchOutput",
"dev:run": "nodemon --watch . --watch ../ring-client-api/lib --exec 'RING_DEBUG=true homebridge -P ./ -U ../../.homebridge'"
},
"dependencies": {
"@homebridge/camera-utils": "^2.2.0",
"@homebridge/plugin-ui-utils": "^0.0.19",
"ring-client-api": "11.7.5"
},
"devDependencies": {
"concurrently": "^7.6.0",
"eslint-config-shared": "*",
"homebridge": "1.6.0",
"homebridge-ui": "*",
"nodemon": "^2.0.22",
"tsconfig": "*",
"typescript": "5.0.2"
},
"engines": {
"node": "^16 || ^18",
"homebridge": ">=1.4.0"
},
"repository": {
"type": "git",
"url": "git://github.com/dgreif/ring.git"
},
"bugs": {
"url": "https://github.com/dgreif/ring/issues"
},
"homepage": "https://github.com/dgreif/ring/tree/main/packages/homebridge-ring#homebridge-ring",
"author": "dgreif",
"license": "MIT",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/dustingreif"
},
{
"type": "github",
"url": "https://github.com/sponsors/dgreif"
}
],
"files": [
"branding",
"CHANGELOG.md",
"config.schema.json",
"lib",
"media"
],
"keywords": [
"homebridge",
"homebridge-plugin",
"ring",
"doorbell",
"doorbot",
"camera",
"alarm",
"smart",
"light",
"beam",
"security",
"category-security",
"category-lighting",
"category-video",
"category-hubs",
"category-outdoor"
]
}