{
  "name": "@cad0p/pi-steering",
  "version": "0.2.0",
  "private": false,
  "description": "AST-backed steering hooks for pi — deterministic tool-call guardrails with command-level effective-cwd scoping.",
  "keywords": [
    "pi-package",
    "extension",
    "steering",
    "guardrails",
    "safety",
    "hooks",
    "ast",
    "bash"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "pi-steering": "./dist/bin/pi-steering.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./plugins/git": {
      "types": "./dist/plugins/git/index.d.ts",
      "import": "./dist/plugins/git/index.js"
    },
    "./testing": {
      "types": "./dist/testing/index.d.ts",
      "import": "./dist/testing/index.js"
    }
  },
  "files": [
    "dist",
    "src",
    "examples",
    "skills",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cad0p/pi-steering.git"
  },
  "license": "MIT",
  "pi": {
    "extensions": [
      "./src/index.ts"
    ],
    "skills": [
      "./skills"
    ]
  },
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "clean": "rm -rf dist tsconfig.build.tsbuildinfo",
    "build": "tsc -p tsconfig.build.json",
    "prepare": "pnpm build",
    "test": "node --test --experimental-strip-types 'src/**/*.test.ts'",
    "test:examples": "pnpm -r test",
    "typecheck": "tsc --noEmit",
    "typecheck:examples": "pnpm -r typecheck",
    "lint": "biome check src/ examples/ skills/ scripts/",
    "lint:fix": "biome check --write src/ examples/ skills/ scripts/",
    "smoke": "node scripts/smoke.mjs"
  },
  "dependencies": {
    "unbash": "^3.0.0",
    "@cad0p/unbash-walker": "^0.1.0"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.14",
    "@types/node": "^20.19.39",
    "typescript": "^5.4.5"
  },
  "publishConfig": {
    "access": "public"
  }
}
