forked from bropat/eufy-security-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (79 loc) · 2.08 KB
/
package.json
File metadata and controls
80 lines (79 loc) · 2.08 KB
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
{
"name": "eufy-security-ws",
"version": "2.1.0",
"description": "Node WebSocket server implementation to integrate Eufy Security devices",
"exports": {
"import": "./dist/lib/index.js"
},
"bin": {
"eufy-security-server": "./dist/bin/server.js",
"eufy-security-client": "./dist/bin/client.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts . && prettier -w .",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"build": "tsc -p .",
"prepublishOnly": "rm -rf dist tsconfig.tsbuildinfo && npm run build",
"build:ts": "tsc -p .",
"server": "node --security-revert=CVE-2023-46809 ./dist/bin/server.js -v -H 0.0.0.0",
"client": "tsx ./src/bin/client.ts -v",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"author": {
"name": "bropat",
"email": "patrick.broetto@gmail.com"
},
"license": "MIT",
"keywords": [
"eufy",
"eufycam",
"cam",
"cameras",
"security",
"eufy-security",
"doorbell",
"lock",
"smartsafe",
"ws",
"websocket"
],
"repository": {
"type": "git",
"url": "https://github.com/bropat/eufy-security-ws"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"commander": "^14.0.0",
"date-and-time": "^4.3.0",
"eufy-security-client": "3.8.0",
"fs-extra": "^11.2.0",
"tslog": "^4.9.3",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/node": "^20.19.9",
"@types/node-rsa": "^1.1.4",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0 ",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"jest": "^29.7.0",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"ts-jest": "^29.4.6",
"tsx": "^4.20.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0"
},
"type": "module"
}