{
  "name": "@counterposition/pi-web-search",
  "version": "0.5.2",
  "description": "Multi-provider web search and markdown page fetch for Pi",
  "keywords": [
    "brave-search",
    "exa",
    "pi-extension",
    "pi-package",
    "search",
    "tavily",
    "web-search"
  ],
  "homepage": "https://github.com/counterposition/pi/tree/main/packages/pi-web-search",
  "bugs": {
    "url": "https://github.com/counterposition/pi/issues"
  },
  "license": "GPL-3.0-only",
  "repository": {
    "type": "git",
    "url": "https://github.com/counterposition/pi.git",
    "directory": "packages/pi-web-search"
  },
  "files": [
    "extensions/",
    "src/",
    "README.md",
    "LICENSE.md",
    "package.json"
  ],
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@earendil-works/pi-ai": "^0.80.0",
    "@earendil-works/pi-coding-agent": "^0.80.0",
    "@types/node": "^25.5.0",
    "oxfmt": "^0.42.0",
    "oxlint": "^1.57.0",
    "typebox": "^1.1.38",
    "typescript": "^6.0.2",
    "vitest": "^4.1.2"
  },
  "peerDependencies": {
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*",
    "typebox": "*"
  },
  "engines": {
    "node": ">=24"
  },
  "pi": {
    "extensions": [
      "extensions/web-search.ts"
    ]
  },
  "scripts": {
    "lint": "pnpm run lint:code && pnpm run lint:docs",
    "lint:code": "oxlint .",
    "lint:code:fix": "oxlint . --fix",
    "lint:docs": "markdownlint-cli2 \"README.md\" \"CHANGELOG.md\" \"docs/**/*.md\"",
    "lint:docs:fix": "markdownlint-cli2 --fix \"README.md\" \"CHANGELOG.md\" \"docs/**/*.md\"",
    "lint:fix": "pnpm run lint:code:fix && pnpm run lint:docs:fix",
    "format": "oxfmt .",
    "format:check": "oxfmt . --check",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "check": "pnpm run lint && pnpm run format:check && pnpm run typecheck && pnpm run test",
    "pack:check": "pnpm pack --pack-destination ../../.pack"
  }
}