{
  "name": "@manifesto-ai/governance",
  "version": "5.1.0",
  "description": "Manifesto Governance - decorator runtime for legitimacy, approval, and governed execution",
  "author": "eggplantiny <eggplantiny@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/manifesto-ai/core.git",
    "directory": "packages/governance"
  },
  "bugs": {
    "url": "https://github.com/manifesto-ai/core/issues"
  },
  "homepage": "https://github.com/manifesto-ai/core/tree/main/packages/governance#readme",
  "keywords": [
    "manifesto",
    "governance",
    "authority",
    "world-protocol",
    "compliance"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./provider": {
      "types": "./dist/provider.d.ts",
      "import": "./dist/provider.js"
    }
  },
  "peerDependencies": {
    "@manifesto-ai/core": "^5.1.0"
  },
  "dependencies": {
    "@manifesto-ai/sdk": "5.1.0",
    "@manifesto-ai/lineage": "5.1.0"
  },
  "devDependencies": {
    "typescript": "^5.9.3",
    "vite": "^8.0.8",
    "vitest": "^4.1.4",
    "@manifesto-ai/core": "5.1.0",
    "@manifesto-ai/cts-kit": "5.0.0"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "rm -rf dist && tsup && tsc -p tsconfig.build.json --emitDeclarationOnly --declarationMap false --outDir dist && node ../../scripts/check-public-surface.mjs packages/governance",
    "clean": "rm -rf dist",
    "lint": "node ../../node_modules/@biomejs/biome/bin/biome check src",
    "test": "pnpm run test:runtime && pnpm run test:types",
    "test:runtime": "node ../../scripts/run-vitest.mjs run",
    "test:types": "node ../../scripts/run-tsc.mjs -p tsconfig.types.json --noEmit",
    "test:coverage": "node ../../scripts/run-vitest.mjs run --coverage",
    "test:watch": "node ../../scripts/run-vitest.mjs"
  }
}