@seed-hypermedia/cli 0.1.0-alpha.1 → 0.1.0-alpha.2

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 (2) hide show
  1. package/README.md +3 -2
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -5,11 +5,12 @@ Command-line interface for [Seed Hypermedia](https://hyper.media).
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- # Install globally
8
+ # Install globally (recommended)
9
9
  npm install -g @seed-hypermedia/cli
10
+ seed --help
10
11
 
11
12
  # Or run directly with npx
12
- npx @seed-hypermedia/cli --help
13
+ npx seed-hypermedia --help
13
14
  ```
14
15
 
15
16
  ## Usage
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@seed-hypermedia/cli",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0-alpha.2",
4
4
  "description": "Command-line interface for Seed Hypermedia",
5
5
  "type": "module",
6
6
  "bin": {
7
- "seed": "./dist/index.js"
7
+ "seed": "./dist/index.js",
8
+ "seed-hypermedia": "./dist/index.js"
8
9
  },
9
10
  "main": "./dist/index.js",
10
11
  "exports": {