@seqera/cli-darwin-arm64 0.1.0-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.
- package/bin/seqera +0 -0
- package/package.json +23 -0
package/bin/seqera
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@seqera/cli-darwin-arm64",
|
|
3
|
+
"version": "0.1.0-beta.1",
|
|
4
|
+
"description": "Seqera CLI binary for macOS Apple Silicon",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Seqera Labs",
|
|
7
|
+
"bin": {
|
|
8
|
+
"seqera": "bin/seqera"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin/**"
|
|
12
|
+
],
|
|
13
|
+
"os": [
|
|
14
|
+
"darwin"
|
|
15
|
+
],
|
|
16
|
+
"cpu": [
|
|
17
|
+
"arm64"
|
|
18
|
+
],
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"preferUnplugged": true
|
|
23
|
+
}
|