{
  "name": "agents-spec",
  "version": "5.9.5",
  "description": "Cross-agent permission policy specification for AI coding agents",
  "type": "module",
  "main": "./dist/schema.cjs",
  "module": "./dist/schema.mjs",
  "types": "./dist/schema.d.mts",
  "sideEffects": false,
  "bin": {
    "agent-perms": "./dist/cli.mjs",
    "agent-perms-mcp": "./dist/cli.mjs"
  },
  "exports": {
    "./*": {
      "types": {
        "import": "./dist/*.d.mts",
        "require": "./dist/*.d.cts"
      },
      "import": "./dist/*.mjs",
      "require": "./dist/*.cjs",
      "default": "./dist/*.cjs"
    },
    "./agent-permissions.schema.json": "./agent-permissions.schema.json"
  },
  "files": [
    "dist",
    "agent-permissions.schema.json",
    ".claude-plugin"
  ],
  "engines": {
    "node": ">=18"
  },
  "keywords": [
    "agents",
    "permissions",
    "ai",
    "coding-agent",
    "claude-code",
    "codex",
    "opencode",
    "crush",
    "cross-agent",
    "mcp",
    "mcp-server",
    "policy",
    "sync",
    "zod"
  ],
  "author": "Joseph Mearman",
  "license": "Apache-2.0",
  "homepage": "https://github.com/Mearman/agent-permissions#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Mearman/agent-permissions.git"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@anthropic-ai/claude-agent-sdk": "^0.2.138",
    "@arethetypeswrong/cli": "^0.18.2",
    "@commitlint/cli": "^21.0.0",
    "@commitlint/config-conventional": "^21.0.0",
    "@eslint/js": "^10.0.1",
    "@openai/codex-sdk": "^0.130.0",
    "@opencode-ai/sdk": "^1.14.41",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/exec": "^7.1.0",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^12.0.8",
    "@semantic-release/npm": "^13.1.5",
    "@types/node": "^25.6.2",
    "conventional-changelog-conventionalcommits": "^9.3.1",
    "eslint": "^10.3.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.5",
    "husky": "^9.1.7",
    "lint-staged": "^17.0.3",
    "prettier": "^3.8.3",
    "publint": "^0.3.20",
    "rolldown": "^1.0.0",
    "semantic-release": "^25.0.3",
    "tsdown": "^0.22.0",
    "turbo": "^2.9.12",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.2",
    "undici-types": "^8.2.0"
  },
  "scripts": {
    "build": "turbo run _build",
    "dev": "tsdown --watch",
    "_typecheck": "tsc --noEmit",
    "_lint": "eslint --cache src",
    "_lint:fix": "eslint --cache --fix src",
    "_test": "node --experimental-strip-types --test 'src/test/*.test.ts'",
    "_build": "tsdown",
    "typecheck": "turbo run _typecheck",
    "lint": "turbo run _lint",
    "lint:fix": "turbo run _lint:fix",
    "_test:coverage": "node --experimental-strip-types --test --experimental-test-coverage --test-coverage-lines=80 --test-coverage-branches=80 --test-coverage-functions=80 --test-coverage-include='src/**/*.ts' 'src/test/*.test.ts'",
    "test:coverage": "turbo run _test:coverage",
    "test": "turbo run _test",
    "check": "turbo run _check",
    "validate": "turbo run _validate",
    "release": "semantic-release",
    "release:dry": "semantic-release --dry-run"
  }
}