{
  "name": "@agenticprimitives/content-primitives",
  "version": "1.0.0-alpha.27",
  "description": "Verifiable Content Substrate SDK: name, resolve, commit, entitlement-gate, and cite off-platform content controlled by third-party rights holders. Owns CanonicalLocus / CorpusManifest / ContentDescriptor / CitationAssertion / Entitlement (FRBR-aligned), deterministic locusId, Merkle corpus commitments, and issuer-signature verification. Content-agnostic — no vertical/faith vocabulary, no content text (ADR-0033).",
  "homepage": "https://agenticprimitives.dev",
  "bugs": {
    "url": "https://github.com/agentictrustlabs/agenticprimitives/issues"
  },
  "author": {
    "name": "Agentic Trust Labs",
    "url": "https://agenticprimitives.dev"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/agentictrustlabs/agenticprimitives.git",
    "directory": "packages/content-primitives"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./merkle": {
      "types": "./dist/merkle.d.ts",
      "import": "./dist/merkle.js"
    }
  },
  "files": [
    "LICENSE",
    "dist",
    "spec.md",
    "README.md",
    "CLAUDE.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "viem": "^2.52.2",
    "@agenticprimitives/types": "1.0.0-alpha.26",
    "@agenticprimitives/verifiable-credentials": "0.0.0-alpha.23"
  },
  "devDependencies": {
    "@types/node": "^22.7.0",
    "vitest": "^4.1.8"
  },
  "keywords": [
    "content",
    "commitment",
    "merkle",
    "provenance",
    "citation",
    "agentic",
    "agentic-primitives",
    "agenticprimitives",
    "ai-agents",
    "agent-authority",
    "agentic-trust"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run",
    "test:unit": "vitest run test/reference.test.ts test/merkle.test.ts test/descriptor.test.ts test/entitlement.test.ts test/resolution.test.ts --passWithNoTests",
    "test:integration": "vitest run test/integration --passWithNoTests",
    "test:watch": "vitest",
    "clean": "rm -rf dist"
  }
}