{
  "name": "@hassangameryt/freeflow",
  "version": "0.5.0",
  "description": "Feedback-based control system for coding agents.",
  "publishConfig": {
    "access": "public"
  },
  "author": {
    "name": "Hassan Mohiddin"
  },
  "homepage": "https://github.com/hassan-mohiddin/freeflow",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hassan-mohiddin/freeflow.git"
  },
  "license": "MIT",
  "type": "module",
  "scripts": {
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "format:router-dist": "prettier --write router/dist",
    "format:pi-extension-dist": "prettier --write pi-extension/dist",
    "build:router": "tsc -p router/tsconfig.json && npm run format:router-dist",
    "build:pi-extension": "tsc -p pi-extension/tsconfig.json && npm run format:pi-extension-dist",
    "build": "npm run build:router && npm run build:pi-extension",
    "test:pi-extension": "npm run build && node --test $(find pi-extension/tests -name '*.test.js' | sort)",
    "test:router": "npm run build:router && node --test $(find router/tests -name '*.test.js' | sort)",
    "test:skill-author": "node --test $(find .skill-eval/write-skill/tests -name '*.test.mjs' | sort)",
    "test:skill-eval": "node --test $(find .skill-eval/evaluate-skill/tests -name '*.test.mjs' | sort)",
    "bench:router": "npm run build:router && node router/dist/benchmarks/benchmarks.js",
    "bench:router:commands": "npm run build:router && node router/dist/benchmarks/command-benchmarks.js",
    "bench:router:context-saving-baseline": "npm run build:router && node router/dist/benchmarks/context-saving-baseline.js",
    "bench:router:context-mode-normalized": "npm run build:router && node router/dist/benchmarks/context-mode-normalized-benchmarks.js",
    "bench:router:context-mode-real-deep": "npm run build:router && node router/dist/benchmarks/context-mode-real-deep-benchmark.js",
    "bench:router:storage-policy": "npm run build:router && node router/dist/benchmarks/storage-policy-benchmarks.js",
    "bench:router:index": "npm run build:router && node router/dist/benchmarks/index-benchmarks.js",
    "bench:router:vault-index": "npm run build:router && node router/dist/benchmarks/vault-index-benchmarks.js",
    "bench:router:codex-qa": "npm run build:router && node router/dist/benchmarks/codex-qa-benchmarks.js"
  },
  "keywords": [
    "pi-package",
    "agent-skills",
    "workflow",
    "skills",
    "agents",
    "feedback-loop",
    "task-memory",
    "planning",
    "verification",
    "review",
    "codex",
    "claude",
    "pi"
  ],
  "pi": {
    "skills": [],
    "extensions": [
      "pi-extension/freeflow/index.js"
    ],
    "image": "https://raw.githubusercontent.com/hassan-mohiddin/freeflow/main/assets/freeflow-plugin-icon-transparent.png"
  },
  "files": [
    ".agents/**",
    ".claude-plugin/**",
    ".codex-plugin/**",
    "LICENSE",
    "README.md",
    "assets/**",
    "capabilities/**",
    "command-surface.json",
    "hooks/**",
    "pi-extension/**",
    "router/dist/**",
    "runtime/**",
    "skills/**"
  ],
  "peerDependencies": {
    "@earendil-works/pi-tui": "*"
  },
  "devDependencies": {
    "@earendil-works/pi-tui": "0.80.10",
    "@types/node": "^22.15.30",
    "prettier": "3.9.5",
    "typescript": "^5.8.3"
  }
}
