-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.19 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
{
"name": "homebridge-wol",
"displayName": "Homebridge WoL",
"version": "7.0.0",
"description": "A Wake on Lan plugin for Homebridge",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit && biome ci --no-errors-on-unmatched .",
"format": "biome check --write --no-errors-on-unmatched .",
"test": "rm -rf integration/homebridge-wol/accessories integration/homebridge-wol/persist && cd integration/homebridge-wol && npm install --install-links && npm exec homebridge -- --insecure --plugin-path node_modules --user-storage-path ./ | tee log.txt"
},
"keywords": [
"homebridge-plugin",
"wake on lan",
"home automation",
"wol",
"automation"
],
"repository": {
"type": "git",
"url": "git://github.com/alexgustafsson/homebridge-wol.git"
},
"author": "Alex Gustafsson",
"contributors": [],
"license": "MIT",
"engines": {
"homebridge": "^2.0.0",
"node": ">=22"
},
"dependencies": {
"ping": "1.0.0",
"wake_on_lan": "1.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "22.19.19",
"@types/wake_on_lan": "0.0.33",
"homebridge": "2.0.2",
"typescript": "6.0.3"
}
}