@node-wreq/linux-x64-musl 0.0.0-reserved.0 → 1.0.0-rc2

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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @node-wreq/linux-x64-musl
2
2
 
3
- Temporary placeholder package used only to reserve the package name and configure GitHub trusted publishing.
3
+ This package only contains the prebuilt native platform binary.
4
4
 
5
- Do not install this package directly.
5
+ It is a helper package used by [`node-wreq`](https://github.com/StopMakingThatBigFace/node-wreq).
6
+
7
+ You should install the main package instead:
8
+
9
+ ```bash
10
+ npm install node-wreq
11
+ ```
12
+
13
+ Target triple: `x86_64-unknown-linux-musl`
14
+ Binary: `node-wreq.linux-x64-musl.node`
Binary file
package/package.json CHANGED
@@ -1,12 +1,32 @@
1
1
  {
2
2
  "name": "@node-wreq/linux-x64-musl",
3
- "version": "0.0.0-reserved.0",
4
- "description": "Temporary placeholder package for trusted publishing setup",
3
+ "version": "1.0.0-rc2",
4
+ "description": "Prebuilt native binding for node-wreq on x86_64-unknown-linux-musl",
5
5
  "license": "MIT",
6
+ "author": "StopMakingThatBigFace",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/StopMakingThatBigFace/node-wreq.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/StopMakingThatBigFace/node-wreq/issues"
13
+ },
14
+ "homepage": "https://github.com/StopMakingThatBigFace/node-wreq#readme",
15
+ "os": [
16
+ "linux"
17
+ ],
18
+ "cpu": [
19
+ "x64"
20
+ ],
21
+ "libc": [
22
+ "musl"
23
+ ],
24
+ "main": "./node-wreq.linux-x64-musl.node",
25
+ "files": [
26
+ "node-wreq.linux-x64-musl.node",
27
+ "README.md"
28
+ ],
6
29
  "publishConfig": {
7
30
  "access": "public"
8
- },
9
- "os": ["linux"],
10
- "cpu": ["x64"],
11
- "libc": ["musl"]
31
+ }
12
32
  }