forked from dgreif/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.17 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
{
"name": "ring-client-api",
"version": "11.7.5",
"description": "Unofficial API for Ring doorbells, cameras, security alarm system and smart lighting",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./ffmpeg": "./lib/ffmpeg.js",
"./util": "./lib/util.js",
"./rest-client": "./lib/rest-client.js"
},
"scripts": {
"build": "rm -rf lib && tsc --declaration && chmod +x ./lib/ring-*-cli.js",
"dev": "tsc --declaration --watch --preserveWatchOutput",
"lint": "eslint . --ext .ts",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@eneris/push-receiver": "^3.1.4",
"@homebridge/camera-utils": "^2.2.0",
"@peculiar/asn1-schema": "^2.3.6",
"@peculiar/webcrypto": "^1.4.3",
"@types/socket.io-client": "1.4.36",
"colors": "1.4.0",
"debug": "^4.3.4",
"got": "^11.8.5",
"rxjs": "^7.8.0",
"socket.io-client": "^2.5.0",
"systeminformation": "^5.17.12",
"uuid": "^9.0.0",
"webcrypto-core": "^1.7.7",
"werift": "0.18.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/jest": "29.5.0",
"@types/node": "18.15.9",
"@types/uuid": "9.0.1",
"@types/ws": "^8.5.4",
"eslint-config-shared": "*",
"jest": "29.5.0",
"ts-jest": "29.0.5",
"tsconfig": "*",
"typescript": "5.0.2"
},
"engines": {
"node": "^16 || ^18"
},
"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"
]
}