{
  "name": "stipend-mcp",
  "version": "0.1.0-alpha.0",
  "description": "Stipend — payment-backed authorization middleware for MCP. Core types, interfaces, signing, and authorization engine.",
  "keywords": [
    "mcp",
    "model-context-protocol",
    "agent",
    "agentic-payments",
    "authorization",
    "entitlement",
    "stripe",
    "payments"
  ],
  "license": "Apache-2.0",
  "author": "Third Eye Technologies",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/third-eye-technologies/stipend-mcp.git",
    "directory": "packages/stipend"
  },
  "homepage": "https://github.com/third-eye-technologies/stipend-mcp#readme",
  "bugs": {
    "url": "https://github.com/third-eye-technologies/stipend-mcp/issues"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./testing": {
      "types": "./dist/testing/index.d.ts",
      "import": "./dist/testing/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "peerDependencies": {
    "vitest": ">=2.0.0",
    "fast-check": ">=3.20.0"
  },
  "peerDependenciesMeta": {
    "vitest": {
      "optional": true
    },
    "fast-check": {
      "optional": true
    }
  },
  "devDependencies": {
    "fast-check": "^3.23.2",
    "vitest": "^2.1.8",
    "@stipend-mcp/store-memory": "0.1.0-alpha.0"
  },
  "scripts": {
    "build": "tsc -b",
    "clean": "rimraf dist *.tsbuildinfo",
    "test": "vitest run"
  }
}