@broch/cli 1.16.0 → 1.18.0
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/README.md +3 -9
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Broch CLI
|
|
2
2
|
|
|
3
|
-
Command-line client for a [Broch](https://broch.io) SSH tunnel server — expose local services over secure, authenticated tunnels
|
|
3
|
+
Command-line client for a [Broch](https://broch.io) SSH tunnel server — expose local services over secure, authenticated tunnels.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -36,18 +36,12 @@ broch auth login
|
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
38
|
broch share my-app --target http://localhost:3000 # expose a local service over a tunnel
|
|
39
|
-
broch access # connect to shares you're authorized to reach
|
|
40
|
-
broch services # list available shares
|
|
41
39
|
broch status # show current server / auth state
|
|
42
40
|
broch -i # interactive mode
|
|
43
41
|
```
|
|
44
42
|
|
|
45
43
|
Run `broch --help` for the full command list.
|
|
46
44
|
|
|
47
|
-
##
|
|
45
|
+
## Documentation
|
|
48
46
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
---
|
|
52
|
-
|
|
53
|
-
*Publishing note: this package is published only by CI — `.github/workflows/publish-release.yml` publishes `@broch/cli` to npmjs.org on a stable release tag; `.github/workflows/publish-dev.yml` publishes `@broch-io/cli` (different scope, GitHub Packages) on push to `dev`. Do not `npm publish` locally.*
|
|
47
|
+
See [broch.io/docs](https://www.broch.io/docs/) for the full Broch documentation, including how to run your own self-hosted server.
|
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@broch/cli",
|
|
3
3
|
"//": "DO NOT run `npm publish` from here. The CLI is published ONLY via CI: .github/workflows/publish-release.yml publishes @broch/cli to npmjs.org on a stable release tag; .github/workflows/publish-dev.yml publishes @broch-io/cli (note: different scope) to GitHub Packages on push to dev. The `prepublishOnly` script and `publishConfig` below exist for those CI jobs, not for local publishing.",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.18.0",
|
|
5
5
|
"description": "CLI client for Broch SSH tunnel server",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -45,9 +45,15 @@
|
|
|
45
45
|
"type": "module",
|
|
46
46
|
"license": "MIT",
|
|
47
47
|
"bugs": {
|
|
48
|
+
"url": "https://github.com/broch-io/broch/issues",
|
|
48
49
|
"email": "hello@broch.io"
|
|
49
50
|
},
|
|
50
51
|
"homepage": "https://broch.io",
|
|
52
|
+
"repository": {
|
|
53
|
+
"type": "git",
|
|
54
|
+
"url": "git+https://github.com/broch-io/broch.git",
|
|
55
|
+
"directory": "cli"
|
|
56
|
+
},
|
|
51
57
|
"engines": {
|
|
52
58
|
"node": ">=22.0.0"
|
|
53
59
|
},
|