{
  "name": "@agntn/web",
  "version": "0.7.1",
  "description": "Unified web search and read provider for agents and CLI.",
  "keywords": [
    "agents",
    "cli",
    "pi-extension",
    "pi-package",
    "provider",
    "search",
    "typescript",
    "unified",
    "web-search"
  ],
  "homepage": "https://web.agntn.dev",
  "bugs": "https://github.com/agntn/web/issues",
  "license": "MIT",
  "author": "oritwoen (https://github.com/oritwoen)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/agntn/web.git"
  },
  "bin": {
    "web": "./dist/cli.mjs"
  },
  "files": [
    "dist",
    "packages/omp/extensions",
    "packages/pi/extensions",
    "src/tui.ts"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    },
    "./ai": {
      "types": "./dist/ai.d.mts",
      "import": "./dist/ai.mjs"
    },
    "./mcp": {
      "types": "./dist/mcp.d.mts",
      "import": "./dist/mcp.mjs"
    },
    "./providers": {
      "types": "./dist/providers/index.d.mts",
      "import": "./dist/providers/index.mjs"
    },
    "./providers/*": {
      "types": "./dist/providers/*.d.mts",
      "import": "./dist/providers/*.mjs"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "1.30.0",
    "citty": "latest",
    "consola": "latest",
    "ofetch": "1.5.1",
    "string-width": "8.2.2",
    "typebox": "1.1.39",
    "zod": "4.3.6"
  },
  "devDependencies": {
    "@agntn/ox": "0.1.0",
    "@earendil-works/pi-coding-agent": "0.86.1",
    "@earendil-works/pi-tui": "0.86.1",
    "@oh-my-pi/omptype": "18.2.6",
    "@oh-my-pi/pi-coding-agent": "18.2.6",
    "@types/node": "latest",
    "ai": "6.0.286",
    "changelogen": "latest",
    "typescript": "7.0.2",
    "vite": "npm:@voidzero-dev/vite-plus-core@0.3.3",
    "vite-plus": "0.3.3"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": ">=0.86.1 <1",
    "@earendil-works/pi-tui": ">=0.86.1 <1",
    "@oh-my-pi/pi-coding-agent": ">=18.0.0 <19",
    "ai": "^6.0.116",
    "typebox": "^1.1.33",
    "zod": "^4.3.6"
  },
  "peerDependenciesMeta": {
    "@earendil-works/pi-coding-agent": {
      "optional": true
    },
    "@earendil-works/pi-tui": {
      "optional": true
    },
    "@oh-my-pi/pi-coding-agent": {
      "optional": true
    },
    "ai": {
      "optional": true
    },
    "typebox": {
      "optional": true
    },
    "zod": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=24"
  },
  "omp": {
    "extensions": [
      "./packages/omp/extensions/web.ts"
    ]
  },
  "pi": {
    "extensions": [
      "./packages/pi/extensions/*.ts"
    ],
    "image": "https://web.agntn.dev/image.png"
  },
  "scripts": {
    "build": "vp pack",
    "dev": "vp pack --watch",
    "check": "vp check",
    "typecheck": "vp check --no-fmt --no-lint",
    "test": "vp test",
    "test:run": "vp test --run",
    "release": "vp test --run && vp pack && changelogen --release --push",
    "lint": "vp pack && vp check",
    "lint:fix": "vp pack && vp check --fix",
    "docs": "vp -C docs run dev",
    "docs:build": "vp -C docs run build"
  }
}