-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 980 Bytes
/
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
{
"name": "komfovent-c6-metrics",
"version": "0.0.1",
"description": "A Node.js server that exposes status and metrics of the Komfovent C6M ventilation unit.",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist",
"start": "ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wokim/komfovent-c6-metrics.git"
},
"keywords": [
"komfovent"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/wokim/komfovent-c6-metrics/issues"
},
"homepage": "https://github.com/wokim/komfovent-c6-metrics#readme",
"dependencies": {
"@widesky/modbus-serial": "^9.0.1",
"express": "^4.18.2",
"lodash": "^4.17.21",
"prom-client": "^14.2.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.196",
"@types/node": "^20.4.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}