-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 990 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 990 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
{
"name": "zelthr-monitor",
"version": "0.1.0",
"private": true,
"description": "Homelab monitoring platform for LAN systems, network health, and Discord bots.",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"format": "prettier --check \"apps/**/*.ts\" \"*.json\" \"*.js\"",
"generate": "npm run generate -w @zelthr/core",
"dev": "npm run dev -w @zelthr/core",
"dev:agent": "npm run dev -w @zelthr/agent",
"build:agent": "npm run build -w @zelthr/agent",
"migrate": "npm run migrate -w @zelthr/core"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4"
},
"engines": {
"node": ">=22.0.0"
}
}