@relayburn/cli-darwin-x64 0.0.1 → 2.1.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.
Files changed (3) hide show
  1. package/README.md +5 -3
  2. package/bin/burn +0 -0
  3. package/package.json +8 -3
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
- # darwin-x64 (cli)
1
+ # @relayburn/cli-darwin-x64
2
2
 
3
- Placeholder package reserved for the prebuilt `burn` CLI binary for `darwin-x64`. The real artifact ships at version 2.0+.
3
+ Prebuilt `burn` binary for `darwin-x64`. You should not depend on this
4
+ package directly — install [`relayburn`](https://www.npmjs.com/package/relayburn)
5
+ and the right platform binary is resolved via `optionalDependencies`.
4
6
 
5
- See https://github.com/AgentWorkforce/burn (issue #240) for context.
7
+ See <https://github.com/AgentWorkforce/burn>.
package/bin/burn ADDED
Binary file
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "@relayburn/cli-darwin-x64",
3
- "version": "0.0.1",
4
- "description": "Placeholder — reserved for prebuilt `burn` binary at 2.0+. See https://github.com/AgentWorkforce/burn issue #240.",
3
+ "version": "2.1.0",
4
+ "description": "Prebuilt `burn` binary for darwin-x64.",
5
+ "bin": {
6
+ "burn": "./bin/burn"
7
+ },
5
8
  "files": [
9
+ "bin/",
6
10
  "package.json",
7
11
  "README.md"
8
12
  ],
@@ -21,6 +25,7 @@
21
25
  "directory": "packages/relayburn/npm/darwin-x64"
22
26
  },
23
27
  "publishConfig": {
24
- "access": "public"
28
+ "access": "public",
29
+ "tag": "next"
25
30
  }
26
31
  }