@ls-apis/cli 0.0.10 → 0.0.12
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 +4 -2
- package/data/apis.json +12395 -191
- package/dist/config.js +36 -0
- package/dist/index.js +0 -0
- 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/search.js +50 -0
- package/dist/types.js +1 -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 **5,000+ 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** -
|
|
9
|
+
- **Comprehensive Dataset** - 5,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
|
|
@@ -20,12 +20,14 @@ A curated collection of **4,000+ public APIs** with a powerful CLI search tool.
|
|
|
20
20
|
git clone https://github.com/koalyptus/ls-apis.git
|
|
21
21
|
cd ls-apis
|
|
22
22
|
npm install
|
|
23
|
+
npm build
|
|
23
24
|
```
|
|
24
25
|
|
|
25
26
|
### Quick Start
|
|
26
27
|
|
|
27
28
|
```bash
|
|
28
29
|
npm install -g @ls-apis/cli
|
|
30
|
+
npm build
|
|
29
31
|
ls-apis -q weather
|
|
30
32
|
```
|
|
31
33
|
|