-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
57 lines (57 loc) · 1.78 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
{
"name": "homebridge-esphome-ts",
"version": "1.5.3",
"description": "New plugin for integrating for esphome into homebridge",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"cbuild": "npm run clean && npm run build",
"clean": "rm -rf dist",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint --fix src/**/*.ts",
"format:prettier": "prettier -w --ignore-unknown ./src",
"integration:test": "homebridge -U examples -P .",
"prepack": "npm run format && npm run cbuild",
"test": "jest"
},
"repository": "https://github.com/lucavb/homebridge-esphome-ts",
"files": [
"dist",
"config.schema.json"
],
"keywords": [
"homebridge",
"esphome",
"homebridge-plugin"
],
"author": "Luca Becker <[email protected]> (https://sunbury.xyz/)",
"license": "GPL-3.0",
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.4.0"
},
"dependencies": {
"bonjour-hap": "3.6.3",
"color-convert": "2.0.1",
"esphome-ts": "3.3.1",
"rxjs": "7.8.1"
},
"devDependencies": {
"@types/color-convert": "2.0.0",
"@types/ip": "1.1.0",
"@types/node": "18.7.13",
"@typescript-eslint/eslint-plugin": "5.34.0",
"@typescript-eslint/parser": "5.34.0",
"eslint": "8.22.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"hap-nodejs": "0.10.2",
"homebridge": "1.5.0",
"prettier": "2.7.1",
"prettier-eslint": "15.0.1",
"typescript": "4.7.4"
}
}