{
  "name": "libcreep",
  "version": "0.2.0",
  "fingerprintAlgorithmVersion": "5",
  "description": "A browser-only fingerprinting library based on the Creep.js detection suite",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/NetworkCats/libcreep.git"
  },
  "type": "module",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "docs",
    "LICENSE",
    "NOTICE",
    "README.md"
  ],
  "scripts": {
    "build": "npm run clean && vite build && vite build --config vite.worker.config.ts && tsc -p tsconfig.build.json && rm -rf dist/internal dist/runtime.d.ts dist/runtime.d.ts.map dist/worker.d.ts dist/worker.d.ts.map && node scripts/check-production-bundle.mjs",
    "clean": "rm -rf dist coverage test-results playwright-report",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "oxlint --deny-warnings src test scripts vite.config.ts vite.worker.config.ts vitest.config.ts vitest.speed.config.ts",
    "test": "npm run test:unit && npm run test:browser && npm run test:node-compat && npm run test:vite-consumer && npm run test:types:consumer",
    "test:unit": "vitest run --project unit",
    "test:browser": "npm run build && vitest run --project browser",
    "test:node-compat": "node scripts/check-node-compatibility.mjs",
    "test:vite-consumer": "npm run build && node scripts/check-vite-consumer.mjs",
    "test:types:consumer": "tsc -p test/compatibility/tsconfig.json",
    "test:coverage": "npm run build && vitest run --coverage",
    "test:speed": "npm run build && vitest run --config vitest.speed.config.ts",
    "typecheck": "tsc -p tsconfig.json",
    "validate": "npm run format:check && npm run lint && npm run typecheck && npm run test && npm run build && publint && attw --pack --profile esm-only"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "browser",
    "creepjs",
    "fingerprint",
    "fingerprinting",
    "typescript"
  ],
  "author": "Networkcats",
  "license": "MIT",
  "devDependencies": {
    "@arethetypeswrong/cli": "0.18.5",
    "@types/node": "26.1.1",
    "@vitest/browser-playwright": "4.1.10",
    "@vitest/coverage-istanbul": "4.1.10",
    "oxlint": "1.73.0",
    "playwright": "1.61.1",
    "prettier": "3.9.5",
    "publint": "0.3.21",
    "typescript": "7.0.2",
    "vite": "8.1.4",
    "vitest": "4.1.10"
  }
}
