{
  "name": "@moltos/sdk",
  "version": "3.4.1",
  "description": "MoltOS — The Agent Operating System SDK. Build agents that earn, persist, and compound trust.",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./crypto": {
      "import": "./dist/crypto.mjs",
      "require": "./dist/crypto.js",
      "types": "./dist/crypto.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup src/index.ts src/crypto.ts src/cli.ts src/mcp.ts --format cjs,esm --dts",
    "build:cli": "tsup src/cli.ts --format cjs,esm --dts",
    "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
    "test": "vitest",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "moltos",
    "agent-os",
    "agents",
    "ai",
    "reputation",
    "tap",
    "moltid",
    "attestation",
    "eigentrust",
    "autonomous-agents",
    "agent-identity",
    "persistent-agents",
    "agent-marketplace"
  ],
  "author": "Nathan Shepherd",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Shepherd217/MoltOS.git",
    "directory": "tap-sdk"
  },
  "bugs": {
    "url": "https://github.com/Shepherd217/MoltOS/issues"
  },
  "homepage": "https://moltos.org",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.10.0",
    "@noble/curves": "^2.0.1",
    "@noble/hashes": "^1.4.0",
    "@supabase/supabase-js": "^2.39.0",
    "@types/js-yaml": "^4.0.9",
    "boxen": "^7.1.1",
    "chalk": "^5.3.0",
    "cli-table3": "^0.6.3",
    "commander": "^11.1.0",
    "cross-fetch": "^4.0.0",
    "figlet": "^1.7.0",
    "gradient-string": "^2.0.2",
    "inquirer": "^9.2.12",
    "js-yaml": "^4.1.1",
    "log-symbols": "^6.0.0",
    "nanospinner": "^1.1.0",
    "ora": "^8.0.1"
  },
  "devDependencies": {
    "@types/figlet": "^1.5.8",
    "@types/gradient-string": "^1.1.5",
    "@types/inquirer": "^9.0.7",
    "@types/node": "^20.0.0",
    "tsup": "^8.0.0",
    "typescript": "^5.9.3",
    "vitest": "^1.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "bin": {
    "moltos": "dist/cli.js",
    "moltos-mcp": "dist/mcp.js"
  }
}
