hmanlab 0.1.3 → 0.1.8
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 +2 -2
- package/package.json +12 -9
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ Prebuilt binaries ship for:
|
|
|
31
31
|
- `darwin-x64`, `darwin-arm64`
|
|
32
32
|
- `win32-x64`
|
|
33
33
|
|
|
34
|
-
On other platforms, `npm install` will succeed but `hmanlab` will print a friendly "no prebuilt binary" message and exit. Build from source via `cargo install --git https://github.com/
|
|
34
|
+
On other platforms, `npm install` will succeed but `hmanlab` will print a friendly "no prebuilt binary" message and exit. Build from source via `cargo install --git https://github.com/hmanlab/hmanlab`.
|
|
35
35
|
|
|
36
36
|
## Where does `.hmanlab/` live?
|
|
37
37
|
|
|
@@ -44,4 +44,4 @@ User-scope state (cross-project preferences, identity) always lives at `~/.hmanl
|
|
|
44
44
|
|
|
45
45
|
## License
|
|
46
46
|
|
|
47
|
-
MIT. See https://github.com/
|
|
47
|
+
MIT. See https://github.com/hmanlab/hmanlab for source.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hmanlab",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "hmanlab — a terminal UI for chatting with Ollama, z.ai, Ollama Cloud, and OpenCode Go from your shell.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
"rust",
|
|
12
12
|
"llm"
|
|
13
13
|
],
|
|
14
|
-
"homepage": "https://github.com/
|
|
14
|
+
"homepage": "https://github.com/hmanlab/hmanlab",
|
|
15
15
|
"bugs": {
|
|
16
|
-
"url": "https://github.com/
|
|
16
|
+
"url": "https://github.com/hmanlab/hmanlab/issues"
|
|
17
17
|
},
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"author": "rekabytes <hello@rekabytes.com>",
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/
|
|
22
|
+
"url": "git+https://github.com/hmanlab/hmanlab.git"
|
|
23
23
|
},
|
|
24
24
|
"bin": {
|
|
25
25
|
"hmanlab": "bin/hmanlab.js"
|
|
@@ -31,11 +31,14 @@
|
|
|
31
31
|
"engines": {
|
|
32
32
|
"node": ">=18"
|
|
33
33
|
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"test": "node test/smoke.js"
|
|
36
|
+
},
|
|
34
37
|
"optionalDependencies": {
|
|
35
|
-
"@hmanlab/linux-x64": "0.1.
|
|
36
|
-
"@hmanlab/linux-arm64": "0.1.
|
|
37
|
-
"@hmanlab/darwin-x64": "0.1.
|
|
38
|
-
"@hmanlab/darwin-arm64": "0.1.
|
|
39
|
-
"@hmanlab/win32-x64": "0.1.
|
|
38
|
+
"@hmanlab/linux-x64": "0.1.8",
|
|
39
|
+
"@hmanlab/linux-arm64": "0.1.8",
|
|
40
|
+
"@hmanlab/darwin-x64": "0.1.8",
|
|
41
|
+
"@hmanlab/darwin-arm64": "0.1.8",
|
|
42
|
+
"@hmanlab/win32-x64": "0.1.8"
|
|
40
43
|
}
|
|
41
44
|
}
|