@bitspark-ai/ba 0.1.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.
Files changed (3) hide show
  1. package/README.md +583 -0
  2. package/dist/main.js +28168 -0
  3. package/package.json +18 -0
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@bitspark-ai/ba",
3
+ "version": "0.1.0",
4
+ "description": "ba — the bitagent family CLI runner. Mounts each service's plugin under its namespace.",
5
+ "type": "module",
6
+ "bin": {
7
+ "ba": "dist/main.js"
8
+ },
9
+ "files": [
10
+ "dist/main.js"
11
+ ],
12
+ "engines": {
13
+ "node": ">=24"
14
+ },
15
+ "publishConfig": {
16
+ "access": "public"
17
+ }
18
+ }