@toolbox-sdk/server-linux-x64 0.21.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 +7 -0
- package/bin/toolbox +0 -0
- package/package.json +14 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @toolbox-sdk/server-linux-x64
|
|
2
|
+
|
|
3
|
+
Platform-specific binary for the `toolbox` package on Linux x64.
|
|
4
|
+
This package is automatically installed by the main `@toolbox-sdk/server` package and is not intended to be installed directly.
|
|
5
|
+
|
|
6
|
+
For more information, visit the [toolbox npm package](https://www.npmjs.com/package/@toolbox-sdk/server).
|
|
7
|
+
|
package/bin/toolbox
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@toolbox-sdk/server-linux-x64",
|
|
3
|
+
"version": "0.21.0",
|
|
4
|
+
"os": ["linux"],
|
|
5
|
+
"cpu": ["x64"],
|
|
6
|
+
"main": "bin/toolbox",
|
|
7
|
+
"repository": "googleapis/genai-toolbox",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"prepack": "node scripts/downloadBinary.js linux x64"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"bin/toolbox"
|
|
13
|
+
]
|
|
14
|
+
}
|