{
  "name": "pi-fabric",
  "version": "0.22.5",
  "description": "A programmable tool and agent runtime for Pi",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./protocol": {
      "types": "./dist/protocol.d.ts",
      "import": "./dist/protocol.js"
    }
  },
  "files": [
    "dist/",
    "skills/",
    "docs/",
    "README.md",
    "LICENSE",
    "THIRD_PARTY_NOTICES.md"
  ],
  "keywords": [
    "pi-package",
    "pi-extension",
    "codemode",
    "mcp",
    "subagents",
    "actors",
    "steering",
    "mesh",
    "swarm",
    "workflows",
    "rlm",
    "orchestration"
  ],
  "license": "MIT",
  "author": "monotykamary",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/monotykamary/pi-fabric.git"
  },
  "homepage": "https://github.com/monotykamary/pi-fabric#readme",
  "bugs": {
    "url": "https://github.com/monotykamary/pi-fabric/issues"
  },
  "engines": {
    "node": ">=24"
  },
  "pi": {
    "extensions": [
      "./dist/index.js"
    ],
    "skills": [
      "./skills"
    ],
    "image": "https://raw.githubusercontent.com/monotykamary/pi-fabric/main/media/cover.jpg"
  },
  "dependencies": {
    "@jitl/quickjs-singlefile-mjs-release-sync": "^0.32.0",
    "diff": "^8.0.4",
    "mcporter": "^0.12.3",
    "pi-code-previews": "^0.1.36",
    "quickjs-emscripten-core": "^0.32.0",
    "shiki": "^4.3.1",
    "typebox": "1.1.38",
    "typescript": "^6.0.3",
    "yaml": "^2.9.0"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": ">=0.80.6",
    "@earendil-works/pi-tui": ">=0.80.6"
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "0.80.6",
    "@earendil-works/pi-tui": "0.80.6",
    "@types/node": "^25.0.0",
    "knip": "^6.26.0",
    "vitest": "^4.1.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "certify:context": "pnpm run build && node scripts/certify-context.mjs",
    "benchmark:real-resume": "pnpm run build && node scripts/benchmark-real-resume.mjs",
    "lint:dead": "knip --no-gitignore",
    "check": "pnpm run typecheck && pnpm run test && pnpm run lint:dead && pnpm run build"
  }
}