generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.97 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.97 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
{
"name": "homebridge-bthome",
"displayName": "Homebridge BTHome",
"type": "module",
"version": "2.1.0",
"description": "A Homebridge plugin that integrates Bluetooth devices communicating via the BTHome protocol into Apple HomeKit.",
"author": "Boris Yonchev",
"license": "Apache-2.0",
"homepage": "https://github.com/byonchev/homebridge-bthome#readme",
"repository": {
"type": "git",
"url": "https://github.com/byonchev/homebridge-bthome.git"
},
"bugs": {
"url": "https://github.com/byonchev/homebridge-bthome/issues"
},
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/byonchev"
},
{
"type": "github",
"url": "https://github.com/sponsors/byonchev"
},
{
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/byonchev"
}
],
"keywords": [
"homebridge",
"homebridge-plugin",
"homebridge-bthome",
"bthome",
"ble",
"shelly"
],
"main": "dist/index.js",
"engines": {
"node": "^20.18.0 || ^22.10.0 || ^24.0.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint . --max-warnings=0",
"test": "vitest run",
"test:watch": "vitest --coverage --ui",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"watch": "npm run build && npm link && nodemon"
},
"dependencies": {
"homebridge-lib": "^7.1.12",
"@stoprocent/noble": "^2.3.10"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"homebridge": "^2.0.0-beta.55",
"nodemon": "^3.1.11",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"vitest": "^4.0.16"
}
}