@agent-director/linux-x64 0.4.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-binary-source.md +23 -0
- package/libagent_director.so +0 -0
- package/package.json +14 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @agent-director/linux-x64
|
|
2
|
+
|
|
3
|
+
This package ships the native shared library `libagent_director.so` for Linux x64.
|
|
4
|
+
|
|
5
|
+
## Binary source
|
|
6
|
+
|
|
7
|
+
The binary is **not committed to git**. It is dropped into this directory by CI
|
|
8
|
+
after building for the target platform:
|
|
9
|
+
|
|
10
|
+
```sh
|
|
11
|
+
make libagent_director # builds dist/libagent_director.so (linux/amd64)
|
|
12
|
+
cp dist/libagent_director.so pkg/ts-bun-client/platforms/linux-x64/
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
For local development, run the `prepare-platforms` script from `pkg/ts-bun-client/`:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
bun run prepare-platforms
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
This copies the already-built `.so` from the repo-root `dist/` directory into
|
|
22
|
+
`platforms/linux-x64/`. The file is listed in `.gitignore` so it is never
|
|
23
|
+
committed.
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agent-director/linux-x64",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"os": ["linux"],
|
|
6
|
+
"cpu": ["x64"],
|
|
7
|
+
"files": ["libagent_director.so", "README-binary-source.md"],
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "public"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"prepublishOnly": "bun run ../../scripts/check-not-placeholder.ts"
|
|
13
|
+
}
|
|
14
|
+
}
|