-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.79 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "homebridge-blinds",
"displayName": "Blinds (HTTP)",
"version": "3.0.1",
"description": "Homebridge plugin to control HTTP, REST, MQTT, shell-script and CLI-driven blinds, shades, awnings, shutters, and roller curtains in Apple HomeKit.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"config.schema.json",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "rimraf dist && tsc",
"watch": "tsc --watch",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"*.md\" \"*.json\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"*.md\" \"*.json\"",
"lint": "eslint src test",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "node scripts/smoke.js",
"prepublishOnly": "npm run format:check && npm run lint && npm run typecheck && npm test && npm run build && npm run smoke"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"homekit",
"blinds",
"shades",
"awning",
"shutter",
"roller",
"curtain",
"window-covering",
"http",
"rest",
"mqtt",
"tasmota",
"bond",
"louvolite",
"shell",
"cli",
"script",
"smart-home",
"iot",
"automation"
],
"engines": {
"node": "^20.18.0 || ^22.10.0 || ^24.0.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dxdc/homebridge-blinds.git"
},
"bugs": {
"url": "https://github.com/dxdc/homebridge-blinds/issues"
},
"homepage": "https://github.com/dxdc/homebridge-blinds#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/dxdc"
},
{
"type": "individual",
"url": "https://paypal.me/ddcaspi"
}
],
"author": "Daniel Caspi <dan@element26.net>",
"contributors": [
"Robin Temme <zwerch1337@googlemail.com>",
"Jimmy Henderickx <jimmyhdx@gmail.com>",
"Slavik Meltser <slavikme@gmail.com>"
],
"license": "ISC",
"dependencies": {
"jsonata": "^2.0.5",
"selfsigned": "^5.5.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.19.43",
"eslint": "^10.3.0",
"homebridge": "^2.0.2",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"vitest": "^4.1.5"
},
"peerDependencies": {
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
}
}