{
  "name": "agent-toolprint",
  "version": "0.1.1",
  "description": "Double-signed receipts for tool invocations by AI agents — DSSE + JCS + Ed25519, verifiable offline.",
  "author": "Vlad Bordei <bordeivlad@gmail.com>",
  "type": "module",
  "exports": {
    ".": "./src/index.ts"
  },
  "scripts": {
    "test": "bun test",
    "demo": "bun run examples/demo.ts",
    "demo:compile": "bun build --compile examples/demo.ts --outfile dist/demo",
    "conformance": "bun run conformance/run.ts",
    "typecheck": "tsc --noEmit",
    "check": "biome check .",
    "format": "biome format --write ."
  },
  "license": "Apache-2.0",
  "homepage": "https://github.com/p-vbordei/agent-toolprint#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/p-vbordei/agent-toolprint.git"
  },
  "bugs": {
    "url": "https://github.com/p-vbordei/agent-toolprint/issues"
  },
  "keywords": [
    "agent",
    "ai-agent",
    "tool-call",
    "audit",
    "receipt",
    "dsse",
    "ed25519",
    "did-key",
    "jcs",
    "non-repudiation",
    "provenance",
    "mcp"
  ],
  "engines": {
    "bun": ">=1.3"
  },
  "files": [
    "src",
    "conformance",
    "SPEC.md",
    "SCOPE.md",
    "CHANGELOG.md",
    "ROADMAP.md",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@noble/curves": "^2.2.0",
    "@noble/hashes": "^2.2.0",
    "@scure/base": "^2.2.0",
    "canonicalize": "^3.0.0",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.13",
    "@types/bun": "^1.3.13",
    "typescript": "^6.0.3"
  }
}
