busa-cli 0.9.3

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/dist/cli.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ runCli
4
+ } from "./chunk-C5BGRNMU.js";
5
+
6
+ // src/cli.ts
7
+ process.exit(await runCli(process.argv.slice(2)));
package/dist/index.js ADDED
@@ -0,0 +1,20 @@
1
+ import {
2
+ HELP,
3
+ render,
4
+ runCli
5
+ } from "./chunk-C5BGRNMU.js";
6
+
7
+ // src/index.ts
8
+ import {
9
+ createBusabaseClient,
10
+ DEFAULT_BASE_URL,
11
+ normalizeBaseUrl
12
+ } from "busabase-sdk";
13
+ export {
14
+ DEFAULT_BASE_URL,
15
+ HELP,
16
+ createBusabaseClient,
17
+ normalizeBaseUrl,
18
+ render,
19
+ runCli
20
+ };
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "busa-cli",
3
+ "version": "0.9.3",
4
+ "description": "Command-line client for the Busabase OpenAPI REST API. Talks to a local or remote `busabase server`. Short-name alias for busabase-cli.",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/busabase/busabase/tree/main/apps/busabase-cli",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/busabase/busabase.git",
10
+ "directory": "apps/busabase-cli"
11
+ },
12
+ "bugs": "https://github.com/busabase/busabase/issues",
13
+ "type": "module",
14
+ "private": false,
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "bin": {
19
+ "busa-cli": "./bin/busabase-cli.mjs"
20
+ },
21
+ "main": "./dist/index.js",
22
+ "module": "./dist/index.js",
23
+ "exports": {
24
+ ".": {
25
+ "default": "./dist/index.js"
26
+ }
27
+ },
28
+ "files": [
29
+ "bin",
30
+ "dist",
31
+ "README.md"
32
+ ],
33
+ "dependencies": {
34
+ "busabase-sdk": "0.9.3",
35
+ "commander": "^14.0.0"
36
+ },
37
+ "engines": {
38
+ "node": ">=24.18.0"
39
+ }
40
+ }