{
  "name": "@livx.cc/agentx",
  "version": "0.99.20",
  "description": "Edge-native AI agent runtime — drives a virtual filesystem via any LLM (ai.libx.js). Same bytes run in node, browser, or edge.",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./mcp.client": {
      "types": "./dist/mcp.client.d.ts",
      "default": "./dist/mcp.client.js"
    },
    "./tools.shell": {
      "types": "./dist/tools.shell.d.ts",
      "default": "./dist/tools.shell.js"
    },
    "./models": {
      "types": "./dist/models.d.ts",
      "default": "./dist/models.js"
    }
  },
  "license": "MIT",
  "author": "Elya Livshitz",
  "homepage": "https://github.com/Livshitz/agentx#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Livshitz/agentx.git"
  },
  "bugs": {
    "url": "https://github.com/Livshitz/agentx/issues"
  },
  "keywords": [
    "ai",
    "agent",
    "llm",
    "virtual-filesystem",
    "edge",
    "runtime",
    "tools",
    "mcp",
    "claude",
    "sandbox"
  ],
  "engines": {
    "node": ">=18"
  },
  "bin": {
    "agentx": "dist/cli.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
    "test": "timeout -k 10 600 bun test",
    "test:watch": "bun test --watch",
    "test:redteam": "bun test tests/jail.test.ts tests/symlink.test.ts tests/sandbox.test.ts",
    "qa:tty": "bun test tests/cli-tty.test.ts",
    "bench:duplex": "timeout -k 10 120 bun test tests/duplex-bench.test.ts",
    "bench:voice": "timeout -k 15 900 bun tests/voice-bench.ts",
    "test:ui": "cd web && bun run test:ui",
    "cli": "bun cli/cli.ts",
    "prepublishOnly": "bun run build",
    "typecheck": "tsc -p tsconfig.typecheck.json"
  },
  "dependencies": {
    "@bod.ee/db": "^2.14.3",
    "@livx.cc/wcli": "^2.2.5",
    "ai.libx.js": "^0.18.9",
    "libx.js": "^6.3.0"
  },
  "devDependencies": {
    "@bod.ee/voice": "https://bodify.bod.ee/api/registry/%40bod.ee%2Fvoice/-/voice-0.1.3.tgz",
    "@types/bun": "latest",
    "tsup": "^8.5.1",
    "typescript": "^5"
  }
}
