diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-08-03 19:50:17 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-08-03 19:50:17 +0200 |
commit | 773c4ef10e3b2be7376271afe30633848fb0eb94 (patch) | |
tree | d2d2a02b5596f413ad3b2f21e1aa6e83c59e59b7 /package.json | |
parent | 2876d7a9ec90cd75274b18f6383fa35bd075d6b2 (diff) |
python from stdin + plugin beginnings
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..b641603 --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "name": "homebridge-beken", + "version": "0.1.0", + "description": "homebridge beken led plugin", + "main": "index.js", + "repository": "git@pipeframe.xyz:lonkaars/beken-homebridge", + "author": "lonkaars <loek@pipeframe.xyz>", + "license": "MIT", + "private": false, + "type": "module", + "scripts": { + "build": "tsc" + }, + "dependencies": { + "@abandonware/noble": "^1.9.2-14", + "color": "^4.0.0", + "homebridge": "^1.3.4" + }, + "devDependencies": { + "@types/node": "^16.4.10", + "typescript": "^4.3.5" + } +} |