{
  "name": "@maroffo/pi-forge",
  "version": "0.2.0",
  "description": "Opinionated multi-provider coding harness for the pi agent",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/maroffo/pi-forge.git"
  },
  "homepage": "https://github.com/maroffo/pi-forge#readme",
  "bugs": {
    "url": "https://github.com/maroffo/pi-forge/issues"
  },
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "AGENTS.md.example",
    "LICENSE",
    "agent-skills/",
    "README.md",
    "agents/",
    "chains/",
    "docs/",
    "extensions/",
    "prompts/",
    "skills/",
    "src/"
  ],
  "keywords": [
    "pi-package",
    "coding-agent",
    "multi-provider",
    "subagents"
  ],
  "scripts": {
    "check": "npm run check:behavior-map && node scripts/check-package.mjs && node --experimental-strip-types --check extensions/*.ts",
    "check:behavior-map": "node scripts/check-behavior-map.mjs --structure",
    "check:behavior-map:freshness": "node scripts/check-behavior-map.mjs --freshness",
    "refresh:behavior-map": "node scripts/check-behavior-map.mjs --refresh-fingerprints",
    "test": "node --experimental-strip-types --test tests/*.test.ts",
    "test:runtime": "node scripts/check-runtime-resources.mjs",
    "test:e2e": "npm run check && npm test && npm run test:runtime",
    "test:pi-subagents-upgrade": "node scripts/test-pi-subagents-upgrade.mjs"
  },
  "pi": {
    "extensions": [
      "./extensions"
    ],
    "prompts": [
      "./prompts"
    ],
    "skills": [
      "./skills"
    ],
    "subagents": {
      "agents": [
        "./agents"
      ],
      "chains": [
        "./chains"
      ]
    }
  },
  "dependencies": {
    "pi-subagents": "0.37.2"
  },
  "bundledDependencies": [
    "pi-subagents"
  ],
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*",
    "typebox": "*"
  },
  "peerDependenciesMeta": {
    "@earendil-works/pi-coding-agent": {
      "optional": true
    },
    "typebox": {
      "optional": true
    }
  }
}
