generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
82 lines (82 loc) · 2.56 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
73
74
75
76
77
78
79
80
81
82
{
"name": "@homebridge-plugins/homebridge-lutron-caseta-leap",
"displayName": "Lutron Caseta LEAP",
"type": "module",
"version": "2.8.0",
"description": "Support for the Lutron Caseta Smart Bridge 2",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/homebridge-plugins/homebridge-lutron-caseta-leap.git"
},
"bugs": {
"url": "https://github.com/homebridge-plugins/homebridge-lutron-caseta-leap/issues"
},
"keywords": [
"homebridge-plugin",
"lutron",
"caseta",
"lutron-leap",
"lutron-caseta",
"lutron-smart-bridge"
],
"main": "dist/index.js",
"engines": {
"homebridge": "^1.8.3 || ^2.0.0 || ^2.0.0-beta.27",
"node": "^20 || ^22"
},
"scripts": {
"check": "npm install && npm outdated",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"watch": "npm run build && npm run plugin-ui && npm link && nodemon",
"plugin-ui": "rsync ./src/homebridge-ui/public/index.html ./dist/homebridge-ui/public/",
"build": "npm run clean && tsc && npm run plugin-ui",
"prepublishOnly": "npm run lint && npm run build && npm run plugin-ui && npm run docs && npm run docs:lint && npm run docs:theme",
"postpublish": "npm run clean && npm ci",
"clean": "shx rm -rf ./dist",
"test": "vitest run",
"test:watch": "vitest watch",
"test-coverage": "npm run test -- --coverage",
"docs": "typedoc",
"docs:lint": "typedoc --emit none --treatWarningsAsErrors",
"docs:theme": "typedoc --theme default-modern"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@homebridge/plugin-ui-utils": "^2.0.1",
"lutron-leap": "^3.4.2",
"node-forge": "^1.3.1",
"typed-emitter": "^2.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.0",
"@types/aes-js": "^3.1.4",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.186",
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.10",
"@types/node-forge": "^1.3.11",
"@types/semver": "^7.5.8",
"@types/source-map-support": "^0.5.10",
"@types/ws": "^8.5.14",
"@typhonjs-typedoc/typedoc-theme-dmt": "^0.3.1",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.19.0",
"eslint-plugin-format": "^1.0.1",
"homebridge": "^1.8.5",
"homebridge-config-ui-x": "4.69.0",
"nodemon": "^3.1.9",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.27.5",
"typescript": "^5.7.2",
"vitest": "^3.0.4"
}
}