summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json46
1 files changed, 46 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..9ff864d
--- /dev/null
+++ b/package.json
@@ -0,0 +1,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"
+ }
+}