@ls-apis/cli 0.0.0 → 0.0.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.
- package/README.md +13 -3
- package/data/apis.json +864 -1050
- package/dist/config.js +5 -1
- package/dist/index.js +29 -1
- package/dist/packages/cli/src/categories.js +13 -0
- package/dist/packages/cli/src/colors.js +19 -0
- package/dist/packages/cli/src/config.js +36 -0
- package/dist/packages/cli/src/formatter.js +73 -0
- package/dist/packages/cli/src/index.js +178 -0
- package/dist/packages/cli/src/providers.js +21 -0
- package/dist/packages/cli/src/qa.js +14 -0
- package/dist/packages/cli/src/search.js +50 -0
- package/dist/packages/cli/src/types.js +1 -0
- package/dist/paths.js +15 -0
- package/dist/qa.js +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
### Public APIs Discovery for Humans & Agents
|
|
4
4
|
|
|
5
|
-
A curated collection of **
|
|
5
|
+
A curated collection of **4,300+ public APIs** with a powerful CLI search tool. Discover, filter, and explore APIs by category, authentication type.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
9
|
-
- **Comprehensive Dataset** - 4,
|
|
9
|
+
- **Comprehensive Dataset** - 4,000+ APIs aggregated from multiple sources
|
|
10
10
|
- **Smart Search** - Filter by query, category, authentication type
|
|
11
11
|
- **Colored Output** - Syntax-highlighted results (use `--no-color` to disable)
|
|
12
12
|
- **Multiple Output Formats** - Text or JSON output
|
|
@@ -70,8 +70,18 @@ npx ls-apis categories --output json
|
|
|
70
70
|
| ------------ | ----------------------------------- |
|
|
71
71
|
| `categories` | List all API categories with counts |
|
|
72
72
|
| `providers` | List all data providers |
|
|
73
|
+
| `config` | Show config settings and file path |
|
|
74
|
+
| `qa` | Run QA checks (terminal summary) |
|
|
73
75
|
|
|
74
|
-
|
|
76
|
+
```bash
|
|
77
|
+
# Run QA via CLI
|
|
78
|
+
npx ls-apis qa
|
|
79
|
+
|
|
80
|
+
# Save QA report to custom path
|
|
81
|
+
npx ls-apis qa -f ./my-report.json
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
### QA Options
|
|
75
85
|
|
|
76
86
|
| Flag | Alias | Description |
|
|
77
87
|
| ---------- | ----- | ----------------------------------- |
|