{
  "name": "cdp-client-tool",
  "version": "2.1.4",
  "description": "一个客户端程序，设计了一套socket.io与http接口的通信协议，可以用于控制浏览器，抓取数据等",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "scripts": {
    "build": "rollup -c && tsc --emitDeclarationOnly --outDir dist",
    "prepublishOnly": "pnpm run build",
    "build:nestjs": "pnpm -F @bomon/nestjs-cct-explorer build",
    "start:client": "pnpm -F client start",
    "start:express": "pnpm -F express-example start",
    "start:nestjs": "pnpm -F nestjs-example start",
     "test:process": "ts-node src/test_process.ts"
  },
  "files": [
    "dist",
    "readme.md"
  ],
  "keywords": [
    "cdp",
    "puppeteer",
    "browser",
    "socket.io",
    "data-scraping",
    "automation"
  ],
  "author": "ranmeizi",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/ranmeizi/cdp-client-tool"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=16"
  },
  "packageManager": "pnpm@10.27.0",
  "dependencies": {
    "axios": "^1.13.6",
    "chalk": "^5.6.2",
    "dayjs": "^1.11.19",
    "puppeteer-core": "^24.37.5",
    "require-from-string": "^2.0.2",
    "socket.io-client": "^4.8.3"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@rollup/plugin-commonjs": "^28.0.2",
    "@rollup/plugin-node-resolve": "^16.0.0",
    "@rollup/plugin-typescript": "^12.1.2",
    "rollup": "^4.31.0",
    "ts-node": "^10.9.2",
    "tslib": "^2.8.1",
    "typescript": "^5.9.3"
  }
}