{
  "name": "traffic-lens",
  "version": "0.0.1",
  "description": "A network traffic monitoring tool with proxy awareness for Node.js",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "network",
    "monitoring",
    "proxy",
    "traffic",
    "bandwidth",
    "network-stats",
    "network-monitor",
    "proxy-stats",
    "traffic-monitor",
    "network-metrics",
    "typescript",
    "nodejs"
  ],
  "author": {
    "name": "Jie Wang",
    "url": "https://github.com/escwxyz"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/escwxyz/traffic-lens.git"
  },
  "bugs": {
    "url": "https://github.com/escwxyz/traffic-lens/issues"
  },
  "homepage": "https://github.com/escwxyz/traffic-lens#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@types/node": "^22.8.1",
    "@vitest/coverage-v8": "^2.1.3",
    "@vitest/ui": "^2.1.3",
    "prettier": "^3.3.3",
    "release-it": "^17.10.0",
    "release-it-pnpm": "^4.6.3",
    "vitest": "^2.1.3"
  },
  "dependencies": {
    "systeminformation": "^5.23.5"
  },
  "peerDependencies": {
    "typescript": ">=4.0.0"
  },
  "scripts": {
    "test": "vitest",
    "test:unit": "vitest run tests/unit",
    "test:integration": "vitest run tests/integration",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest watch",
    "build": "tsc",
    "prebuild": "rm -rf dist",
    "format": "prettier --write .",
    "lint": "prettier --check .",
    "preversion": "pnpm run lint",
    "version": "pnpm run format && git add -A src",
    "postversion": "git push && git push --tags",
    "release": "release-it"
  }
}