-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 765 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 765 Bytes
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
{
"name": "com.tasmota",
"version": "1.0.0",
"description": "Control Tasmota devices via MQTT native discovery on Homey",
"author": "Rian Brooks-Kane",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/rianbk/com.tasmota.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"test": "vitest run"
},
"dependencies": {
"mqtt": "^5.15.1"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.8",
"@types/homey": "npm:homey-apps-sdk-v3-types@^0.3.12",
"@types/node": "^25.5.2",
"eslint": "^7.32.0",
"eslint-config-athom": "^3.1.5",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}