@0010capacity/reddit-cli 0.1.0 → 0.1.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 (3) hide show
  1. package/README.md +2 -2
  2. package/install.js +2 -2
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # @reddit-cli/cli
1
+ # @0010capacity/reddit-cli
2
2
 
3
3
  A powerful CLI client for Reddit, written in Rust.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install -g @reddit-cli/cli
8
+ npm install -g @0010capacity/reddit-cli
9
9
  ```
10
10
 
11
11
  ## Usage
package/install.js CHANGED
@@ -3,8 +3,8 @@ const fs = require('fs');
3
3
  const path = require('path');
4
4
  const { execSync } = require('child_process');
5
5
 
6
- const VERSION = '0.1.0';
7
- const GITHUB_REPO = 'yourusername/reddit-cli';
6
+ const VERSION = '0.1.1';
7
+ const GITHUB_REPO = '0010capacity/reddit-cli';
8
8
 
9
9
  function getPlatform() {
10
10
  const platform = process.platform;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0010capacity/reddit-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "A powerful CLI client for Reddit",
5
5
  "keywords": [
6
6
  "reddit",
@@ -12,10 +12,10 @@
12
12
  "license": "MIT",
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/yourusername/reddit-cli.git"
15
+ "url": "git+https://github.com/0010capacity/reddit-cli.git"
16
16
  },
17
17
  "bin": {
18
- "reddit": "./bin/reddit-cli.js"
18
+ "reddit": "bin/reddit-cli.js"
19
19
  },
20
20
  "scripts": {
21
21
  "postinstall": "node install.js"