{
  "name": "@ts-utilkit/random",
  "version": "0.3.0",
  "description": "Random generation utilities for numbers, strings, arrays, and weighted selections",
  "homepage": "https://github.com/mykfor1/ts-utilkit/tree/main/packages/random#readme",
  "bugs": {
    "url": "https://github.com/mykfor1/ts-utilkit/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/MForofontov/ts-utilkit.git",
    "directory": "packages/random"
  },
  "license": "MIT",
  "author": "Mykyta Forofontov",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.js"
    }
  },
  "sideEffects": false,
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "test": "jest --config jest.config.ts",
    "test:coverage": "jest --config jest.config.ts --coverage",
    "test:watch": "jest --config jest.config.ts --watch",
    "lint": "eslint src/**/*.ts",
    "format:check": "prettier --check src/**/*.ts",
    "publish:dry": "npm publish --dry-run",
    "version:patch": "npm version patch",
    "version:minor": "npm version minor",
    "version:major": "npm version major"
  },
  "keywords": [
    "random",
    "generator",
    "uuid",
    "selection",
    "utilities"
  ],
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  }
}
