@incajs/host-darwin-arm64 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-darwin-arm64`; 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-darwin-arm64
7
+
8
+ Prebuilt `inca-host` binary for macOS on Apple Silicon (arm64). Not
9
+ meant to be depended on directly — `@incajs/cli`'s dev-client installs
10
+ whichever of these matches the current OS/arch as an `optionalDependency`
11
+ and resolves the binary inside it.
12
+
13
+ This package carries no JS: `bin/inca-host` is the whole of it.
package/bin/inca-host ADDED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@incajs/host-darwin-arm64",
3
- "version": "0.0.0",
4
- "description": "Incarnative.js — prebuilt inca-host binary for macOS on Apple Silicon (arm64). Name reservation; the real implementation is still in development.",
3
+ "version": "0.0.1",
4
+ "description": "Prebuilt inca-host binary for macOS on Apple Silicon (arm64).",
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/darwin-arm64"
18
18
  },
19
+ "files": [
20
+ "bin"
21
+ ],
19
22
  "os": [
20
23
  "darwin"
21
24
  ],
@@ -23,6 +26,9 @@
23
26
  "arm64"
24
27
  ],
25
28
  "publishConfig": {
26
- "access": "public"
29
+ "access": "public",
30
+ "executableFiles": [
31
+ "bin/inca-host"
32
+ ]
27
33
  }
28
34
  }