{
  "name": "@tangle-network/tcloud",
  "version": "0.4.14",
  "description": "TypeScript SDK and CLI for Tangle Router, Sandbox, model routing, and agent service calls",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "tcloud": "dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./attestation": {
      "types": "./dist/attestation.d.ts",
      "import": {
        "types": "./dist/attestation.d.ts",
        "default": "./dist/attestation.js"
      },
      "require": {
        "types": "./dist/attestation.d.cts",
        "default": "./dist/attestation.cjs"
      }
    },
    "./sandbox": {
      "types": "./dist/sandbox.d.ts",
      "import": {
        "types": "./dist/sandbox.d.ts",
        "default": "./dist/sandbox.js"
      },
      "require": {
        "types": "./dist/sandbox.d.cts",
        "default": "./dist/sandbox.cjs"
      }
    },
    "./shielded": {
      "types": "./dist/shielded.d.ts",
      "import": {
        "types": "./dist/shielded.d.ts",
        "default": "./dist/shielded.js"
      },
      "require": {
        "types": "./dist/shielded.d.cts",
        "default": "./dist/shielded.cjs"
      }
    },
    "./instance": {
      "types": "./dist/instance.d.ts",
      "node": {
        "import": {
          "types": "./dist/instance.d.ts",
          "default": "./dist/instance.js"
        },
        "require": {
          "types": "./dist/instance.d.cts",
          "default": "./dist/instance.cjs"
        }
      }
    }
  },
  "dependencies": {
    "@scure/bip32": "^2.2.0",
    "@scure/bip39": "^2.2.0",
    "@tangle-network/sandbox": "^0.9.5",
    "commander": "^14.0.3",
    "viem": "^2.48.4",
    "@tangle-network/tcloud-attestation": "^0.1.1"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "tsup": "^8.5.1",
    "tsx": "^4.0.0",
    "typedoc": "^0.28.19",
    "typescript": "^5.0.0",
    "vitest": "^4.1.5"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tangle-network/tcloud.git",
    "directory": "packages/tcloud"
  },
  "homepage": "https://router.tangle.tools/docs",
  "keywords": [
    "tangle",
    "ai",
    "llm",
    "inference",
    "decentralized",
    "agent-runtime",
    "sandbox",
    "browser-agent",
    "x402",
    "openai",
    "sdk",
    "cli",
    "privacy",
    "shielded-credits",
    "tangle-router"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsup src/index.ts src/cli.ts src/mcp.ts src/shielded.ts src/instance.ts src/attestation.ts src/sandbox.ts --format esm,cjs --dts --clean --external socks-proxy-agent",
    "docs": "typedoc src/index.ts --out docs --name tcloud --readme README.md",
    "test": "vitest run",
    "test:e2e": "vitest run --config vitest.e2e.config.ts",
    "dev": "tsx src/cli.ts"
  }
}