{
  "name": "@tychilabs/agent-finance",
  "version": "1.0.0",
  "description": "Financial home for AI agents — TypeScript SDK for self-custody wallets on the agent's device, policy on every spend, local signing, x402 payments, and ERC-8004 identity.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "SECURITY.md",
    "CHANGELOG.md",
    "docs"
  ],
  "engines": {
    "node": ">=20"
  },
  "keywords": [
    "tyi",
    "tychi",
    "tychilabs",
    "agent-finance",
    "ai-agents",
    "ai",
    "crypto",
    "wallet",
    "agent-wallet",
    "self-custody",
    "x402",
    "erc-8004",
    "policy",
    "monad",
    "typescript"
  ],
  "author": "Tychi Labs <yash@tychilabs.com>",
  "license": "Apache-2.0",
  "homepage": "https://ai.tychilabs.com",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TychiWallet/agent-finance.git",
    "directory": "typescript"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run build",
    "typecheck:test": "tsc -p tsconfig.test.json --noEmit",
    "test:native": "TYI_RUN_DEBUG=1 tsx --env-file=.env.sdk tests/native.test.ts",
    "test:tokens": "TYI_RUN_DEBUG=1 tsx --env-file=.env.sdk tests/tokens.test.ts",
    "test:erc8004": "TYI_RUN_DEBUG=1 tsx --env-file=.env.sdk tests/erc8004.test.ts",
    "test:x402:buyer": "TYI_RUN_DEBUG=1 tsx --env-file=.env.sdk tests/x402_buyer.test.ts",
    "test:x402:seller": "TYI_RUN_DEBUG=1 tsx --env-file=.env.sdk tests/x402_seller.test.ts",
    "test:mint": "TYI_RUN_DEBUG=1 tsx --env-file=.env.sdk tests/mint.test.ts"
  },
  "dependencies": {
    "bip39": "^3.1.0",
    "ethers": "^6.17.0",
    "tweetnacl": "^1.0.3"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@types/pg": "^8.11.0",
    "dotenv": "^16.4.7",
    "pg": "^8.13.0",
    "tsx": "^4.22.4",
    "typescript": "^5.7.0"
  }
}
