@incajs/host-linux-x64 0.0.0 → 0.0.1

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/LICENSE ADDED
@@ -0,0 +1,5 @@
1
+ Dual-licensed under MIT OR Apache-2.0.
2
+
3
+ See:
4
+ - https://github.com/tom96da/incajs/blob/main/LICENSE-MIT
5
+ - https://github.com/tom96da/incajs/blob/main/LICENSE-APACHE
package/README.md CHANGED
@@ -1,2 +1,13 @@
1
- Name reservation for `@incajs/host-linux-x64`; the real prebuilt
2
- binary is still in development. See https://github.com/tom96da/incajs.
1
+ <!--
2
+ Copyright (c) 2026 tom96da
3
+ SPDX-License-Identifier: MIT OR Apache-2.0
4
+ -->
5
+
6
+ # @incajs/host-linux-x64
7
+
8
+ Prebuilt `inca-host` binary for Linux on x64. Not meant to be depended
9
+ on directly — `@incajs/cli`'s dev-client installs whichever of these matches
10
+ the current OS/arch as an `optionalDependency` and resolves the binary
11
+ inside it.
12
+
13
+ This package carries no JS: `bin/inca-host` is the whole of it.
package/bin/inca-host ADDED
@@ -0,0 +1,4 @@
1
+ [diffend] Oversized file quarantined before diffing.
2
+ name: package/bin/inca-host
3
+ size: 38785712 bytes
4
+ sha256: 65e5642e1d0a193a434bc74515b8149f5773d2c0d884e3e31c6736328616a48f
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@incajs/host-linux-x64",
3
- "version": "0.0.0",
4
- "description": "Incarnative.js — prebuilt inca-host binary for Linux on x64. Name reservation; the real implementation is still in development.",
3
+ "version": "0.0.1",
4
+ "description": "Prebuilt inca-host binary for Linux on x64.",
5
5
  "keywords": [
6
6
  "desktop-app",
7
7
  "gpui",
@@ -16,6 +16,9 @@
16
16
  "url": "git+https://github.com/tom96da/incajs.git",
17
17
  "directory": "npm/linux-x64"
18
18
  },
19
+ "files": [
20
+ "bin"
21
+ ],
19
22
  "os": [
20
23
  "linux"
21
24
  ],
@@ -23,6 +26,9 @@
23
26
  "x64"
24
27
  ],
25
28
  "publishConfig": {
26
- "access": "public"
29
+ "access": "public",
30
+ "executableFiles": [
31
+ "bin/inca-host"
32
+ ]
27
33
  }
28
34
  }