{
  "name": "uuidv7-js",
  "version": "2.0.0",
  "description": "UUIDv7 generator library for JavaScript, RFC 9562 compliant. Supports encoding/decoding UUIDs to custom alphabets.",
  "author": "Edoardo Ranghieri",
  "license": "MIT",
  "private": false,
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "dist",
    "package.json",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/TheEdoRan/uuidv7-js.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "uuid",
    "uuidv7",
    "rfc9562",
    "generator",
    "id"
  ],
  "devDependencies": {
    "@changesets/changelog-github": "^0.6.0",
    "@changesets/cli": "^2.31.0",
    "@types/node": "^24",
    "oxfmt": "^0.48.0",
    "oxlint": "^1.63.0",
    "oxlint-tsgolint": "^0.22.1",
    "tsdown": "^0.21.0",
    "typescript": "^6",
    "vitest": "^4.1.4"
  },
  "scripts": {
    "lint": "tsc && oxlint --type-aware .",
    "fmt": "oxfmt",
    "fmt:check": "oxfmt --check",
    "build": "tsdown",
    "test": "vitest run",
    "test:watch": "vitest",
    "changeset": "changeset",
    "version-package": "changeset version",
    "release": "changeset publish"
  }
}