-
-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathpackage.json
90 lines (90 loc) · 2.18 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
{
"name": "ring-client-api",
"version": "13.2.1",
"description": "Unofficial API for Ring doorbells, cameras, security alarm system and smart lighting",
"main": "lib/index.js",
"type": "module",
"exports": {
".": "./lib/index.js",
"./ffmpeg": "./lib/ffmpeg.js",
"./util": "./lib/util.js",
"./rest-client": "./lib/rest-client.js",
"./streaming/streaming-session": "./lib/streaming/streaming-session.js"
},
"scripts": {
"build": "rm -rf lib && tsc --declaration && chmod +x ./lib/ring-*-cli.js && rm -rf ./lib/test",
"dev": "tsc --declaration --watch --preserveWatchOutput",
"lint": "eslint .",
"test": "vitest"
},
"dependencies": {
"@eneris/push-receiver": "4.3.0",
"@homebridge/camera-utils": "^3.0.0",
"colors": "1.4.0",
"debug": "^4.3.7",
"json-bigint": "^1.0.0",
"rxjs": "^7.8.1",
"socket.io-client": "^2.5.0",
"systeminformation": "^5.23.8",
"undici": "^6.21.1",
"uuid": "^11.0.3",
"werift": "0.20.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/debug": "4.1.12",
"@types/json-bigint": "^1.0.4",
"@types/node": "22.9.3",
"@types/socket.io-client": "1.4.36",
"@types/uuid": "10.0.0",
"@types/ws": "^8.5.13",
"eslint-config-shared": "*",
"msw": "^2.6.4",
"tsconfig": "*",
"typescript": "5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": "^18 || ^20 || ^22"
},
"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/ring-client-api#ring-client-api",
"author": "dgreif",
"license": "MIT",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/dustingreif"
},
{
"type": "github",
"url": "https://github.com/sponsors/dgreif"
}
],
"bin": {
"ring-auth-cli": "lib/ring-auth-cli.js",
"ring-device-data-cli": "lib/ring-device-data-cli.js"
},
"files": [
"lib"
],
"keywords": [
"ring",
"doorbell",
"doorbot",
"camera",
"alarm",
"smart",
"light",
"beam",
"security",
"client",
"api"
]
}