@agent-director/darwin-arm64 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.
@@ -0,0 +1,15 @@
1
+ # @agent-director/darwin-arm64
2
+
3
+ This package ships the native shared library `libagent_director.dylib` for macOS ARM64 (Apple Silicon).
4
+
5
+ ## Binary source
6
+
7
+ The binary is **not committed to git**. It is dropped into this directory by CI
8
+ after cross-compiling for the target platform:
9
+
10
+ ```sh
11
+ make libagent_director # builds dist/libagent_director.dylib (darwin/arm64)
12
+ cp dist/libagent_director.dylib pkg/ts-bun-client/platforms/darwin-arm64/
13
+ ```
14
+
15
+ The file is listed in `.gitignore` so it is never committed.
Binary file
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@agent-director/darwin-arm64",
3
+ "version": "0.4.0",
4
+ "type": "module",
5
+ "os": ["darwin"],
6
+ "cpu": ["arm64"],
7
+ "files": ["libagent_director.dylib", "README-binary-source.md"],
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "scripts": {
12
+ "prepublishOnly": "bun run ../../scripts/check-not-placeholder.ts"
13
+ }
14
+ }