{
  "name": "read-tls-client-hello",
  "version": "2.0.0",
  "author": "Tim Perry <tim@httptoolkit.com>",
  "description": "A pure-JS module to read TLS client hello data and fingerprints from an incoming socket connection",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/",
    "src/"
  ],
  "scripts": {
    "prebuild": "rimraf dist/*",
    "build": "tsc",
    "prepack": "npm run build",
    "pretest": "npm run build",
    "test": "mocha -r ts-node/register 'test/**/*.spec.ts'"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "keywords": [
    "tls",
    "fingerprint",
    "fingerprinting",
    "client-hello",
    "alpn",
    "sni",
    "https",
    "ja3",
    "ja4"
  ],
  "licenses": [
    {
      "type": "Apache-2.0",
      "url": "http://github.com/httptoolkit/read-tls-client-hello/raw/main/LICENSE"
    }
  ],
  "repository": {
    "type": "git",
    "url": "http://github.com/httptoolkit/read-tls-client-hello.git"
  },
  "dependencies": {
    "@types/node": "*"
  },
  "devDependencies": {
    "@types/chai": "^4.2.21",
    "@types/mocha": "^9.0.0",
    "chai": "^4.3.4",
    "destroyable-server": "^1.0.0",
    "mocha": "^10.0.0",
    "rimraf": "^3.0.2",
    "ts-node": "^10.2.1",
    "typescript": "^5.5.0"
  }
}
