{
  "name": "keu",
  "description": "128-bit ULID Monotonic ID Generator",
  "version": "2.0.1",
  "author": "Arafat Hossain Chowdhury <hello@arafat.dev>",
  "license": "MIT",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist/",
    "LICENSE",
    "README.md",
    "CHANGES"
  ],
  "sideEffects": false,
  "homepage": "https://github.com/arafathusayn/ulid-keu#keu",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/arafathusayn/ulid-keu.git"
  },
  "bugs": {
    "url": "https://github.com/arafathusayn/ulid-keu/issues"
  },
  "browser": {
    "./dist/common/random-bytes.js": "./dist/common/random-bytes-browser.js"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "npm run clean && tsc",
    "test": "bun test",
    "prepack": "npm run build",
    "prepublishOnly": "npm test && npm run build"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/node": "*",
    "typescript": "~5.9"
  },
  "keywords": [
    "128-bit",
    "crockford32",
    "id",
    "monotonic",
    "uid",
    "ulid",
    "unique",
    "typescript"
  ]
}
