-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 950 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
38
{
"name": "lares4-ts",
"version": "0.0.9-beta.0",
"description": "A ts lib to connect and pilot Ksenia Lares 4 smart home pheriperals",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Giuseppe Lucio Sorrentino",
"license": "ISC",
"private": false,
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.1",
"@types/ws": "^8.5.13",
"eslint": "^9.16.0",
"terser": "^5.36.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"dependencies": {
"@mnasyrov/pubsub": "^0.2.4",
"bufferutil": "^4.0.8",
"winston": "^3.17.0",
"ws": "^8.18.0"
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"lint": "eslint . --max-warnings=0",
"prepublishOnly": "npm run lint && npm run build"
}
}