-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathpackage.json
78 lines (78 loc) · 2.14 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
{
"name": "eufy-security-client",
"version": "3.1.1",
"description": "Client to comunicate with Eufy-Security devices",
"author": {
"name": "bropat",
"email": "[email protected]"
},
"homepage": "https://github.com/bropat/eufy-security-client",
"main": "build/index.js",
"scripts": {
"build:ts": "tsc -p tsconfig.build.json && npm run copy-proto-build",
"copy-proto-build": "npx copyfiles -u 1 \"src/**/*.proto\" \"src/**/*.crt\" build",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:ts",
"watch:ts": "tsc -p tsconfig.build.json --watch",
"watch": "npm run watch:ts",
"lint": "eslint --ext .ts src",
"prepublishOnly": "tsc -p tsconfig.build.json && npm run copy-proto-build"
},
"license": "MIT",
"keywords": [
"eufy",
"eufycam",
"cam",
"cameras",
"security",
"eufy-security",
"doorbell",
"lock",
"keypad",
"smartlock",
"smartsafe"
],
"repository": {
"type": "git",
"url": "https://github.com/bropat/eufy-security-client"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@cospired/i18n-iso-languages": "^4.2.0",
"crypto-js": "^4.2.0",
"date-and-time": "^3.6.0",
"fs-extra": "^11.2.0",
"got": "^14.4.2",
"i18n-iso-countries": "^7.12.0",
"image-type": "^5.2.0",
"long": "^5.2.3",
"mqtt": "^5.10.1",
"node-rsa": "^1.1.1",
"node-schedule": "^2.1.1",
"p-throttle": "^6.2.0",
"protobufjs": "^7.4.0",
"qs": "^6.13.0",
"sweet-collections": "^1.1.0",
"tiny-typed-emitter": "^2.1.0",
"typescript-logging": "^2.2.0",
"typescript-logging-category-style": "^2.2.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.16.10",
"@types/node-rsa": "^1.1.4",
"@types/node-schedule": "^2.1.7",
"@types/qs": "^6.9.16",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"typescript": "^5.5.4"
},
"bugs": {
"url": "https://github.com/bropat/eufy-security-client/issues"
},
"readmeFilename": "README.md"
}