{
  "name": "tuntap-bridge",
  "version": "0.0.3",
  "description": "Native TUN/TAP interface module for Node.js",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "type": "module",
  "scripts": {
    "clean": "rm -rf build node_modules lib",
    "build": "npx tsc",
    "build:addon": "node-gyp rebuild",
    "prepare": "npm run build:addon && npm run build",
    "test": "sudo node test/test-tuntap.js"
  },
  "files": [
    "src/tuntap.cc",
    "lib",
    "build",
    "binding.gyp",
    "package.json",
    "test",
    "README.md",
    "CHANGELOG.md"
  ],
  "author": {
    "name": "Sri Harsha",
    "url": "https://github.com/harsha509"
  },
  "license": "MIT",
  "gypfile": true,
  "dependencies": {
    "node-addon-api": "^8.3.1",
    "typescript": "^5.8.3"
  },
  "devDependencies": {
    "@types/node": "^22.15.30"
  }
}
