{
  "name": "@{{ npm_org }}/{{ repo_name }}",
  "version": "0.1.0",
  "description": "pi extension package for {{ command_name }} workflows in pi",
  "type": "module",
  "license": "SEE LICENSE IN LICENSE",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/{{ github_maintainer }}/{{ repo_name }}.git"
  },
  "bugs": {
    "url": "https://github.com/{{ github_maintainer }}/{{ repo_name }}/issues"
  },
  "homepage": "https://github.com/{{ github_maintainer }}/{{ repo_name }}#readme",
  "keywords": [
    "pi-package",
    "pi-extension",
    "{{ command_name }}"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "fix": "bash ./scripts/quality-gate.sh fix",
    "lint": "bash ./scripts/quality-gate.sh lint",
    "typecheck": "bash ./scripts/quality-gate.sh typecheck",
    "quality:pre-commit": "bash ./scripts/quality-gate.sh pre-commit",
    "quality:pre-push": "bash ./scripts/quality-gate.sh pre-push",
    "quality:ci": "bash ./scripts/quality-gate.sh ci",
    "check": "npm run quality:ci",
    "test": "npm run quality:ci",
    "docs:list": "bash ./scripts/docs-list.sh",
    "docs:list:workspace": "bash ./scripts/docs-list.sh --workspace --discover",
    "docs:list:json": "bash ./scripts/docs-list.sh --json",
    "release:check": "bash ./scripts/release-check.sh",
    "release:check:quick": "SKIP_PI_SMOKE=1 bash ./scripts/release-check.sh"
  },
  "files": [
    "extensions/{{ command_name }}.ts",
    "prompts",
    "examples",
    "policy/security-policy.json",
    "policy/stack-lane.json"
  ],
  "pi": {
    "extensions": [
      "./extensions/{{ command_name }}.ts"
    ],
    "prompts": [
      "./prompts"
    ]
  },
  "devDependencies": {
    "@biomejs/biome": "2.3.14"
  },
  "overrides": {
    "fast-xml-parser": "5.3.6"
  },
  "peerDependencies": {
    "@mariozechner/pi-coding-agent": "*",
    "@mariozechner/pi-ai": "*"
  }
}
