@codelia/tui-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
+ # @codelia/tui-win32-x64
2
+
3
+ This package distributes the prebuilt `codelia-tui.exe` binary for `win32/x64`.
4
+
5
+ The binary is staged into `bin/` during release packaging.
package/bin/.gitkeep ADDED
File without changes
Binary file
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@codelia/tui-win32-x64",
3
+ "version": "0.1.0",
4
+ "description": "Platform binary package for codelia TUI (win32 x64)",
5
+ "files": [
6
+ "bin",
7
+ "README.md"
8
+ ],
9
+ "os": [
10
+ "win32"
11
+ ],
12
+ "cpu": [
13
+ "x64"
14
+ ],
15
+ "scripts": {
16
+ "build": "node -e \"process.exit(0)\"",
17
+ "typecheck": "node -e \"process.exit(0)\"",
18
+ "prepack": "node ../../../scripts/verify-tui-binary.mjs --target win32-x64"
19
+ },
20
+ "publishConfig": {
21
+ "access": "public"
22
+ }
23
+ }