-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.66 KB
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
59
60
61
62
63
64
65
66
{
"name": "@openhab/n8n-nodes-openhab",
"version": "0.4.7",
"description": "Custom n8n node for the openHAB REST API, including myopenHAB cloud support.",
"keywords": [
"n8n-community-node-package",
"openhab",
"home-automation",
"smart-home",
"iot"
],
"author": {
"name": "openHAB",
"email": "info@openhab.org"
},
"maintainers": [
"openhabfoundation <infrastructure@openhabfoundation.org>",
"digitaldan <dan@digitaldan.com>",
"florian-h05 <dev@florianhotze.com>",
"kaikreuzer <kai@openhab.org>"
],
"license": "MIT",
"homepage": "https://www.openhab.org",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"n8n": {
"nodes": [
"dist/nodes/openHAB/openHAB.node.js"
],
"credentials": [
"dist/credentials/openHABApi.credentials.js"
]
},
"scripts": {
"build": "tsc && npm run copy:assets",
"dev": "tsc --watch",
"lint": "eslint . --ext .ts",
"copy:assets": "mkdir -p dist/nodes/openHAB && cp nodes/openHAB/openhab.svg dist/nodes/openHAB/openhab.svg",
"build:cli": "n8n-node build && npm run copy:assets"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@n8n/node-cli": "0.19.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.14.0",
"n8n-workflow": "^2.7.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openhab/openhab-n8n.git"
},
"bugs": {
"url": "https://github.com/openhab/openhab-n8n/issues"
}
}