@sys9/run9-cli 0.2.6 → 0.4.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/README.md CHANGED
@@ -12,6 +12,7 @@ bun install -g @sys9/run9-cli
12
12
 
13
13
  The installed `run9` launcher is a POSIX shell wrapper around the bundled
14
14
  native binary, so `bun install -g` works even when `node` is not present.
15
+ This package only supports Linux/macOS on `x64`/`arm64`; npm metadata rejects Windows.
15
16
 
16
17
  Run:
17
18
 
package/package.json CHANGED
@@ -1,15 +1,19 @@
1
1
  {
2
2
  "name": "@sys9/run9-cli",
3
- "version": "0.2.6",
3
+ "version": "0.4.0",
4
4
  "description": "run9 CLI with bundled native binaries for Linux and macOS",
5
5
  "license": "MIT",
6
6
  "bin": {
7
7
  "run9": "bin/run9"
8
8
  },
9
- "type": "module",
10
- "engines": {
11
- "node": ">=16"
12
- },
9
+ "os": [
10
+ "darwin",
11
+ "linux"
12
+ ],
13
+ "cpu": [
14
+ "arm64",
15
+ "x64"
16
+ ],
13
17
  "files": [
14
18
  "bin",
15
19
  "vendor",