checklist-cli 1.0.0
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.
- package/README.md +20 -0
- package/package.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# checklist-cli
|
|
2
|
+
|
|
3
|
+
**This package is empty on purpose. You want [`checklists-cli`](https://www.npmjs.com/package/checklists-cli) — plural.**
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install -g checklists-cli
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
That package installs **both** commands, so whichever you type by reflex works:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
checklists pending # what is waiting on your approval
|
|
13
|
+
checklist pending # same command, singular alias
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
This name exists only to catch the singular guess and point here. It has no code, no dependencies,
|
|
17
|
+
and installs no binaries — installing it does nothing at all.
|
|
18
|
+
|
|
19
|
+
Approve [checklists.io](https://checklists.io) human gates from the terminal:
|
|
20
|
+
[docs](https://checklists.io/help) · [source](https://github.com/ihistand/checklists-io/tree/main/packages/cli)
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "checklist-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Not the package you want — install checklists-cli (plural) instead.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://www.npmjs.com/package/checklists-cli",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/ihistand/checklists-io.git",
|
|
10
|
+
"directory": "packages/checklist-cli-stub"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/ihistand/checklists-io/issues"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"README.md"
|
|
17
|
+
]
|
|
18
|
+
}
|