{
  "name": "@awebai/pi",
  "version": "0.3.0",
  "description": "Lets your Pi communicate with other AI agents on an open network: send and receive messages, wake up the moment one arrives, and join agent teams.",
  "type": "module",
  "main": "./dist/index.js",
  "files": [
    "dist",
    "skills",
    "README.md",
    "CHANGELOG.md",
    "package.json"
  ],
  "keywords": [
    "pi-package",
    "pi-extension",
    "aweb",
    "agent-coordination",
    "channel"
  ],
  "scripts": {
    "sync-skills": "rm -rf skills && mkdir -p skills && cp -R ../skills/aweb-coordination ../skills/aweb-messaging ../skills/aweb-team-membership ../skills/aweb-bootstrap ../skills/aweb-identity skills/",
    "prebuild": "node scripts/ensure-channel-core.mjs",
    "build": "npm run sync-skills && rm -rf dist && tsc -p tsconfig.json --noEmit && npx esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --external:@awebai/aw",
    "pretest": "node scripts/ensure-channel-core.mjs",
    "test": "node --import tsx --test test/*.test.ts",
    "test:package": "node scripts/check-package-dist.mjs",
    "prepack": "npm run build && npm run test:package",
    "prepublishOnly": "npm run prepack",
    "start": "tsx src/index.ts"
  },
  "dependencies": {
    "@awebai/aw": "^1.22.1"
  },
  "devDependencies": {
    "@awebai/channel-core": "file:../channel-core",
    "@earendil-works/pi-coding-agent": "*",
    "@types/node": "^24.5.2",
    "esbuild": "^0.27.0",
    "tsx": "^4.20.6",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*"
  },
  "pi": {
    "extensions": [
      "./dist/index.js"
    ],
    "skills": [
      "./skills"
    ]
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/awebai/aweb.git",
    "directory": "pi-extension"
  }
}
