todoscan 0.1.3 → 0.1.4

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 -3
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -22,14 +22,14 @@ Stop forgetting TODOs buried in your code. Turn them into real, actionable tasks
22
22
 
23
23
  ### Run with npx (recommended)
24
24
  ```bash
25
- npx todo
25
+ npx todoscan
26
26
  ```
27
27
 
28
28
 
29
29
  ### or install globaly
30
30
  ```bash
31
- npm install -g todo
31
+ npm install -g todoscan
32
32
  ```
33
33
  ### Run
34
34
  ```bash
35
- todo
35
+ todoscan
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "todoscan",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Scan TODO comments in your code and push them to Todoist",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
+ "repository": {
8
+ "url": "https://github.com/Jamie-Poeffel/todoscan"
9
+ },
7
10
  "bin": {
8
11
  "todoscan": "./dist/index.js"
9
12
  },
@@ -44,6 +47,7 @@
44
47
  "dotenv": "^17.2.3",
45
48
  "ignore": "^7.0.5",
46
49
  "inquirer": "^13.2.2",
47
- "prompt": "^1.3.0"
50
+ "prompt": "^1.3.0",
51
+ "prompts": "^2.4.2"
48
52
  }
49
53
  }