-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 932 Bytes
/
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
{
"name": "@homebridge/ws-connect",
"version": "3.0.0",
"description": "WS WebSocket client wrapper to automatically reconnect lost or disconnected connections.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/homebridge/ws-connect.git"
},
"keywords": [
"websocket",
"reconnect",
"wss"
],
"author": "oznu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/homebridge/ws-connect/issues"
},
"homepage": "https://github.com/homebridge/ws-connect#readme",
"devDependencies": {
"@types/node": "^22.7.9",
"@types/ws": "^8.5.12",
"tslint": "^6.1.3",
"typescript": "^5.6.3"
},
"dependencies": {
"semver": "^7.6.3",
"ws": "^8.18.0"
}
}