{
  "name": "device-uuid",
  "description": "Fast browser device uuid generation library.",
  "version": "3.0.3",
  "homepage": "https://github.com/biggora/device-uuid/",
  "repository": {
    "type": "git",
    "url": "git://github.com/biggora/device-uuid.git"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "author": {
    "name": "Alexey Gordeyev",
    "email": "aleksej@gordejev.lv",
    "url": "https://github.com/biggora"
  },
  "contributors": [
    {
      "name": "Vitalii Onyshchenko",
      "url": "https://github.com/uzer-ua"
    }
  ],
  "keywords": [
    "useragent",
    "browser",
    "device",
    "uuid",
    "fingerprint",
    "typescript"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "browser": "./dist/index.browser.min.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "default": "./dist/index.js"
    },
    "./browser": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.browser.min.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup && node scripts/cjs-interop.mjs",
    "build:watch": "tsup --watch",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "format": "prettier --write \"**/*.{ts,tsx,js,jsx,mjs,json,md,yml}\"",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "test:watch": "vitest",
    "test": "vitest run",
    "test:vitest": "vitest run",
    "test:unit": "vitest run",
    "test:e2e": "playwright test --reporter null",
    "test:e2e:ui": "playwright test --ui",
    "test:e2e:debug": "playwright test --debug",
    "test:all": "npm run test:unit && npm run test:e2e",
    "clean": "rimraf dist",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@playwright/test": "^1.58.0",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.2",
    "@types/node": "^24.9.2",
    "@types/react": "^19.2.10",
    "@types/react-dom": "^19.2.3",
    "@typescript-eslint/eslint-plugin": "^8.46.2",
    "@typescript-eslint/parser": "^8.46.2",
    "@vitejs/plugin-react": "^5.1.2",
    "@vitest/coverage-v8": "^4.0.5",
    "eslint": "^9.38.0",
    "happy-dom": "^20.0.10",
    "http-server": "^14.1.1",
    "prettier": "^3.6.2",
    "react": "^19.2.4",
    "react-dom": "^19.2.4",
    "rimraf": "^6.0.1",
    "tsup": "^8.5.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.46.2",
    "vitest": "^4.0.5"
  }
}
