hostctl 0.1.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +277 -0
- package/README.md +1027 -0
- package/dist/bin/hostctl.d.ts +1 -0
- package/dist/bin/hostctl.js +4962 -0
- package/dist/bin/hostctl.js.map +1 -0
- package/dist/index.d.ts +1693 -0
- package/dist/index.js +7204 -0
- package/dist/index.js.map +1 -0
- package/package.json +124 -0
package/package.json
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hostctl",
|
|
3
|
+
"version": "0.1.32",
|
|
4
|
+
"description": "hostctl is a tool that runs task scripts against hosts.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/monopod/hostctl.git"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"hostctl"
|
|
11
|
+
],
|
|
12
|
+
"author": "David Ellis",
|
|
13
|
+
"license": "EPL-2.0",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/monopod/hostctl/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/monopod/hostctl#readme",
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"pkgroll": "pkgroll",
|
|
25
|
+
"tsup": "tsup",
|
|
26
|
+
"release": "release-it",
|
|
27
|
+
"lint": "tsc --noEmit",
|
|
28
|
+
"format": "prettier --write .",
|
|
29
|
+
"build": "tsup",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"test:unit": "vitest run test/unit",
|
|
32
|
+
"test:e2e": "vitest run test/e2e"
|
|
33
|
+
},
|
|
34
|
+
"tsup": {
|
|
35
|
+
"entry": [
|
|
36
|
+
"src/bin/hostctl.ts",
|
|
37
|
+
"src/index.ts"
|
|
38
|
+
],
|
|
39
|
+
"format": "esm",
|
|
40
|
+
"splitting": false,
|
|
41
|
+
"sourcemap": true,
|
|
42
|
+
"clean": true,
|
|
43
|
+
"dts": true
|
|
44
|
+
},
|
|
45
|
+
"type": "module",
|
|
46
|
+
"main": "./dist/index.js",
|
|
47
|
+
"module": "./dist/index.js",
|
|
48
|
+
"types": "./dist/index.d.ts",
|
|
49
|
+
"bin": {
|
|
50
|
+
"hostctl": "./dist/bin/hostctl.js"
|
|
51
|
+
},
|
|
52
|
+
"exports": {
|
|
53
|
+
".": {
|
|
54
|
+
"import": "./dist/index.js",
|
|
55
|
+
"types": "./dist/index.d.ts"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@release-it/bumper": "^7.0.5",
|
|
60
|
+
"@types/adm-zip": "^0.5.7",
|
|
61
|
+
"@types/bun": "^1.2.16",
|
|
62
|
+
"@types/decompress": "^4.2.7",
|
|
63
|
+
"@types/fs-extra": "^11.0.4",
|
|
64
|
+
"@types/object-inspect": "^1.13.0",
|
|
65
|
+
"@types/parse-path": "^7.1.0",
|
|
66
|
+
"@types/ssh2": "^1.15.5",
|
|
67
|
+
"@types/which": "^3.0.4",
|
|
68
|
+
"esbuild": "0.25.5",
|
|
69
|
+
"fs-extra": "^11.3.0",
|
|
70
|
+
"jsr": "^0.13.4",
|
|
71
|
+
"pkgroll": "^2.13.1",
|
|
72
|
+
"prettier": "^3.5.3",
|
|
73
|
+
"release-it": "^19.0.3",
|
|
74
|
+
"tsup": "^8.5.0",
|
|
75
|
+
"typescript": "^5.8.3",
|
|
76
|
+
"vitest": "^3.2.4"
|
|
77
|
+
},
|
|
78
|
+
"dependencies": {
|
|
79
|
+
"@expo/spawn-async": "^1.7.2",
|
|
80
|
+
"@inquirer/prompts": "^7.5.3",
|
|
81
|
+
"@replit/ruspty": "^3.4.16",
|
|
82
|
+
"@scure/base": "^1.2.6",
|
|
83
|
+
"@types/js-yaml": "^4.0.9",
|
|
84
|
+
"@types/shell-quote": "^1.7.5",
|
|
85
|
+
"@types/tmp": "^0.2.6",
|
|
86
|
+
"adm-zip": "^0.5.16",
|
|
87
|
+
"age-encryption": "^0.2.3",
|
|
88
|
+
"async-mutex": "^0.5.0",
|
|
89
|
+
"axios": "^1.10.0",
|
|
90
|
+
"chalk": "^5.4.1",
|
|
91
|
+
"cheerio": "^1.1.0",
|
|
92
|
+
"commander": "^14.0.0",
|
|
93
|
+
"decompress": "^4.2.1",
|
|
94
|
+
"decompress-tar": "^4.1.1",
|
|
95
|
+
"decompress-targz": "^4.1.1",
|
|
96
|
+
"decompress-unzip": "^4.0.1",
|
|
97
|
+
"emittery": "^1.2.0",
|
|
98
|
+
"file-type": "^21.0.0",
|
|
99
|
+
"filenamify": "^6.0.0",
|
|
100
|
+
"get-stream": "^9.0.1",
|
|
101
|
+
"glob": "^11.0.3",
|
|
102
|
+
"handlebars": "^4.7.8",
|
|
103
|
+
"human-signals": "^8.0.1",
|
|
104
|
+
"is-stream": "^4.0.1",
|
|
105
|
+
"js-yaml": "^4.1.0",
|
|
106
|
+
"json5": "^2.2.3",
|
|
107
|
+
"listr2": "^8.3.3",
|
|
108
|
+
"node-pty": "^1.0.0",
|
|
109
|
+
"node-ssh": "^13.2.1",
|
|
110
|
+
"rambda": "^10.2.0",
|
|
111
|
+
"shell-quote": "^1.8.3",
|
|
112
|
+
"shellwords-ts": "^3.0.1",
|
|
113
|
+
"simple-git": "^3.28.0",
|
|
114
|
+
"stacktracey": "^2.1.8",
|
|
115
|
+
"stream-regex": "^0.3.2",
|
|
116
|
+
"ts-pattern": "^5.7.1",
|
|
117
|
+
"ts-retry": "^6.0.0",
|
|
118
|
+
"tsx": "^4.20.3",
|
|
119
|
+
"typescript-string-operations": "^1.5.1",
|
|
120
|
+
"which": "^5.0.0",
|
|
121
|
+
"xz-decompress": "^0.2.2",
|
|
122
|
+
"yaml": "^2.8.0"
|
|
123
|
+
}
|
|
124
|
+
}
|