-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.07 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
{
"name": "@erfanium/h8-cli",
"version": "0.3.0",
"description": "CLI for Hamravesh",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erfanium/h8-cli.git"
},
"keywords": [
"hamravesh",
"darkube",
"paas",
"cli",
"kubectl",
"kubernetes",
"cloud"
],
"engines": {
"node": ">=22"
},
"oclif": {
"dirname": "h8",
"commands": "./dist/commands",
"bin": "h8",
"topicSeparator": " "
},
"bin": {
"h8": "./bin/run.js"
},
"files": [
"/bin",
"/dist"
],
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"dev": "node --loader ts-node/esm ./bin/dev.js",
"lint": "tsc --noEmit",
"prepack": "npm run build"
},
"dependencies": {
"@oclif/core": "^4",
"chalk": "^5",
"cli-table3": "^0.6",
"js-yaml": "^5"
},
"devDependencies": {
"@types/js-yaml": "^4",
"@types/node": "^22",
"shx": "^0.4",
"ts-node": "^10",
"typescript": "^5"
},
"oclif:env": "node22"
}