{
  "name": "node-network-devtools",
  "version": "1.0.30",
  "description": "Inspecting Node.js's Network with Chrome DevTools",
  "homepage": "https://grinzero.github.io/node-network-devtools/",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/src/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./dev": {
      "types": "./src/index.ts",
      "import": "./src/index.ts",
      "require": "./src/index.ts"
    }
  },
  "scripts": {
    "test": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest --watch",
    "build": "vite build",
    "dev": "vite build --watch --mode development"
  },
  "keywords": [
    "node",
    "network",
    "devtools",
    "debugging",
    "http-inspector",
    "inspector",
    "chrome",
    "debug",
    "chrome devtools",
    "request"
  ],
  "files": [
    "dist",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/GrinZero/node-network-devtools.git"
  },
  "author": "bugyaluwang <bugyaluwang@qq.com> (https://github.com/GrinZero)",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^20.11.0",
    "@types/ws": "^8.5.10",
    "@typescript-eslint/eslint-plugin": "^6.14.0",
    "@typescript-eslint/parser": "^6.14.0",
    "@vitest/coverage-v8": "^4.0.18",
    "envinfo": "^7.14.0",
    "fast-check": "^4.5.3",
    "memfs": "^4.56.10",
    "tslib": "2.6.2",
    "vite": "^5.2.10",
    "vite-plugin-dts": "^3.8.3",
    "vitest": "^4.0.18"
  },
  "dependencies": {
    "bufferutil": "^4.0.9",
    "iconv-lite": "^0.7.0",
    "inspector": "^0.5.0",
    "open": "^8.4.2",
    "ws": "^8.17.1"
  },
  "peerDependencies": {
    "undici": "^6"
  }
}
