jbs-client-windows-x64 0.0.2
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 +14 -0
- package/bin/jbs-client.exe +0 -0
- package/package.json +16 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# jbs-client
|
|
2
|
+
|
|
3
|
+
Prebuilt OpenTUI CLI distribution package.
|
|
4
|
+
|
|
5
|
+
This package is intended to be published together with platform-specific packages:
|
|
6
|
+
|
|
7
|
+
- `jbs-client-windows-x64`
|
|
8
|
+
- `jbs-client-windows-arm64`
|
|
9
|
+
- `jbs-client-linux-x64`
|
|
10
|
+
- `jbs-client-linux-arm64`
|
|
11
|
+
- `jbs-client-darwin-x64`
|
|
12
|
+
- `jbs-client-darwin-arm64`
|
|
13
|
+
|
|
14
|
+
Publish the platform packages first, then publish the root `jbs-client` wrapper package.
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "jbs-client-windows-x64",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Prebuilt binary for JBS Client OpenTUI",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"os": [
|
|
7
|
+
"win32"
|
|
8
|
+
],
|
|
9
|
+
"cpu": [
|
|
10
|
+
"x64"
|
|
11
|
+
],
|
|
12
|
+
"preferUnplugged": true,
|
|
13
|
+
"bin": {
|
|
14
|
+
"jbs-client": "./bin/jbs-client.exe"
|
|
15
|
+
}
|
|
16
|
+
}
|