@spikard/node-linux-arm64-gnu 0.0.1
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 +2 -0
- package/index.js +1 -0
- package/package.json +15 -0
package/README.md
ADDED
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// placeholder — real native binary published via CI
|
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@spikard/node-linux-arm64-gnu",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Rust-centric multi-language HTTP framework with polyglot bindings",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/Goldziher/spikard.git"
|
|
9
|
+
},
|
|
10
|
+
"main": "index.js",
|
|
11
|
+
"os": ["linux"],
|
|
12
|
+
"cpu": ["arm64"],
|
|
13
|
+
"libc": ["glibc"],
|
|
14
|
+
"publishConfig": { "access": "public" }
|
|
15
|
+
}
|