-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
63 lines (63 loc) · 1.97 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
{
"name": "homebridge-tydom",
"version": "0.25.1",
"description": "Homebridge plugin to manage Tydom devices by Delta Dore",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"homebridge-tydom": "./lib/bin/cli.js"
},
"author": "Olivier Louvignes <[email protected]>",
"repository": "github:mgcrea/homebridge-tydom",
"license": "MIT",
"keywords": [
"homebridge-plugin"
],
"engines": {
"node": ">=0.12.0",
"homebridge": ">=1.0.0"
},
"scripts": {
"start": "NODE_TLS_REJECT_UNAUTHORIZED=0 homebridge -D -U ./.homebridge -P .",
"start:node": "NODE_TLS_REJECT_UNAUTHORIZED=0 NODE_PATH=src/ tsx .",
"start:watch": "nodemon --ext \"ts,tsx\" --watch \"lib/\" --exec \"yarn start\"",
"start:prod": "yarn spec:watch",
"build": "tsup src/index.ts --minify --dts --format cjs,esm --sourcemap --out-dir lib",
"clean": "rm -rf .homebridge/persist/* .homebridge/accessories/*",
"lint": "eslint src/",
"prettycheck": "prettier --check src/",
"typecheck": "tsc --noEmit",
"test": "npm run lint && npm run prettycheck && npm run typecheck",
"prepublishOnly": "npm run build"
},
"dependencies": {
"debug": "^4.3.4",
"fakegato-history": "^0.6.4",
"kolorist": "^1.8.0",
"lodash": "^4.17.21",
"source-map-support": "^0.5.21",
"tydom-client": "^0.13.4"
},
"devDependencies": {
"@tsconfig/node-lts": "^20.1.1",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.28",
"@types/node-persist": "^3.1.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"homebridge": "^1.7.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"prettier": "^3.2.5",
"tsc-alias": "^1.8.8",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
}
}