@applicate2628/mcp-local-hub-darwin-arm64 0.4.6-beta.1

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.
Files changed (3) hide show
  1. package/README.md +11 -0
  2. package/bin/mcphub +0 -0
  3. package/package.json +32 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @applicate2628/mcp-local-hub-darwin-arm64
2
+
3
+ Platform binary sub-package for [`mcp-local-hub`](https://www.npmjs.com/package/mcp-local-hub).
4
+
5
+ - Target: `darwin/arm64` (Go `darwin/arm64`)
6
+ - Support tier: **best-effort (the CLI runs; supervisor lifecycle is Windows-GA / Linux-beta / macOS-preview)**
7
+ - Binary: `bin/mcphub` — injected by the release job at publish time, NOT committed to git.
8
+
9
+ You do not install this package directly. The `mcp-local-hub` meta package declares it in `optionalDependencies`; npm installs only the sub-package matching your host's `os`/`cpu`.
10
+
11
+ Generated by `npm/generate-platform-packages.js` — do not edit by hand.
package/bin/mcphub ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@applicate2628/mcp-local-hub-darwin-arm64",
3
+ "version": "0.4.6-beta.1",
4
+ "description": "mcphub binary for darwin/arm64 (Go darwin/arm64) — best-effort (the CLI runs; supervisor lifecycle is Windows-GA / Linux-beta / macOS-preview). Platform sub-package of the \"mcp-local-hub\" meta package; not installed directly.",
5
+ "license": "MPL-2.0",
6
+ "author": "Dmitry Denisenko (@applicate2628)",
7
+ "homepage": "https://github.com/applicate2628/mcp-local-hub#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/applicate2628/mcp-local-hub.git",
11
+ "directory": "npm/packages/darwin-arm64"
12
+ },
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "os": [
17
+ "darwin"
18
+ ],
19
+ "cpu": [
20
+ "arm64"
21
+ ],
22
+ "bin": {
23
+ "mcphub": "bin/mcphub"
24
+ },
25
+ "files": [
26
+ "bin/mcphub",
27
+ "README.md"
28
+ ],
29
+ "engines": {
30
+ "node": ">=18"
31
+ }
32
+ }