@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 +5 -0
- package/README.md +13 -2
- package/bin/inca-host +4 -0
- package/package.json +9 -3
package/LICENSE
ADDED
package/README.md
CHANGED
|
@@ -1,2 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@incajs/host-linux-x64",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
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
|
}
|