{
  "name": "@generacy-ai/agency-plugin-spec-kit",
  "version": "1.0.2",
  "description": "Specification management plugin for Agency - structured feature development tools for agents",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/generacy-ai/agency.git",
    "directory": "packages/agency-plugin-spec-kit"
  },
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./commands": {
      "import": "./dist/commands.js",
      "types": "./dist/commands.d.ts"
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "agency-spec-kit": "./dist/cli.js"
  },
  "files": [
    "dist",
    "workflows",
    "commands"
  ],
  "keywords": [
    "mcp",
    "agent",
    "generacy",
    "spec",
    "specification",
    "feature"
  ],
  "author": "Generacy AI",
  "license": "Apache-2.0",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@octokit/rest": "^21.0.0",
    "simple-git": "^3.30.0",
    "zod": "^3.24.0"
  },
  "peerDependencies": {
    "@generacy-ai/agency": "0.1.2",
    "@generacy-ai/agency-plugin-humancy": "1.0.2"
  },
  "peerDependenciesMeta": {
    "@generacy-ai/agency-plugin-humancy": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^20.17.12",
    "typescript": "^5.7.3",
    "vitest": "^3.2.4",
    "yaml": "^2.8.2",
    "@generacy-ai/agency": "0.1.2"
  },
  "agency": {
    "id": "@generacy-ai/agency-plugin-spec-kit",
    "name": "Spec Kit Plugin",
    "tools": [],
    "modes": [
      "research",
      "coding"
    ],
    "dependencies": [],
    "critical": false
  },
  "scripts": {
    "build": "tsc",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}