-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.05 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.05 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
{
"name": "devhelm",
"version": "0.1.6",
"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"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"typegen": "openapi-typescript docs/openapi/monitoring-api.json -o src/lib/api.generated.ts",
"descgen": "node scripts/extract-descriptions.mjs",
"build": "npm run typegen && npm run descgen && 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": " "
},
"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"
},
"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",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}