@deepstrike/core-linux-arm64-musl 0.1.7
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 +22 -0
- package/deepstrike-core.linux-arm64-musl.node +0 -0
- package/package.json +19 -0
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# `@deepstrike/core-linux-arm64-musl`
|
|
2
|
+
|
|
3
|
+
Platform-specific native addon for [`@deepstrike/core`](https://www.npmjs.com/package/@deepstrike/core).
|
|
4
|
+
|
|
5
|
+
- **Platform:** Linux ARM64 (musl / Alpine)
|
|
6
|
+
- **Target triple:** `aarch64-unknown-linux-musl`
|
|
7
|
+
|
|
8
|
+
## Do not install directly
|
|
9
|
+
|
|
10
|
+
This package is an internal binary dependency. Install [`@deepstrike/sdk`](https://www.npmjs.com/package/@deepstrike/sdk) instead — the correct platform package is selected and installed automatically via `optionalDependencies`.
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm install @deepstrike/sdk
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## How it works
|
|
17
|
+
|
|
18
|
+
`@deepstrike/core` loads this package at runtime when running on Linux ARM64 with musl libc (e.g. Alpine Linux on ARM). The `.node` file is a compiled Rust extension built with [napi-rs](https://napi.rs) that exposes the DeepStrike kernel (loop control, context compression, governance, signal routing) to Node.js.
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
Apache-2.0 OR MIT
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deepstrike/core-linux-arm64-musl",
|
|
3
|
+
"version": "0.1.7",
|
|
4
|
+
"cpu": [
|
|
5
|
+
"arm64"
|
|
6
|
+
],
|
|
7
|
+
"main": "deepstrike-core.linux-arm64-musl.node",
|
|
8
|
+
"files": [
|
|
9
|
+
"deepstrike-core.linux-arm64-musl.node"
|
|
10
|
+
],
|
|
11
|
+
"description": "DeepStrike kernel — pre-built native addon",
|
|
12
|
+
"license": "Apache-2.0 OR MIT",
|
|
13
|
+
"os": [
|
|
14
|
+
"linux"
|
|
15
|
+
],
|
|
16
|
+
"libc": [
|
|
17
|
+
"musl"
|
|
18
|
+
]
|
|
19
|
+
}
|