xapi-to 0.1.13 → 0.1.14
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/dist/index.js +1335 -0
- package/package.json +14 -9
- package/src/client.ts +0 -265
- package/src/codegen.ts +0 -307
- package/src/commands/action.ts +0 -328
- package/src/commands/balance.ts +0 -35
- package/src/commands/config.ts +0 -58
- package/src/commands/oauth.ts +0 -297
- package/src/commands/register.ts +0 -77
- package/src/commands/topup.ts +0 -33
- package/src/config.ts +0 -69
- package/src/format.ts +0 -61
- package/src/index.ts +0 -216
package/README.md
CHANGED
|
@@ -8,13 +8,15 @@ Agent-friendly command-line interface for [xAPI](https://xapi.to) — discover a
|
|
|
8
8
|
# Via npx (no install needed)
|
|
9
9
|
npx xapi-to --help
|
|
10
10
|
|
|
11
|
-
# Or install globally with
|
|
12
|
-
|
|
11
|
+
# Or install globally with npm
|
|
12
|
+
npm install -g xapi-to
|
|
13
13
|
|
|
14
14
|
# Or from source
|
|
15
15
|
cd xapi-cli && bun install
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+
The published CLI runs on Node.js 18+. Bun is only required for local source development and tests.
|
|
19
|
+
|
|
18
20
|
## Quick Start
|
|
19
21
|
|
|
20
22
|
```bash
|