@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 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 and access shares published by your team.
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
- ## Self-hosting the server
45
+ ## Documentation
48
46
 
49
- The Broch server (and the rest of the project) lives in [`broch-io/broch`](https://github.com/broch-io/broch). See that repo's README and `docs/SELF_HOSTING.md` for how to run your own instance.
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
@@ -3588,7 +3588,7 @@ var init_readline_instance = __esm({
3588
3588
 
3589
3589
  // src/lib/version.ts
3590
3590
  function getCliVersion() {
3591
- return "1.16.0";
3591
+ return "1.18.0";
3592
3592
  }
3593
3593
  var init_version = __esm({
3594
3594
  "src/lib/version.ts"() {
package/dist/index.js CHANGED
@@ -915,7 +915,7 @@ var init_source = __esm({
915
915
 
916
916
  // src/lib/version.ts
917
917
  function getCliVersion() {
918
- return "1.16.0";
918
+ return "1.18.0";
919
919
  }
920
920
  var init_version = __esm({
921
921
  "src/lib/version.ts"() {
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.16.0",
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
  },