@elyx-design/cli-darwin-arm64 0.0.0-bootstrap.0 → 0.0.1-nightly.10003.fa2bb2bdc

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,4 @@
1
+ Copyright © 2026 Elyx. All rights reserved.
2
+
3
+ This software is proprietary. You may use it only under terms provided by
4
+ Elyx. No other rights are granted.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @elyx-design/cli-darwin-arm64
2
+
3
+ The native Elyx CLI executable for darwin-arm64.
4
+
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.
package/bin/elyx ADDED
Binary file
package/package.json CHANGED
@@ -1,15 +1,28 @@
1
1
  {
2
2
  "name": "@elyx-design/cli-darwin-arm64",
3
- "version": "0.0.0-bootstrap.0",
4
- "description": "Bootstrap package for Elyx CLI darwin-arm64 publishing",
5
- "license": "UNLICENSED",
3
+ "version": "0.0.1-nightly.10003.fa2bb2bdc",
4
+ "description": "Elyx CLI for darwin-arm64",
5
+ "license": "SEE LICENSE IN LICENSE",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/elyx-design/elyx.git"
9
9
  },
10
10
  "publishConfig": {
11
- "access": "public",
12
- "registry": "https://registry.npmjs.org/",
13
- "tag": "bootstrap"
14
- }
15
- }
11
+ "access": "restricted",
12
+ "registry": "https://registry.npmjs.org/"
13
+ },
14
+ "bin": {
15
+ "elyx-native-darwin-arm64": "bin/elyx"
16
+ },
17
+ "os": [
18
+ "darwin"
19
+ ],
20
+ "cpu": [
21
+ "arm64"
22
+ ],
23
+ "files": [
24
+ "LICENSE",
25
+ "README.md",
26
+ "bin"
27
+ ]
28
+ }