@xai-official/grok-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/README.md +11 -0
- package/package.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @xai-official/grok-linux-x64
|
|
2
|
+
|
|
3
|
+
Platform-specific binary for [`@xai-official/grok`](https://www.npmjs.com/package/@xai-official/grok) on linux-x64.
|
|
4
|
+
|
|
5
|
+
Do not install this package directly. Install the main package instead:
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install -g @xai-official/grok
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
The main package will automatically pull the correct binary for your platform via `optionalDependencies`.
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xai-official/grok-linux-x64",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "linux-x64 binary for @xai-official/grok. Do not install directly; install @xai-official/grok instead.",
|
|
5
|
+
"license": "Proprietary",
|
|
6
|
+
"files": [
|
|
7
|
+
"bin/"
|
|
8
|
+
],
|
|
9
|
+
"os": [
|
|
10
|
+
"linux"
|
|
11
|
+
],
|
|
12
|
+
"cpu": [
|
|
13
|
+
"x64"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
}
|
|
18
|
+
}
|