@xehxx/qtflow-cli-linux-x64 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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/bin/qtflow +0 -0
  3. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @xehxx/qtflow-cli-linux-x64
2
+
3
+ This package ships the Linux x64 `qtflow` binary.
4
+
5
+ The binary is populated from a GitHub release asset before npm publishing. Do not publish this package until `npm/scripts/populate-binaries.mjs` has copied `qtflow` into `bin/`.
package/bin/qtflow ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@xehxx/qtflow-cli-linux-x64",
3
+ "version": "0.1.0",
4
+ "description": "Prebuilt qtflow CLI binary for Linux x64.",
5
+ "license": "UNLICENSED",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/OWNER/qtflow.git"
9
+ },
10
+ "os": [
11
+ "linux"
12
+ ],
13
+ "cpu": [
14
+ "x64"
15
+ ],
16
+ "bin": {
17
+ "qtflow": "bin/qtflow"
18
+ },
19
+ "files": [
20
+ "bin/qtflow",
21
+ "README.md"
22
+ ]
23
+ }