@forgegraph/cli-darwin-arm64 0.1.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/README.md +11 -0
- package/bin/fg +0 -0
- package/package.json +15 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @forgegraph/cli-darwin-arm64
|
|
2
|
+
|
|
3
|
+
Platform-specific binary for the ForgeGraph CLI on macOS ARM64 (Apple Silicon).
|
|
4
|
+
|
|
5
|
+
**Do not install this package directly.** Install `@forgegraph/cli` instead:
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install -g @forgegraph/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This package is automatically selected as an optional dependency when installing on a compatible platform.
|
package/bin/fg
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@forgegraph/cli-darwin-arm64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "ForgeGraph CLI binary for macOS ARM64 (Apple Silicon)",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"os": ["darwin"],
|
|
7
|
+
"cpu": ["arm64"],
|
|
8
|
+
"bin": {
|
|
9
|
+
"fg": "bin/fg"
|
|
10
|
+
},
|
|
11
|
+
"files": ["bin/fg"],
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
}
|
|
15
|
+
}
|