-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
executable file
·72 lines (72 loc) · 1.79 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
{
"name": "eufy-security-ws",
"version": "1.9.1",
"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": "prettier --check src && tsc --noEmit && npm run lint",
"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"
},
"author": {
"name": "bropat",
"email": "[email protected]"
},
"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": "^12.1.0",
"eufy-security-client": "^3.1.1",
"fs-extra": "^11.2.0",
"tslog": "^4.9.3",
"ws": "^8.18.0",
"date-and-time": "^3.6.0"
},
"devDependencies": {
"@types/node": "^20.16.10",
"@types/node-rsa": "^1.1.4",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.5.4"
},
"type": "module"
}