{
  "name": "@unbrowser/local",
  "version": "0.5.5",
  "description": "Full local browser engine for AI agents. Includes Playwright for complete page rendering, MCP server, and learning capabilities.",
  "type": "module",
  "workspaces": [
    "packages/*"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./sdk": {
      "types": "./dist/sdk.d.ts",
      "default": "./dist/sdk.js"
    },
    "./testing": {
      "types": "./dist/testing.d.ts",
      "default": "./dist/testing.js"
    }
  },
  "bin": {
    "unbrowser": "dist/index.js"
  },
  "files": [
    "dist",
    "skills",
    "scripts/postinstall.mjs",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "postinstall": "node scripts/postinstall.mjs",
    "build": "prisma generate --schema packages/api/prisma/schema.prisma && tsc && npm run build -w packages/api",
    "build:prod": "npm run build && node scripts/obfuscate.mjs",
    "build:packages": "npm run build -w packages/mcp",
    "dev": "tsc --watch",
    "start": "node packages/api/dist/packages/api/src/index.js",
    "start:mcp": "node dist/index.js",
    "inspect": "node --inspect dist/index.js",
    "test": "vitest run --config ./vitest.config.ts",
    "test:watch": "vitest --config ./vitest.config.ts",
    "test:coverage": "vitest run --coverage --config ./vitest.config.ts",
    "clean": "rm -rf dist packages/*/dist",
    "prepublishOnly": "npm run build:prod && npm test",
    "init": "npx tsx scripts/init.ts",
    "profiles": "npx tsx scripts/profiles.ts",
    "migrate:tiers": "npx tsx scripts/migrate-skill-tiers.ts",
    "migrate:tiers:dry-run": "npx tsx scripts/migrate-skill-tiers.ts --dry-run"
  },
  "keywords": [
    "llm",
    "ai-agent",
    "mcp",
    "model-context-protocol",
    "claude",
    "openai",
    "anthropic",
    "browser-automation",
    "web-scraping",
    "api-discovery",
    "headless-browser",
    "playwright",
    "content-extraction",
    "web-automation",
    "machine-learning",
    "rag",
    "retrieval-augmented-generation",
    "semantic-embeddings"
  ],
  "author": "Rabbit Found <npm@rabbitfound.com>",
  "license": "BSL-1.1",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rabbit-found/unbrowser.git"
  },
  "homepage": "https://unbrowser.ai",
  "bugs": {
    "url": "https://github.com/rabbit-found/unbrowser/issues"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.71.2",
    "@modelcontextprotocol/sdk": "^1.25.1",
    "@prisma/client": "^6.0.1",
    "@types/pino": "^7.0.4",
    "cheerio": "^1.0.0",
    "js-yaml": "^4.1.1",
    "linkedom": "^0.18.12",
    "openai": "^6.16.0",
    "pdf-lib": "^1.17.1",
    "pdf-parse": "^2.4.5",
    "pino": "^10.1.0",
    "pixelmatch": "^7.1.0",
    "pngjs": "^7.0.0",
    "resend": "^6.6.0",
    "tough-cookie": "^6.0.0",
    "turndown": "^7.2.0",
    "ws": "^8.14.0",
    "zod": "^4.2.1"
  },
  "optionalDependencies": {
    "@lancedb/lancedb": "^0.23.0",
    "@xenova/transformers": "^2.17.0",
    "better-sqlite3": "^12.5.0",
    "cycletls": "^1.0.26",
    "playwright": "^1.48.0"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^25.0.3",
    "@types/pdf-parse": "^1.1.4",
    "@types/pngjs": "^6.0.5",
    "@types/tough-cookie": "^4.0.5",
    "@types/turndown": "^5.0.5",
    "@types/ws": "^8.5.8",
    "@vitest/coverage-v8": "^4.0.16",
    "ajv": "^8.12.0",
    "ajv-formats": "^3.0.1",
    "dotenv": "^17.2.3",
    "javascript-obfuscator": "^5.1.0",
    "prisma": "^6.0.1",
    "typescript": "^5.6.3",
    "unbrowser-core": "0.1.0-alpha.4",
    "vitest": "^4.0.16"
  },
  "engines": {
    "node": ">=20.0.0"
  }
}
