@tonbo/cli 0.1.2 → 0.3.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 +21 -21
  2. package/dist/bin/tonbo.js +389 -261
  3. package/package.json +7 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tonbo/cli",
3
- "version": "0.1.2",
3
+ "version": "0.3.0",
4
4
  "description": "Deploy persistent Agents and manage their Machines from the command line.",
5
5
  "homepage": "https://tonbo.dev",
6
6
  "bugs": {
@@ -22,12 +22,12 @@
22
22
  "access": "public"
23
23
  },
24
24
  "scripts": {
25
- "build": "pnpm run build:source-inspector && node scripts/generate-contracts.mjs --check && tsc -p tsconfig.json && node scripts/bundle.mjs",
26
- "build:source-inspector": "pnpm --filter @tonbo/agent-source-inspector build",
25
+ "build": "pnpm run build:source-tools && node scripts/generate-contracts.mjs --check && tsc -p tsconfig.json && node scripts/bundle.mjs",
26
+ "build:source-tools": "pnpm --filter @tonbo/agent-source-inspector --filter @tonbo/agent-source-bundler build",
27
27
  "generate:contracts": "node scripts/generate-contracts.mjs",
28
- "lint": "pnpm run build:source-inspector && eslint . --max-warnings=0",
28
+ "lint": "pnpm run build:source-tools && eslint . --max-warnings=0",
29
29
  "test": "pnpm build && node --test dist/test/*.test.js",
30
- "typecheck": "pnpm run build:source-inspector && node scripts/generate-contracts.mjs --check && tsc -p tsconfig.json --noEmit"
30
+ "typecheck": "pnpm run build:source-tools && node scripts/generate-contracts.mjs --check && tsc -p tsconfig.json --noEmit"
31
31
  },
32
32
  "dependencies": {
33
33
  "@inquirer/select": "4.4.2",
@@ -40,9 +40,9 @@
40
40
  "devDependencies": {
41
41
  "@tonbo/agent-source-inspector": "workspace:*",
42
42
  "@types/node": "^20.19.37",
43
- "@types/tar-stream": "^3.1.4",
44
43
  "esbuild": "0.25.4",
45
- "typescript": "catalog:"
44
+ "typescript": "catalog:",
45
+ "@tonbo/agent-source-bundler": "workspace:*"
46
46
  },
47
47
  "engines": {
48
48
  "node": ">=22"