@crewkit/cli-darwin-arm64 0.0.1

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 +9 -0
  2. package/bin/crewkit +2 -0
  3. package/package.json +24 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # @crewkit/cli-darwin-arm64
2
+
3
+ This package contains the macOS ARM64 (Apple Silicon) binary for [@crewkit/cli](https://www.npmjs.com/package/@crewkit/cli).
4
+
5
+ **Do not install this package directly.** Install `@crewkit/cli` instead:
6
+
7
+ ```bash
8
+ npm install -g @crewkit/cli
9
+ ```
package/bin/crewkit ADDED
@@ -0,0 +1,2 @@
1
+ #!/bin/sh
2
+ echo "Placeholder"
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@crewkit/cli-darwin-arm64",
3
+ "version": "0.0.1",
4
+ "description": "macOS ARM64 (Apple Silicon) binary for @crewkit/cli",
5
+ "author": "crewkit <hello@crewkit.io>",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/karibew/crewkit-cli.git"
10
+ },
11
+ "os": [
12
+ "darwin"
13
+ ],
14
+ "cpu": [
15
+ "arm64"
16
+ ],
17
+ "engines": {
18
+ "node": ">=18"
19
+ },
20
+ "preferUnplugged": true,
21
+ "files": [
22
+ "bin"
23
+ ]
24
+ }