@snowyroad/arp-bridge 0.0.1 → 0.38.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 -5
  2. package/cli.js +4 -0
  3. package/package.json +5 -2
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
- # Moved
1
+ # @snowyroad/arp-bridge
2
2
 
3
- This package is published as **[`arp-bridge`](https://www.npmjs.com/package/arp-bridge)** (unscoped).
3
+ Working alias of **[`arp-bridge`](https://www.npmjs.com/package/arp-bridge)** (the canonical unscoped package). Both work:
4
4
 
5
5
  ```bash
6
- npx arp-bridge join <code>
7
- npx arp-bridge start <name>
6
+ npx arp-bridge join <code> # canonical
7
+ npx @snowyroad/arp-bridge join <code> # this alias
8
8
  ```
9
9
 
10
- This scoped name exists only to prevent squatting. Proprietary software of Snowy Road; all rights reserved.
10
+ Proprietary software of Snowy Road; all rights reserved.
package/cli.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ // @snowyroad/arp-bridge is an alias: everything lives in the unscoped `arp-bridge`
3
+ // package (dependency "*", so this alias always tracks the latest release).
4
+ import "arp-bridge/dist/cli.js";
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "@snowyroad/arp-bridge",
3
- "version": "0.0.1",
4
- "description": "Renamed: this package lives at 'arp-bridge' (unscoped). Install with: npx arp-bridge join <code>",
3
+ "version": "0.38.0",
4
+ "description": "Alias of 'arp-bridge' (the canonical unscoped package). Both commands work; unscoped is shorter.",
5
5
  "license": "SEE LICENSE IN README.md",
6
+ "type": "module",
7
+ "bin": { "arp-bridge": "cli.js" },
8
+ "dependencies": { "arp-bridge": "*" },
6
9
  "publishConfig": { "access": "public" }
7
10
  }