@elyx-design/cli-linux-x64 0.0.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 +4 -0
- package/README.md +8 -0
- package/package.json +24 -0
package/LICENSE
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# @elyx-design/cli-linux-x64
|
|
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.
|
|
6
|
+
|
|
7
|
+
Release workflows replace this placeholder with packages containing the native
|
|
8
|
+
CLI executable.
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elyx-design/cli-linux-x64",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Bootstrap placeholder for the Elyx CLI on linux-x64",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/elyx-design/elyx.git"
|
|
9
|
+
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public",
|
|
12
|
+
"registry": "https://registry.npmjs.org/"
|
|
13
|
+
},
|
|
14
|
+
"os": [
|
|
15
|
+
"linux"
|
|
16
|
+
],
|
|
17
|
+
"cpu": [
|
|
18
|
+
"x64"
|
|
19
|
+
],
|
|
20
|
+
"files": [
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.md"
|
|
23
|
+
]
|
|
24
|
+
}
|