{
  "name": "@theglitchking/claude-plugin-runtime",
  "version": "0.1.0",
  "description": "Shared postinstall + SessionStart + CLI-subcommand runtime for Claude Code plugins distributed via npm. Handles skill symlinking, update policy config, hook registration with plugin/npm dedup, and update nudge/auto-apply.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup src/index.ts --format esm --dts --clean --target node18",
    "lint": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "claude-code",
    "plugin",
    "mcp",
    "postinstall",
    "session-start",
    "hook"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=20.0.0"
  },
  "repository": "https://github.com/TheGlitchKing/claude-plugin-runtime",
  "homepage": "https://github.com/TheGlitchKing/claude-plugin-runtime",
  "devDependencies": {
    "@types/node": "^22.0.0",
    "commander": "^14.0.0",
    "tsup": "^8.5.1",
    "typescript": "^5.6.0"
  },
  "peerDependencies": {
    "commander": ">=12"
  },
  "peerDependenciesMeta": {
    "commander": {
      "optional": true
    }
  }
}
