@elyx-design/cli-linux-x64 0.0.0 → 0.0.1-nightly.13208.35de57b3a

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 +4 -5
  2. package/bin/elyx +0 -0
  3. package/package.json +8 -4
package/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  # @elyx-design/cli-linux-x64
2
2
 
3
- This is the bootstrap placeholder for the native Elyx CLI package on
4
- Linux x64. Install `@elyx-design/cli` rather than depending on this package
5
- directly.
3
+ The native Elyx CLI executable for linux-x64.
6
4
 
7
- Release workflows replace this placeholder with packages containing the native
8
- CLI executable.
5
+ This package is installed automatically by `@elyx-design/cli` as an optional platform dependency. Install `@elyx-design/cli` instead of depending on this package directly.
6
+
7
+ Linux support currently requires an x86-64 glibc system with libc++ and Fontconfig installed. Ubuntu 24.04 is the tested environment; musl-based distributions are not supported.
package/bin/elyx ADDED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elyx-design/cli-linux-x64",
3
- "version": "0.0.0",
4
- "description": "Bootstrap placeholder for the Elyx CLI on linux-x64",
3
+ "version": "0.0.1-nightly.13208.35de57b3a",
4
+ "description": "Elyx CLI for linux-x64",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "repository": {
7
7
  "type": "git",
@@ -11,6 +11,9 @@
11
11
  "access": "public",
12
12
  "registry": "https://registry.npmjs.org/"
13
13
  },
14
+ "bin": {
15
+ "elyx-native-linux-x64": "bin/elyx"
16
+ },
14
17
  "os": [
15
18
  "linux"
16
19
  ],
@@ -19,6 +22,7 @@
19
22
  ],
20
23
  "files": [
21
24
  "LICENSE",
22
- "README.md"
25
+ "README.md",
26
+ "bin"
23
27
  ]
24
- }
28
+ }