@xehxx/qtflow-cli-win32-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.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @xehxx/qtflow-cli-win32-x64
2
+
3
+ This package ships the Windows x64 `qtflow.exe` 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.exe` into `bin/`.
package/bin/qtflow.exe ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@xehxx/qtflow-cli-win32-x64",
3
+ "version": "0.1.0",
4
+ "description": "Prebuilt qtflow CLI binary for Windows x64.",
5
+ "license": "UNLICENSED",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/OWNER/qtflow.git"
9
+ },
10
+ "os": [
11
+ "win32"
12
+ ],
13
+ "cpu": [
14
+ "x64"
15
+ ],
16
+ "bin": {
17
+ "qtflow": "bin/qtflow.exe"
18
+ },
19
+ "files": [
20
+ "bin/qtflow.exe",
21
+ "README.md"
22
+ ]
23
+ }