{
  "name": "@motebit/protocol",
  "version": "3.16.0",
  "description": "Motebit protocol — identity, receipts, credentials, delegation, settlement, and trust algebra for sovereign AI agents. Types, semirings, routing primitives. Apache-2.0, zero dependencies.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist/**/*.js",
    "dist/**/*.js.map",
    "dist/**/*.d.ts",
    "dist/**/*.d.ts.map",
    "LICENSE",
    "NOTICE",
    "README.md"
  ],
  "sideEffects": false,
  "license": "Apache-2.0",
  "keywords": [
    "motebit",
    "protocol",
    "agent",
    "identity",
    "ed25519",
    "receipts",
    "credentials",
    "settlement",
    "trust",
    "semiring"
  ],
  "homepage": "https://github.com/motebit/motebit/tree/main/packages/protocol#readme",
  "bugs": {
    "url": "https://github.com/motebit/motebit/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/motebit/motebit",
    "directory": "packages/protocol"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/node": "^22.20.1",
    "typescript": "^5.6.0",
    "fast-check": "^4.9.0",
    "vitest": "^4.1.10"
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "tsc -b",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint --parser-options=project:tsconfig.eslint.json src/",
    "lint:pack": "publint --strict && attw --pack --profile esm-only",
    "api:extract": "api-extractor run --local",
    "clean": "rm -rf dist .turbo *.tsbuildinfo"
  }
}