@command-center/command-center-linux-arm64 0.2.3-alpha.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/README.md +8 -0
- package/dist/command-center-linux-arm64 +0 -0
- package/index.js +8 -0
- package/package.json +27 -0
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# @command-center/command-center-linux-arm64
|
|
2
|
+
|
|
3
|
+
Platform-specific binary for the UpToSpeed Command Center CLI.
|
|
4
|
+
|
|
5
|
+
- **OS:** Linux
|
|
6
|
+
- **Architecture:** arm64
|
|
7
|
+
|
|
8
|
+
This artifact is generated during the release process. It is published alongside the main `@command-center/command-center` package and exposes the prebuilt binary for this platform.
|
|
Binary file
|
package/index.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { fileURLToPath } from "node:url";
|
|
2
|
+
import path from "node:path";
|
|
3
|
+
|
|
4
|
+
const currentDir = path.dirname(fileURLToPath(import.meta.url));
|
|
5
|
+
const binaryPath = path.join(currentDir, "dist", "command-center-linux-arm64");
|
|
6
|
+
|
|
7
|
+
export const COMMAND_CENTER_BINARY_PATH = binaryPath;
|
|
8
|
+
export default binaryPath;
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@command-center/command-center-linux-arm64",
|
|
3
|
+
"version": "0.2.3-alpha.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Linux arm64 binary for UpToSpeed Command Center",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"main": "./index.js",
|
|
8
|
+
"os": [
|
|
9
|
+
"linux"
|
|
10
|
+
],
|
|
11
|
+
"cpu": [
|
|
12
|
+
"arm64"
|
|
13
|
+
],
|
|
14
|
+
"files": [
|
|
15
|
+
"dist/",
|
|
16
|
+
"index.js",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"exports": {
|
|
20
|
+
".": "./index.js",
|
|
21
|
+
"./binary": "./dist/command-center-linux-arm64",
|
|
22
|
+
"./package.json": "./package.json"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
}
|
|
27
|
+
}
|