-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 882 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 882 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
32
33
34
35
{
"name": "homelab-agent",
"version": "2.0.0",
"description": "HomeLab OS modular plugin-based system agent — collects host metrics, Docker, Proxmox, SMART, sensors and network data",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test src/test/**/*.test.ts",
"lint": "eslint src"
},
"dependencies": {
"dockerode": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/dockerode": "^3.3.31",
"@types/node": "^24.0.0",
"eslint": "^10.10.0",
"globals": "^17.12.0",
"tsx": "^4.19.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.69.0"
},
"engines": {
"node": ">=24.0.0"
},
"files": [
"dist"
]
}