{
  "name": "device-fingerprint-js",
  "version": "1.0.0",
  "description": "Privacy-focused device fingerprinting library for modern browsers",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "scripts": {
    "build": "tsc && npm run build:umd",
    "build:umd": "npx rollup dist/index.js --format umd --name DeviceFingerprint --file dist/index.umd.js",
    "dev": "tsc --watch",
    "test": "echo \"No tests specified\" && exit 0"
  },
  "keywords": [
    "device-fingerprint",
    "fingerprinting",
    "browser-fingerprint",
    "privacy",
    "canvas-fingerprint",
    "audio-fingerprint",
    "webgl-fingerprint",
    "font-detection"
  ],
  "author": "danker",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": ""
  },
  "devDependencies": {
    "typescript": "^5.3.3",
    "rollup": "^4.9.6"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "umd": "./dist/index.umd.js",
      "types": "./dist/index.d.ts"
    }
  },
  "engines": {
    "node": ">=16.0.0"
  }
}