{
  "name": "@aemonculaba/pi-search",
  "version": "0.2.3",
  "description": "Web search + fetch extension for pi (OpenAI search + Readability extraction)",
  "license": "MIT",
  "type": "commonjs",
  "main": "index.cjs",
  "files": [
    "index.cjs",
    "dist/index.js",
    "README.md",
    "docs/PI_AGENT_OPERATIONS.md",
    "LICENSE"
  ],
  "keywords": [
    "pi-package",
    "pi-extension",
    "pi-coding-agent",
    "web-search",
    "web-fetch"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/eysenfalk/pi-search.git"
  },
  "homepage": "https://github.com/eysenfalk/pi-search#readme",
  "bugs": {
    "url": "https://github.com/eysenfalk/pi-search/issues"
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "rm -rf dist && esbuild index.ts --platform=node --format=cjs --outfile=dist/index.js --packages=external",
    "prepare": "npm run build",
    "test": "node --test test/*.test.cjs",
    "pack:check": "npm pack --dry-run",
    "release:dry-run": "npm publish --dry-run --access public"
  },
  "dependencies": {
    "@mozilla/readability": "^0.5.0",
    "linkedom": "^0.18.0",
    "turndown": "^7.2.0"
  },
  "peerDependencies": {
    "@mariozechner/pi-coding-agent": "^0.54.2",
    "@sinclair/typebox": "^0.34.48"
  },
  "optionalDependencies": {
    "playwright": "^1.58.2"
  },
  "devDependencies": {
    "@sinclair/typebox": "^0.34.48",
    "esbuild": "^0.25.9",
    "jiti": "^2.4.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "pi": {
    "extensions": [
      "./index.cjs"
    ]
  }
}
