{
  "name": "@digicroz/ulid",
  "version": "1.0.0",
  "description": "TypeScript ULID library with monotonic generation, binary conversion, and validation - Universally Unique Lexicographically Sortable Identifiers for JavaScript and TypeScript projects",
  "keywords": [
    "ulid",
    "uuid",
    "unique-id",
    "identifier",
    "sortable",
    "lexicographically-sortable",
    "typescript",
    "javascript",
    "monotonic",
    "binary-conversion",
    "crockford-base32",
    "time-based",
    "validation",
    "tree-shaking",
    "esm",
    "modern-js",
    "typescript-library",
    "id-generation",
    "distributed-systems",
    "database-id",
    "cross-platform"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "react-native": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typings": "./dist/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "react-native": "./dist/index.js",
      "browser": "./dist/index.js",
      "module": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/digicroz/ulid.git"
  },
  "homepage": "https://github.com/digicroz/ulid#readme",
  "bugs": {
    "url": "https://github.com/digicroz/ulid/issues"
  },
  "author": {
    "name": "Adarsh Hatkar",
    "url": "https://github.com/AdarshHatkar"
  },
  "license": "MIT",
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "npx rimraf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "release:patch": "npm version patch",
    "postversion": "git push && git push --tags && npm publish",
    "link": "npm run build && npm link",
    "unlink": "npm unlink -g @digicroz/ulid"
  },
  "devDependencies": {
    "@types/node": "^24.3.0",
    "tsup": "^8.5.0",
    "typescript": "^5.4.0"
  },
  "dependencies": {
    "ulidx": "^2.4.1"
  }
}
