{
  "name": "@yzlin/pi-subagents",
  "version": "0.7.0",
  "description": "A pi extension extension that brings smart Claude Code-style autonomous sub-agents to pi.",
  "author": "yzlin",
  "contributors": [
    "tintinweb (original author)"
  ],
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./pi": {
      "types": "./dist/index.d.ts",
      "default": "./src/index.ts"
    },
    "./workflow-progress": {
      "types": "./dist/workflow-progress.d.ts",
      "default": "./dist/workflow-progress.js"
    }
  },
  "files": [
    "src/**/*.ts",
    "!src/**/*.test.ts",
    "dist/**/*.js",
    "dist/**/*.d.ts",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/yzlin/pi-subagents.git"
  },
  "homepage": "https://github.com/yzlin/pi-subagents#readme",
  "bugs": {
    "url": "https://github.com/yzlin/pi-subagents/issues"
  },
  "keywords": [
    "pi-package",
    "pi",
    "pi-extension",
    "subagent",
    "agent",
    "autonomous"
  ],
  "peerDependencies": {
    "@earendil-works/pi-agent-core": "*",
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*",
    "typebox": "*"
  },
  "scripts": {
    "build": "rm -rf dist && tsc",
    "prepublishOnly": "npm run release:gate",
    "test": "vitest run && bun test ./test/workflow-runtime-ipc.bun.ts",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "check": "biome check src/ test/",
    "check:write": "biome check --write src/ test/",
    "format": "biome format --write src/ test/",
    "lint": "biome check src/ test/",
    "lint:fix": "biome check --fix src/ test/",
    "smoke:extension-load": "node scripts/extension-load-smoke.mjs",
    "validate:package": "node scripts/validate-package.mjs",
    "release:gate": "npm run lint && npm run typecheck && npm run test && npm run build && npm run smoke:extension-load && npm run validate:package",
    "release:bootstrap:0.6.0": "node scripts/bootstrap-0.6.0-changelog.mjs",
    "release:prepare": "node scripts/release-prepare.mjs",
    "release:publish": "node scripts/release-publish.mjs",
    "prepare": "husky"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.12",
    "@earendil-works/pi-agent-core": "0.80.6",
    "@earendil-works/pi-ai": "0.80.6",
    "@earendil-works/pi-coding-agent": "0.80.6",
    "@earendil-works/pi-tui": "0.80.6",
    "@types/bun": "^1.3.14",
    "@types/node": "^25.5.0",
    "husky": "^9.1.7",
    "typebox": "^1.1.34",
    "typescript": "^5.0.0",
    "ultracite": "^7.5.9",
    "vitest": "^4.0.18"
  },
  "pi": {
    "extensions": [
      "./src/index.ts"
    ],
    "video": "https://github.com/yzlin/pi-subagents/raw/main/media/demo.mp4",
    "image": "https://github.com/yzlin/pi-subagents/raw/main/media/screenshot.png"
  }
}
