@vertesia/cli-darwin-x64 1.5.0-dev.20260901.033115Z
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 +9 -0
- package/bin/vertesia +0 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# `@vertesia/cli-darwin-x64`
|
|
2
|
+
|
|
3
|
+
This package contains the signed Vertesia CLI executable for macOS on Intel processors.
|
|
4
|
+
|
|
5
|
+
It is installed automatically as an optional dependency of [`@vertesia/cli`](https://www.npmjs.com/package/@vertesia/cli). Install the main CLI package instead of depending on this platform package directly:
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install --global @vertesia/cli
|
|
9
|
+
```
|
package/bin/vertesia
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vertesia/cli-darwin-x64",
|
|
3
|
+
"version": "1.5.0-dev.20260901.033115Z",
|
|
4
|
+
"description": "The macOS x64 native executable for the Vertesia CLI.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"preferUnplugged": true,
|
|
7
|
+
"os": [
|
|
8
|
+
"darwin"
|
|
9
|
+
],
|
|
10
|
+
"cpu": [
|
|
11
|
+
"x64"
|
|
12
|
+
],
|
|
13
|
+
"files": [
|
|
14
|
+
"bin/vertesia"
|
|
15
|
+
],
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"executableFiles": [
|
|
18
|
+
"bin/vertesia"
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/vertesia/composableai.git",
|
|
24
|
+
"directory": "packages/cli-darwin-x64"
|
|
25
|
+
}
|
|
26
|
+
}
|