botmux-linux-arm64-musl 0.0.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.
Files changed (2) hide show
  1. package/botmux +5 -0
  2. package/package.json +20 -0
package/botmux ADDED
@@ -0,0 +1,5 @@
1
+ #!/bin/sh
2
+ echo "botmux: placeholder package — no binary here." >&2
3
+ echo "The real musl binary is attached by CI on release tags." >&2
4
+ echo "Install botmux itself: npm i -g botmux" >&2
5
+ exit 1
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "botmux-linux-arm64-musl",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder for the botmux Linux arm64 (musl/Alpine) binary — published by CI on release tags",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/deepcoldy/botmux.git",
9
+ "directory": "packages/binary-linux-arm64-musl"
10
+ },
11
+ "os": ["linux"],
12
+ "cpu": ["arm64"],
13
+ "libc": ["musl"],
14
+ "files": ["botmux"],
15
+ "preferUnplugged": true,
16
+ "publishConfig": {
17
+ "registry": "https://registry.npmjs.org/",
18
+ "access": "public"
19
+ }
20
+ }