@net-mesh/deck-linux-arm64-musl 0.19.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/LICENSE ADDED
@@ -0,0 +1,3 @@
1
+ Apache-2.0
2
+
3
+ See https://github.com/ai-2070/net/blob/master/LICENSE for the full text.
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # @net-mesh/deck-linux-arm64-musl
2
+
3
+ Prebuilt `net-deck` binary for linux-arm64 (musl).
4
+
5
+ You almost certainly want `@net-mesh/deck` instead — npm
6
+ pulls this package in automatically as an optional
7
+ dependency on matching hosts. See the [parent package
8
+ README](https://www.npmjs.com/package/@net-mesh/deck) for
9
+ install instructions.
package/bin/net-deck ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@net-mesh/deck-linux-arm64-musl",
3
+ "version": "0.19.0",
4
+ "description": "Prebuilt net-deck binary for linux-arm64 (musl)",
5
+ "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/ai-2070/net"
9
+ },
10
+ "os": [
11
+ "linux"
12
+ ],
13
+ "cpu": [
14
+ "arm64"
15
+ ],
16
+ "files": [
17
+ "bin/net-deck",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "libc": [
22
+ "musl"
23
+ ]
24
+ }