@vertesia/cli-darwin-arm64 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 ADDED
@@ -0,0 +1,9 @@
1
+ # `@vertesia/cli-darwin-arm64`
2
+
3
+ This package contains the signed Vertesia CLI executable for macOS on Apple silicon.
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-arm64",
3
+ "version": "1.5.0-dev.20260901.033115Z",
4
+ "description": "The macOS ARM64 native executable for the Vertesia CLI.",
5
+ "license": "Apache-2.0",
6
+ "preferUnplugged": true,
7
+ "os": [
8
+ "darwin"
9
+ ],
10
+ "cpu": [
11
+ "arm64"
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-arm64"
25
+ }
26
+ }