@bastani/atomic-natives-linux-arm64-musl 0.9.11-alpha.10
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 +7 -0
- package/package.json +11 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @bastani/atomic-natives-linux-arm64-musl
|
|
2
|
+
|
|
3
|
+
Placeholder release. npm requires a package to exist before a trusted publisher
|
|
4
|
+
(OIDC) can be configured, and OIDC cannot perform a package's first publish
|
|
5
|
+
(npm/cli#8544). This version reserves the name only and contains no native
|
|
6
|
+
binding. The real `atomic_natives.linux-arm64-musl.node` ships from
|
|
7
|
+
0.9.11-alpha.11 onward via .github/workflows/publish.yml.
|
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bastani/atomic-natives-linux-arm64-musl",
|
|
3
|
+
"version": "0.9.11-alpha.10",
|
|
4
|
+
"description": "Placeholder to reserve the package name so npm trusted publishing (OIDC) can be configured. Real bindings ship from 0.9.11-alpha.11 onward.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"os": ["linux"],
|
|
7
|
+
"cpu": ["arm64"],
|
|
8
|
+
"libc": ["musl"],
|
|
9
|
+
"repository": { "type": "git", "url": "git+https://github.com/bastani-inc/atomic.git", "directory": "packages/natives" },
|
|
10
|
+
"engines": { "bun": ">=1.3.14", "node": ">= 12.22.0 < 13 || >= 14.17.0 < 15 || >= 15.12.0 < 16 || >= 16.0.0" }
|
|
11
|
+
}
|