arccode-linux-arm64-musl 2.1.87

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 +9 -0
  2. package/bin/arccode +0 -0
  3. package/package.json +19 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # arccode-linux-arm64-musl
2
+
3
+ Prebuilt `arccode` binary package for:
4
+
5
+ - OS: `linux`
6
+ - CPU: `arm64`
7
+ - libc: `musl`
8
+
9
+ This package is intended to be installed automatically via the main `arccode` package.
package/bin/arccode ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "arccode-linux-arm64-musl",
3
+ "version": "2.1.87",
4
+ "private": false,
5
+ "description": "ArcCode CLI (linux/arm64/musl prebuilt binary)",
6
+ "license": "SEE LICENSE IN README.md",
7
+ "os": [
8
+ "linux"
9
+ ],
10
+ "cpu": [
11
+ "arm64"
12
+ ],
13
+ "files": [
14
+ "bin"
15
+ ],
16
+ "libc": [
17
+ "musl"
18
+ ]
19
+ }