@bitslix/blxbench-report-browser-linux-x64 1.0.9
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 +5 -0
- package/blxbench-report-browser +0 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# `@bitslix/blxbench-report-browser-linux-x64`
|
|
2
|
+
|
|
3
|
+
Linux x64 Tauri binary for the BLXBench report browser. Do not install directly; use `@bitslix/blxbench-report-browser` (optional dependency) or `/report browser install` in the CLI.
|
|
4
|
+
|
|
5
|
+
The file `blxbench-report-browser` is produced by CI or a local `tauri build --no-bundle` and must be present before `npm pack` / publish.
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bitslix/blxbench-report-browser-linux-x64",
|
|
3
|
+
"version": "1.0.9",
|
|
4
|
+
"description": "BLXBench report browser — native Tauri binary (Linux x64), installed via @bitslix/blxbench-report-browser",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"os": [
|
|
7
|
+
"linux"
|
|
8
|
+
],
|
|
9
|
+
"cpu": [
|
|
10
|
+
"x64"
|
|
11
|
+
],
|
|
12
|
+
"files": [
|
|
13
|
+
"blxbench-report-browser",
|
|
14
|
+
"package.json",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/iptoux/blxbench.git",
|
|
23
|
+
"directory": "packages/blxbench-report-browser-linux-x64"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {}
|
|
26
|
+
}
|