-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "node-red-contrib-daichi-cloud",
"version": "1.1.1",
"description": "Daichi Cloud connectivity nodes for node-red",
"type": "commonjs",
"homepage": "https://github.com/niklv/node-red-contrib-daichi-cloud",
"bugs": "https://github.com/niklv/node-red-contrib-daichi-cloud/issues",
"repository": {
"url": "https://github.com/niklv/node-red-contrib-daichi-cloud"
},
"scripts": {
"prebuild": "rimraf build && rimraf build.js && tsc build.ts",
"build": "node build.js",
"prepack": "npm run build",
"lint": "tsc --noEmit"
},
"keywords": [
"node-red",
"daichi",
"daikin"
],
"author": "Nikita Lvov <[email protected]>",
"license": "MIT",
"files": [
"build"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"daichi-service": "./build/daichi-service.js",
"daichi-device": "./build/daichi-device.js"
}
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.14.2",
"@types/node-red": "^1.3.5",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"daichi": "^1.1.3",
"mqtt": "^5.7.0"
},
"engines": {
"node": ">=18"
}
}