soulnet-peer-linux-arm64 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 +9 -0
- package/bin/soulnet +0 -0
- package/package.json +32 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# soulnet-peer-linux-arm64
|
|
2
|
+
|
|
3
|
+
The [soulnet](https://github.com/startupworld-ai/soulnet) light peer binary for Linux arm64 (`bin/soulnet`), built with `go build -trimpath -ldflags "-s -w"` from `cmd/soulnet` of the same version.
|
|
4
|
+
|
|
5
|
+
You do not install this package by hand: it is an **optional dependency** of [`soulnet-dsh`](https://www.npmjs.com/package/soulnet-dsh) (the SoulMirror plugin for DeepSeek Harness), and npm / pnpm pick the one matching your `os` / `cpu`. The plugin resolves `bin/soulnet` from here at start-up.
|
|
6
|
+
|
|
7
|
+
The binary is git-ignored in the repository; `dsh/scripts/build-peer-packages.mjs` cross-compiles it into this directory and the release workflow publishes it.
|
|
8
|
+
|
|
9
|
+
License: MIT.
|
package/bin/soulnet
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "soulnet-peer-linux-arm64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "The soulnet light peer binary for Linux arm64; installed automatically as an optional dependency of soulnet-dsh",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/startupworld-ai/soulnet",
|
|
9
|
+
"directory": "dsh/packages/soulnet-linux-arm64"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/startupworld-ai/soulnet#readme",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"soulmirror",
|
|
14
|
+
"soulnet",
|
|
15
|
+
"a2a",
|
|
16
|
+
"dsh-plugin",
|
|
17
|
+
"deepseek-harness"
|
|
18
|
+
],
|
|
19
|
+
"os": [
|
|
20
|
+
"linux"
|
|
21
|
+
],
|
|
22
|
+
"cpu": [
|
|
23
|
+
"arm64"
|
|
24
|
+
],
|
|
25
|
+
"files": [
|
|
26
|
+
"bin/",
|
|
27
|
+
"README.md"
|
|
28
|
+
],
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=22.19"
|
|
31
|
+
}
|
|
32
|
+
}
|