{
  "name": "@asm3r96/pi-loops",
  "version": "0.2.0",
  "description": "A reusable Pi extension that adds a supervised loop harness around the normal Pi coding agent. Supports bounded LLM nodes, deterministic gates, steering, evidence collection, and composable workflow definitions.",
  "keywords": [
    "pi-package",
    "pi-extension",
    "pi-loops",
    "coding-agent",
    "automation",
    "workflow"
  ],
  "homepage": "https://github.com/Asm3r96/pi-loops#readme",
  "bugs": {
    "url": "https://github.com/Asm3r96/pi-loops/issues"
  },
  "license": "MIT",
  "author": "Asm3r96",
  "repository": {
    "type": "git",
    "url": "https://github.com/Asm3r96/pi-loops.git"
  },
  "type": "module",
  "main": "src/index.ts",
  "exports": {
    ".": "./src/index.ts",
    "./types": "./src/types.ts",
    "./runtime": "./src/runtime.ts",
    "./nodes": "./src/nodes.ts",
    "./tools": "./src/tools.ts",
    "./state": "./src/state.ts",
    "./evidence": "./src/evidence.ts"
  },
  "files": [
    "src/",
    "skills/",
    "assets/",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "start": "pi -e ."
  },
  "peerDependencies": {
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*",
    "typebox": "*"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "pi": {
    "extensions": [
      "./src/index.ts"
    ],
    "skills": [
      "./skills"
    ],
    "image": "https://raw.githubusercontent.com/Asm3r96/pi-loops/main/assets/example-loop-ui.png"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/node": "^26.0.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.9"
  }
}
