ethershell 0.1.0-alpha.13 → 0.1.0-alpha.15

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 +8 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -29,18 +29,22 @@ An interactive Node.js console for Ethereum smart contract development. Write, c
29
29
  ### Installation
30
30
 
31
31
  ```bash
32
- # Install globally
32
+ # Install globally:
33
33
  npm i -g ethershell
34
34
 
35
- # Start EtherShell
36
- npm start
35
+ # Start EtherShell:
36
+ ethershell
37
+
38
+ #or
39
+
40
+ npx ethershell
37
41
  ```
38
42
 
39
43
  ### Basic Usage
40
44
 
41
45
  ```bash
42
46
  # Start the console
43
- npm start
47
+ ethershell
44
48
 
45
49
  # You should see:
46
50
  # EtherShell>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ethershell",
3
- "version": "0.1.0-alpha.13",
3
+ "version": "0.1.0-alpha.15",
4
4
  "description": "Interactive JavaScript console for Ethereum smart contract management",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Alireza Kiakojouri (alirezaethdev@gmail.com)",