{
  "name": "random-uint-below",
  "version": "3.3.0",
  "description": "A library for generating random integers.",
  "author": "Lucas Garron <code@garron.net> (https://garron.net/)",
  "license": "Unlicense",
  "repository": "github:lgarron/random-uint-below.js",
  "bugs": {
    "url": "https://github.com/lgarron/random-uint-below.js/issues"
  },
  "type": "module",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "types": "./dist/types/index.d.ts"
    }
  },
  "scripts": {
    "build": "npm run build-types && npm run build-js",
    "build-types": "npx tsc",
    "build-js": "bun run script/build.ts",
    "dev": "bun run script/dev.ts",
    "benchmark": "npm run benchmark-bun && npm run benchmark-node && npm run benchmark-deno",
    "benchmark-bun": "bun run ./src/benchmark/main.ts",
    "benchmark-node": "bun run ./script/benchmark-node.ts",
    "benchmark-deno": "bun run ./script/benchmark-deno.ts",
    "setup": "bun install",
    "clean": "rm -rf ./dist",
    "reset": "npm run clean && rm -rf ./node_modules",
    "prepack": "npm run clean && npm run build",
    "lint": "npx @biomejs/biome check ./src",
    "format": "npx @biomejs/biome format --write ./src"
  },
  "engines": {
    "node": ">=19"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.8.0",
    "@types/bun": "^1.1.3",
    "barely-a-dev-server": "^0.3.6",
    "typescript": "^4.9.3"
  },
  "files": [
    "/LICENSE.md",
    "/README.md",
    "/package.json",
    "/package-lock.json",
    "/dist/**/*"
  ]
}
