{
  "name": "@agenticvault/agentic-vault",
  "version": "0.1.4",
  "description": "Server-side EVM signing with AWS KMS and built-in DeFi protocol awareness. Expose your wallet to AI agents via MCP, CLI, or OpenClaw.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./protocols": {
      "types": "./dist/protocols/index.d.ts",
      "import": "./dist/protocols/index.js"
    },
    "./agentic": {
      "types": "./dist/agentic/index.d.ts",
      "import": "./dist/agentic/index.js"
    }
  },
  "files": [
    "dist",
    "!dist/.tsbuildinfo",
    "README.md",
    "LICENSE",
    ".claude-plugin",
    "skills",
    ".mcp.json.example",
    "policy.example.json",
    ".env.example"
  ],
  "bin": {
    "agentic-vault": "./dist/cli/index.js",
    "agentic-vault-mcp": "./dist/agentic/cli.js"
  },
  "packageManager": "pnpm@10.29.1",
  "sideEffects": false,
  "engines": {
    "node": ">=22"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/agenticvault/agentic-vault"
  },
  "license": "MIT",
  "keywords": [
    "agentic",
    "vault",
    "wallet",
    "aws",
    "kms",
    "cdp",
    "ethereum",
    "signer",
    "evm",
    "secp256k1",
    "eip-712",
    "typed-data",
    "viem",
    "server-wallet",
    "mcp",
    "ai-agent",
    "claude-code",
    "defi",
    "uniswap",
    "aave",
    "openclaw",
    "protocol-decoder",
    "policy-engine"
  ],
  "bugs": {
    "url": "https://github.com/agenticvault/agentic-vault/issues"
  },
  "homepage": "https://github.com/agenticvault/agentic-vault#readme",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "scripts": {
    "build": "tsc -b",
    "typecheck": "tsc -p tsconfig.check.json",
    "lint": "eslint src/ test/",
    "lint:fix": "eslint src/ test/ --fix",
    "test": "vitest run",
    "test:unit": "vitest run test/unit",
    "test:integration": "vitest run test/integration",
    "test:e2e": "vitest run test/e2e",
    "test:coverage": "vitest run test/unit --coverage",
    "prepack": "pnpm build"
  },
  "dependencies": {
    "@aws-sdk/client-kms": "^3.985.0",
    "@modelcontextprotocol/sdk": "^1.26.0",
    "viem": "^2.45.1",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.2",
    "@types/node": "^25.2.1",
    "dotenv": "^17.2.4",
    "eslint": "^9.39.2",
    "tsx": "^4.19.4",
    "typescript": "^5.9.3",
    "@vitest/coverage-v8": "^4.0.18",
    "typescript-eslint": "^8.55.0",
    "vitest": "^4.0.18"
  }
}
