@palamedes/core-node-linux-x64-musl 0.9.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 +42 -0
- package/package.json +38 -0
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# @palamedes/core-node-linux-x64-musl
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@palamedes/core-node-linux-x64-musl)
|
|
4
|
+
[](https://github.com/sebastian-software/palamedes/actions/workflows/ci.yml)
|
|
5
|
+
[](https://oss.sebastian-software.com/)
|
|
6
|
+
[](https://github.com/sebastian-software/palamedes/blob/main/LICENSE)
|
|
7
|
+
|
|
8
|
+
Platform-specific native bindings for `@palamedes/core-node` on Linux x64 with musl.
|
|
9
|
+
|
|
10
|
+
## When To Use This Package
|
|
11
|
+
|
|
12
|
+
You usually should not install this package directly.
|
|
13
|
+
|
|
14
|
+
`@palamedes/core-node` selects and loads the right native package for the current platform. This package exists so the Linux x64 musl binary can be published and versioned independently from the JavaScript wrapper.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
Install [`@palamedes/core-node`](https://www.npmjs.com/package/@palamedes/core-node) instead:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pnpm add @palamedes/core-node
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Package Role
|
|
25
|
+
|
|
26
|
+
- contains the `.node` binary for `linux-x64-musl`
|
|
27
|
+
- is loaded internally by `@palamedes/core-node`
|
|
28
|
+
- is not intended for direct application-level usage
|
|
29
|
+
|
|
30
|
+
## Related Packages
|
|
31
|
+
|
|
32
|
+
- [`@palamedes/core-node`](https://www.npmjs.com/package/@palamedes/core-node)
|
|
33
|
+
- [`@palamedes/core-node-darwin-arm64`](https://www.npmjs.com/package/@palamedes/core-node-darwin-arm64)
|
|
34
|
+
- [`@palamedes/core-node-linux-arm64-gnu`](https://www.npmjs.com/package/@palamedes/core-node-linux-arm64-gnu)
|
|
35
|
+
- [`@palamedes/core-node-linux-x64-gnu`](https://www.npmjs.com/package/@palamedes/core-node-linux-x64-gnu)
|
|
36
|
+
- [`@palamedes/core-node-win32-x64-msvc`](https://www.npmjs.com/package/@palamedes/core-node-win32-x64-msvc)
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
[](https://oss.sebastian-software.com/)
|
|
41
|
+
|
|
42
|
+
MIT © 2026 Sebastian Software
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@palamedes/core-node-linux-x64-musl",
|
|
3
|
+
"version": "0.9.0",
|
|
4
|
+
"description": "Linux x64 musl native bindings for @palamedes/core-node",
|
|
5
|
+
"homepage": "https://github.com/sebastian-software/palamedes",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/sebastian-software/palamedes.git",
|
|
9
|
+
"directory": "packages/core-node-linux-x64-musl"
|
|
10
|
+
},
|
|
11
|
+
"bugs": "https://github.com/sebastian-software/palamedes/issues",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"type": "commonjs",
|
|
14
|
+
"main": "./palamedes-node.node",
|
|
15
|
+
"files": [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.md",
|
|
18
|
+
"palamedes-node.node"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "node ../core-node/scripts/build-native.mjs"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=22.0.0"
|
|
25
|
+
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"os": [
|
|
30
|
+
"linux"
|
|
31
|
+
],
|
|
32
|
+
"cpu": [
|
|
33
|
+
"x64"
|
|
34
|
+
],
|
|
35
|
+
"libc": [
|
|
36
|
+
"musl"
|
|
37
|
+
]
|
|
38
|
+
}
|