-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
166 lines (166 loc) · 5.49 KB
/
package.json
File metadata and controls
166 lines (166 loc) · 5.49 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "devhelm",
"version": "1.0.0",
"description": "DevHelm CLI — manage monitors, deployments, and infrastructure as code",
"author": "DevHelm <hello@devhelm.io>",
"license": "MIT",
"homepage": "https://github.com/devhelmhq/cli",
"repository": {
"type": "git",
"url": "https://github.com/devhelmhq/cli.git"
},
"bugs": "https://github.com/devhelmhq/cli/issues",
"type": "module",
"bin": {
"devhelm": "./bin/run.js"
},
"files": [
"bin",
"dist",
"oclif.manifest.json",
"skills"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"typegen": "openapi-typescript docs/openapi/monitoring-api.json -o src/lib/api.generated.ts",
"zodgen": "node scripts/generate-zod.mjs",
"descgen": "node scripts/extract-descriptions.mjs",
"skillgen": "node scripts/generate-skill-references.mjs",
"build": "npm run typegen && npm run zodgen && npm run descgen && npm run skillgen && tsc -b && oclif manifest",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"postpack": "rm -f oclif.manifest.json",
"prepack": "npm run build"
},
"oclif": {
"bin": "devhelm",
"dirname": "devhelm",
"commands": {
"strategy": "pattern",
"target": "./dist/commands"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
],
"topicSeparator": " ",
"topics": {
"alert-channels": {
"description": "Manage alert channels (slack, webhook, email, pagerduty, opsgenie, teams, discord)"
},
"api-keys": {
"description": "Manage API keys for the DevHelm public API"
},
"auth": {
"description": "Manage CLI authentication, contexts, and current identity"
},
"auth:context": {
"description": "Switch between saved CLI contexts (workspace + token pairs)"
},
"data": {
"description": "Inspect runtime data — service catalog status, monitor results, and uptime windows"
},
"data:services": {
"description": "Look up the current status and metadata of upstream services"
},
"dependencies": {
"description": "Track upstream service dependencies (Stripe, GitHub, etc.) for incident correlation"
},
"environments": {
"description": "Manage logical environments (production, staging, …) used to scope monitors and policies"
},
"forensics": {
"description": "Inspect detection forensics: rule evaluations, state transitions, policy snapshots, check traces"
},
"incidents": {
"description": "Create, inspect, and resolve incidents"
},
"maintenance-windows": {
"description": "Schedule downtime windows that suppress alerts during planned changes"
},
"monitors": {
"description": "Manage HTTP, TCP, DNS, ICMP, MCP, and heartbeat monitors"
},
"monitors:versions": {
"description": "Inspect historical monitor configuration versions"
},
"notification-policies": {
"description": "Manage escalation policies that route incidents to alert channels"
},
"resource-groups": {
"description": "Manage resource groups bundling monitors and services for shared health rollups"
},
"secrets": {
"description": "Manage workspace secrets used in monitor configurations and headers"
},
"skills": {
"description": "Generate and install Cursor / Claude agent skill packages for DevHelm"
},
"state": {
"description": "Manage the local deploy state file (.devhelm/state.json)"
},
"status-pages": {
"description": "Manage public status pages with components, branding, custom domains, and incidents"
},
"status-pages:components": {
"description": "Manage components on a status page (monitor, group, or static rows)"
},
"status-pages:domains": {
"description": "Manage custom domains attached to a status page"
},
"status-pages:groups": {
"description": "Manage component groups that organise rows on a status page"
},
"status-pages:incidents": {
"description": "Manage status-page-only incidents (separate from monitor-driven incidents)"
},
"status-pages:subscribers": {
"description": "Manage email and webhook subscribers for a status page"
},
"tags": {
"description": "Manage tags applied to monitors for filtering, grouping, and routing"
},
"webhooks": {
"description": "Manage outbound webhook subscriptions for monitor and incident lifecycle events"
}
}
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"devhelm",
"monitoring",
"cli",
"uptime",
"infrastructure-as-code",
"devops"
],
"dependencies": {
"@oclif/core": "^4.10.5",
"@oclif/plugin-help": "^6.2.43",
"@oclif/plugin-not-found": "^3.2.80",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"lodash-es": "^4.18.1",
"openapi-fetch": "^0.17.0",
"yaml": "^2.8.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^10.2.0",
"oclif": "^4.23.0",
"openapi-typescript": "^7.13.0",
"openapi-zod-client": "^1.18.3",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}