@kreuzberg/node-linux-x64-musl 5.0.0-placeholder.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/index.js +5 -0
- package/package.json +18 -0
package/index.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
// Placeholder for trusted-publisher bootstrap.
|
|
2
|
+
// The real native binary ships via the @kreuzberg/node meta-package's optionalDependencies.
|
|
3
|
+
throw new Error(
|
|
4
|
+
'@kreuzberg/node-linux-x64-musl placeholder — install @kreuzberg/node and the real platform binary will be resolved.'
|
|
5
|
+
);
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kreuzberg/node-linux-x64-musl",
|
|
3
|
+
"version": "5.0.0-placeholder.0",
|
|
4
|
+
"description": "Placeholder for trusted-publisher bootstrap. Real platform binary ships with @kreuzberg/node.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"files": ["index.js"],
|
|
7
|
+
"license": "Elastic-2.0",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/kreuzberg-dev/kreuzberg.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/kreuzberg-dev/kreuzberg",
|
|
13
|
+
"os": ["linux"],
|
|
14
|
+
"cpu": ["x64"],
|
|
15
|
+
"libc": ["musl"],
|
|
16
|
+
"engines": {"node": ">= 18"},
|
|
17
|
+
"publishConfig": {"access": "public"}
|
|
18
|
+
}
|