summaryrefslogtreecommitdiff
path: root/package.json
blob: 9ff864de8d7167f1756fe9bfa3771d1f58cd3c7c (plain)
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
{
  "name": "homebridge-airmx",
  "displayName": "AIRMX",
  "version": "1.0.0",
  "description": "Homebridge plugin for AIRMX Pro.",
  "keywords": [
    "homebridge-plugin",
    "airmx"
  ],
  "homepage": "https://github.com/openairmx/homebridge-airmx#readme",
  "bugs": {
    "url": "https://github.com/openairmx/homebridge-airmx/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://[email protected]/openairmx/homebridge-airmx.git"
  },
  "license": "MIT",
  "author": "Zhineng Li",
  "type": "module",
  "main": "dist/index.js",
  "files": [
    "dist",
    "config.schema.json"
  ],
  "engines": {
    "node": "^18.20.4 || ^20.18.0 || ^22.10.0",
    "homebridge": "^1.8.0 || ^2.0.0-beta.0"
  },
  "scripts": {
    "start": "nodemon",
    "build": "tsc",
    "test": "echo \"Error: no test specified\" && exit 1",
    "format": "prettier --write --cache ."
  },
  "dependencies": {
    "airmx": "^0.0.1",
    "mqtt": "^5.13.3"
  },
  "devDependencies": {
    "homebridge": "^2.0.0-beta.0",
    "nodemon": "^3.1.10",
    "prettier": "3.6.2",
    "typescript": "^5.8.3"
  }
}