-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.43 KB
/
package.json
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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "node-red-contrib-esphome",
"version": "0.2.8",
"description": "Node-RED nodes to ESPhome devices",
"homepage": "https://github.com/twocolors/node-red-contrib-esphome",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/twocolors/node-red-contrib-esphome.git"
},
"bugs": {
"url": "https://github.com/twocolors/node-red-contrib-esphome/issues"
},
"author": "D",
"scripts": {
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"clean": "rm -rf build/**/*.js",
"eslint": "eslint \"src/**/*.ts\"",
"prettier": "prettier --write \"**/*.{js,ts}\""
},
"node-red": {
"version": ">=2.2.0",
"nodes": {
"api": "build/nodes/api.js",
"device": "build/nodes/device.js",
"in": "build/nodes/in.js",
"out": "build/nodes/out.js"
}
},
"dependencies": {
"@2colors/esphome-native-api": "1.3.2"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/node-red": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "9.17.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=16"
},
"keywords": [
"node-red",
"esphome",
"esp",
"home",
"esp32",
"esp8266",
"iot"
]
}