channelkit 1.0.0 → 1.0.1

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 +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -33,15 +33,15 @@ Your app receives every message in a **unified JSON format**, regardless of sour
33
33
  ## Quick Start
34
34
 
35
35
  ```bash
36
- npm install -g @dirbalak/channelkit
36
+ npm install -g channelkit
37
37
  channelkit
38
38
  ```
39
39
 
40
40
  > **Upgrading?** If you previously installed ChannelKit without the `-g` flag (global), you should uninstall it first and reinstall globally. A local install won't put `channelkit` on your PATH, so the CLI command won't be available system-wide:
41
41
  >
42
42
  > ```bash
43
- > npm uninstall @dirbalak/channelkit # remove the local install
44
- > npm install -g @dirbalak/channelkit # reinstall globally
43
+ > npm uninstall channelkit # remove the local install
44
+ > npm install -g channelkit # reinstall globally
45
45
  > ```
46
46
 
47
47
  On first run, ChannelKit will ask how you'd like to set up:
@@ -766,7 +766,7 @@ channelkit channel provision
766
766
  ## Development
767
767
 
768
768
  ```bash
769
- git clone https://github.com/dirbalak/channelkit.git
769
+ git clone https://github.com/valery380/channelkit.git
770
770
  cd channelkit
771
771
  npm install
772
772
  npm run dev # starts with auto-reload on code changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "channelkit",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A self-hosted messaging gateway that connects chat channels to any application via webhooks",
5
5
  "main": "dist/index.js",
6
6
  "bin": {