-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- (@Garfonso) Added new device type - illuminance (brightness sensor) - (@Garfonso) Added battery state - (@Garfonso) Added the transition time state - (@Garfonso) Allowed the mixed `device->state` and `device->channel->state` structures - (@GermanBluefox) Used new eslint config library - (@GermanBluefox) Types were slightly changed - (Apollon77) Removed File state type - (Apollon77) Adjusted Camera states to remove Binary state and replace by link - (Apollon77) Fixed role for ACTUAL state for socket
1 parent
94fe0c7
commit 3cee294
Showing
3 changed files
with
5,592 additions
and
5,593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
{ | ||
"name": "iobroker.type-detector", | ||
"version": "4.0.1", | ||
"description": "Detects devices in ioBroker for Material, Google home, Homekit, ...", | ||
"author": { | ||
"name": "bluefox", | ||
"email": "dogafox@gmail.com" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"homepage": "https://github.com/ioBroker/ioBroker.type-detector", | ||
"keywords": [ | ||
"ioBroker", | ||
"types", | ||
"devices" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ioBroker/ioBroker.type-detector" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@alcalzone/release-script": "^3.8.0", | ||
"@alcalzone/release-script-plugin-license": "^3.7.0", | ||
"@iobroker/types": "^6.0.11", | ||
"@iobroker/eslint-config": "^1.0.0", | ||
"chai": "^4.5.0", | ||
"mocha": "^10.8.2", | ||
"typescript": "~5.7.2" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/ioBroker/ioBroker.type-detector/issues" | ||
}, | ||
"main": "index.js", | ||
"files": [ | ||
"LICENSE", | ||
"*.js", | ||
"*.d.ts", | ||
"*.js.map" | ||
], | ||
"scripts": { | ||
"test": "node node_modules/mocha/bin/mocha --exit", | ||
"watch": "node node_modules/mocha/bin/mocha --watch", | ||
"build:ts": "tsc -p tsconfig.build.json && node build", | ||
"build:doc": "node lib/createMd", | ||
"build": "npm run build:ts && npm run build:doc", | ||
"release": "release-script --noPush -y", | ||
"npm": "npm i -f" | ||
}, | ||
"license": "MIT", | ||
"readmeFilename": "README.md" | ||
"name": "iobroker.type-detector", | ||
"version": "4.1.0", | ||
"description": "Detects devices in ioBroker for Material, Google home, Homekit, ...", | ||
"author": { | ||
"name": "bluefox", | ||
"email": "dogafox@gmail.com" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"homepage": "https://github.com/ioBroker/ioBroker.type-detector", | ||
"keywords": [ | ||
"ioBroker", | ||
"types", | ||
"devices" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ioBroker/ioBroker.type-detector" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@alcalzone/release-script": "^3.8.0", | ||
"@alcalzone/release-script-plugin-license": "^3.7.0", | ||
"@iobroker/types": "^6.0.11", | ||
"@iobroker/eslint-config": "^1.0.0", | ||
"chai": "^4.5.0", | ||
"mocha": "^10.8.2", | ||
"typescript": "~5.7.2" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/ioBroker/ioBroker.type-detector/issues" | ||
}, | ||
"main": "index.js", | ||
"files": [ | ||
"LICENSE", | ||
"*.js", | ||
"*.d.ts", | ||
"*.js.map" | ||
], | ||
"scripts": { | ||
"test": "node node_modules/mocha/bin/mocha --exit", | ||
"watch": "node node_modules/mocha/bin/mocha --watch", | ||
"build:ts": "tsc -p tsconfig.build.json && node build", | ||
"build:doc": "node lib/createMd", | ||
"build": "npm run build:ts && npm run build:doc", | ||
"release": "release-script --noPush -y", | ||
"npm": "npm i -f" | ||
}, | ||
"license": "MIT", | ||
"readmeFilename": "README.md" | ||
} |